Home
last modified time | relevance | path

Searched refs:UTF32 (Results 1 – 10 of 10) sorted by relevance

/packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
Dencodingstest.cpp397 TEST(EncodingsTest, UTF32) { in TEST() argument
398 GenericStringBuffer<UTF32<> > os, os2; in TEST()
402 UTF32<>::Encode(os, codepoint); in TEST()
403 const UTF32<>::Ch* encodedStr = os.GetString(); in TEST()
407 GenericStringStream<UTF32<> > is(encodedStr); in TEST()
409 bool result = UTF32<>::Decode(is, &decodedCodepoint); in TEST()
418 GenericStringStream<UTF32<> > is(encodedStr); in TEST()
420 bool result = UTF32<>::Validate(is, os2); in TEST()
Dencodedstreamtest.cpp258 TestEncodedInputStream<UTF32LE<>, UTF32<> >("utf32le.json"); in TEST_F()
259 TestEncodedInputStream<UTF32LE<>, UTF32<> >("utf32lebom.json"); in TEST_F()
260 TestEncodedInputStream<UTF32BE<>, UTF32<> >("utf32be.json"); in TEST_F()
261 TestEncodedInputStream<UTF32BE<>, UTF32<> >("utf32bebom.json"); in TEST_F()
293 TestEncodedOutputStream<UTF32LE<>, UTF32<> >("utf32le.json", false); in TEST_F()
294 TestEncodedOutputStream<UTF32LE<>, UTF32<> >("utf32lebom.json",true); in TEST_F()
295 TestEncodedOutputStream<UTF32BE<>, UTF32<> >("utf32be.json", false); in TEST_F()
296 TestEncodedOutputStream<UTF32BE<>, UTF32<> >("utf32bebom.json",true); in TEST_F()
Dwritertest.cpp336 Writer<StringBuffer, UTF32<> > writer(buffer); in TEST()
337 static const UTF32<>::Ch s[] = { 0x110000, 0 }; // Out of U+0000 to U+10FFFF in TEST()
344 Writer<StringBuffer, UTF32<>, ASCII<> > writer(buffer); in TEST()
345 static const UTF32<>::Ch s[] = { 0x110000, 0 }; // Out of U+0000 to U+10FFFF in TEST()
Dreadertest.cpp534 TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY('\0'), ARRAY('\"', '\"', '\0')); in TEST()
535 …TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY('H', 'e', 'l', 'l', 'o', '\0'), ARRAY('\"', 'H', 'e', '… in TEST()
536 …TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY('H', 'e', 'l', 'l', 'o', '\n', 'W', 'o', 'r', 'l', 'd',… in TEST()
537 …TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY('\"', '\\', '/', '\b', '\f', '\n', '\r', '\t', '\0'), A… in TEST()
538 …TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY(0x00024, 0x0000), ARRAY('\"', '\\', 'u', '0', '0', '2',… in TEST()
539 …TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY(0x000A2, 0x0000), ARRAY('\"', '\\', 'u', '0', '0', 'A',… in TEST()
540 …TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY(0x020AC, 0x0000), ARRAY('\"', '\\', 'u', '2', '0', 'A',… in TEST()
541 …TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY(0x1D11E, 0x0000), ARRAY('\"', '\\', 'u', 'D', '8', '3',… in TEST()
692 … TEST_STRINGENCODING_ERROR(UTF32<>, UTF8<>, unsigned, ARRAY('[', '\"', 0x110000, '\"', ']', '\0')); in TEST()
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
Dencoding.md54 struct UTF32;
65 For processing text in memory, we normally use `UTF8`, `UTF16` or `UTF32`. For processing text via …
67 …resent JSON string in memory. So normally we will use `UTF8`, `UTF16` or `UTF32` for this template…
82 For `UTF16(LE|BE)`, `UTF32(LE|BE)`, the `CharType` must be integer type of at least 2 and 4 bytes …
84 Note that C++11 introduces `char16_t` and `char32_t`, which can be used for `UTF16` and `UTF32` res…
Dfeatures.md37 * By default the character types are `char` for UTF8, `wchar_t` for UTF16, `uint32_t` for UTF32.
Dstream.md180 d.Accept(writer); // This generates UTF32-LE file from UTF-8 in memory
Ddom.md34 …ng of JSON String value in memory. Possible options are `UTF8`, `UTF16`, `UTF32`. Note that, these…
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/diagram/
Dutilityclass.dot22 Encoding -> { UTF8; UTF16; UTF32; ASCII; AutoUTF }
24 UTF32 -> { UTF32LE; UTF32BE }
/packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
Dencodings.h372 struct UTF32 { struct
404 struct UTF32LE : UTF32<CharType> { argument
440 struct UTF32BE : UTF32<CharType> {