HomeSort by relevance Sort by last modified time
    Searched refs:UTF32 (Results 26 - 50 of 72) sorted by null

12 3

  /packages/apps/Test/connectivity/sl4n/rapidjson/test/unittest/
writertest.cpp 336 Writer<StringBuffer, UTF32<> > writer(buffer);
337 static const UTF32<>::Ch s[] = { 0x110000, 0 }; // Out of U+0000 to U+10FFFF
344 Writer<StringBuffer, UTF32<>, ASCII<> > writer(buffer);
345 static const UTF32<>::Ch s[] = { 0x110000, 0 }; // Out of U+0000 to U+10FFFF
readertest.cpp 533 // UTF32
534 TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY('\0'), ARRAY('\"', '\"', '\0'));
535 TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY('H', 'e', 'l', 'l', 'o', '\0'), ARRAY('\"', 'H', 'e', 'l', 'l', 'o', '\"', '\0'));
536 TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY('H', 'e', 'l', 'l', 'o', '\n', 'W', 'o', 'r', 'l', 'd', '\0'), ARRAY('\"', 'H', 'e', 'l', 'l', 'o', '\\', 'n', 'W', 'o', 'r', 'l', 'd', '\"', '\0'));
537 TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY('\"', '\\', '/', '\b', '\f', '\n', '\r', '\t', '\0'), ARRAY('\"', '\\', '\"', '\\', '\\', '/', '\\', 'b', '\\', 'f', '\\', 'n', '\\', 'r', '\\', 't', '\"', '\0'));
538 TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY(0x00024, 0x0000), ARRAY('\"', '\\', 'u', '0', '0', '2', '4', '\"', '\0'));
539 TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY(0x000A2, 0x0000), ARRAY('\"', '\\', 'u', '0', '0', 'A', '2', '\"', '\0')); // Cents sign U+00A2
540 TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY(0x020AC, 0x0000), ARRAY('\"', '\\', 'u', '2', '0', 'A', 'C', '\"', '\0')); // Euro sign U+20AC
541 TEST_STRINGARRAY2(UTF32<>, unsigned, ARRAY(0x1D11E, 0x0000), ARRAY('\"', '\\', 'u', 'D', '8', '3', '4', '\\', 'u', 'D', 'D', '1', 'E', '\"', '\0')); // G clef sign U+1D11E
692 TEST_STRINGENCODING_ERROR(UTF32<>, UTF8<>, unsigned, ARRAY('[', '\"', 0x110000, '\"', ']', '\0'));
    [all...]
  /external/antlr/antlr-3.4/runtime/C/src/
antlr3inputstream.c 88 // UTF32 (also covers UCS2)
150 input->istream->_LA = antlr38BitLA; // Return the UTF32 character at offset n (1 based)
347 * \return Next input character in internal ANTLR3 encoding (UTF32)
374 * \return Next input character in internal ANTLR3 encoding (UTF32)
399 * \return Next input character in internal ANTLR3 encoding (UTF32)
680 * - The supplied newLineChar is in UTF32 encoding (which means ASCII and latin1 etc
734 input->istream->_LA = antlr3UTF16LA; // Return the UTF32 character at offset n (1 based)
741 input->istream->_LA = antlr3UTF16LALE; // Return the UTF32 character at offset n (1 based)
756 input->istream->_LA = antlr3UTF16LA; // Return the UTF32 character at offset n (1 based)
763 input->istream->_LA = antlr3UTF16LABE; // Return the UTF32 character at offset n (1 based)
    [all...]
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTPrint3D.h 345 @param[in] utf32 UTF32 string to take the size of.
351 const CPVRTArray<PVRTuint32>& utf32);
354 @brief Takes an array of UTF32 characters and generates the required mesh.
359 @param[in] UTF32 Array of UTF32 characters
363 EPVRTError Print3D(float fPosX, float fPosY, const float fScale, unsigned int Colour, const CPVRTArray<PVRTuint32>& UTF32, bool bUpdate);
PVRTPrint3D.cpp 488 @param[in] UTF32 Array of UTF32 characters
491 @brief Takes an array of UTF32 characters and generates the required mesh.
493 EPVRTError CPVRTPrint3D::Print3D(float fPosX, float fPosY, const float fScale, unsigned int Colour, const CPVRTArray<PVRTuint32>& UTF32, bool bUpdate)
503 if(UTF32.GetSize() == 0)
524 m_nCachedNumVerts = UpdateLine(0.0f, fPosX, fPosY, fScale, Colour, UTF32, m_pPrint3dVtx);
642 // Convert from UTF8 to UTF32
714 const CPVRTArray<PVRTuint32>& utf32)
717 if(utf32.GetSize() == 0) {
730 for(PVRTuint32 uiIndex = 0; uiIndex < utf32.GetSize(); uiIndex++
    [all...]
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
encodings.h 361 // UTF32
372 struct UTF32 {
404 struct UTF32LE : UTF32<CharType> {
440 struct UTF32BE : UTF32<CharType> {
  /libcore/ojluni/src/main/resources/sun/nio/cs/
standard-charsets 88 alias UTF32
  /external/clang/lib/Lex/
LiteralSupport.cpp 260 /// return the UTF32.
296 UcnVal > 0x10FFFF) { // maximum legal UTF32 value
365 /// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
374 typedef uint32_t UTF32;
375 UTF32 UcnVal = 0;
392 UTF32 *ResultPtr = reinterpret_cast<UTF32*>(ResultBuf);
403 if (UcnVal <= (UTF32)0xFFFF) {
419 // Now that we've parsed/checked the UCN, we convert from UTF32->UTF8.
426 if (UcnVal < (UTF32)0x80
    [all...]
Lexer.cpp     [all...]
  /external/llvm/unittests/Support/
ConvertUTFTest.cpp 157 std::vector<UTF32> Decoded(S.size(), 0);
158 UTF32 *TargetStart = Decoded.data();
174 std::vector<UTF32> Decoded(S.size(), 0);
175 UTF32 *TargetStart = Decoded.data();
    [all...]
  /external/clang/lib/Frontend/
TextDiagnostic.cpp 123 UTF32 c;
124 UTF32 *cptr = &c;
    [all...]
  /external/llvm/lib/Support/
Unicode.cpp 350 UTF32 buf[1];
352 UTF32 *Target = &buf[0];
  /external/v8/src/compiler/
simplified-operator.cc 557 StringFromCodePointOperator<UnicodeEncoding::UTF32>
    [all...]
  /external/v8/src/
globals.h     [all...]
  /external/pcre/dist2/src/
pcre2_internal.h     [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
Expr.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
Expr.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
Expr.h     [all...]
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
Expr.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/clang/include/clang/AST/
Expr.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/clang/include/clang/AST/
Expr.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/clang/include/clang/AST/
Expr.h     [all...]
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/clang/include/clang/AST/
Expr.h     [all...]
  /external/clang/lib/AST/
StmtPrinter.cpp     [all...]

Completed in 1606 milliseconds

12 3