MCPcopy Create free account
hub / github.com/Vector35/binaryninja-api / TranscodeUnsafe

Method TranscodeUnsafe

rapidjson/encodings.h:670–676  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

668
669 template<typename InputStream, typename OutputStream>
670 RAPIDJSON_FORCEINLINE static bool TranscodeUnsafe(InputStream& is, OutputStream& os) {
671 unsigned codepoint;
672 if (!SourceEncoding::Decode(is, &codepoint))
673 return false;
674 TargetEncoding::EncodeUnsafe(os, codepoint);
675 return true;
676 }
677
678 //! Validate one Unicode codepoint from an encoded stream.
679 template<typename InputStream, typename OutputStream>

Callers

nothing calls this directly

Calls 2

DecodeFunction · 0.85
EncodeUnsafeFunction · 0.85

Tested by

no test coverage detected