Home
last modified time | relevance | path

Searched refs:UTFType (Results 1 – 4 of 4) sorted by relevance

/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
Dencodedstream.h111 …AutoUTFInputStream(InputByteStream& is, UTFType type = kUTF8) : is_(&is), type_(type), hasBOM_(fal…
119 UTFType GetType() const { return type_; } in GetType()
187 UTFType type_;
210 AutoUTFOutputStream(OutputByteStream& os, UTFType type, bool putBOM) : os_(&os), type_(type) { in AutoUTFOutputStream()
224 UTFType GetType() const { return type_; } in GetType()
249 UTFType type_;
Dencodings.h538 enum UTFType { enum
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Dstream.md214 You can obtain the type of UTF via `UTFType GetType()`. And check whether a BOM is found by `HasBOM…
223 void WriteJSONFile(FILE* fp, UTFType type, bool putBOM, const Document& d) {
/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
Dencodedstreamtest.cpp195 void TestAutoUTFOutputStream(UTFType type, bool putBOM, const char *expectedFilename) { in TestAutoUTFOutputStream()