HomeSort by relevance Sort by last modified time
    Searched defs:UTF8 (Results 1 - 25 of 91) sorted by null

1 2 3 4

  /external/apache-http/src/org/apache/commons/codec/net/
StringEncodings.java 56 String UTF8 = "UTF-8";
  /external/regex-re2/re2/testing/
exhaustive3_test.cc 28 // Returns UTF8 for Rune r
29 static string UTF8(Rune r) {
35 // Returns a vector of "interesting" UTF8 characters.
48 v.push_back(UTF8(i));
53 v.push_back(UTF8(256 + j));
56 v.push_back(UTF8(i + j));
60 v.push_back(UTF8(Runemax + j));
  /external/v8/tools/
shell-utils.h 39 UTF8,
  /external/google-breakpad/src/common/
convert_UTF.h 111 typedef unsigned char UTF8; /* typically 8 bits */
138 ConversionResult ConvertUTF8toUTF16 (const UTF8** sourceStart, const UTF8* sourceEnd,
142 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags);
144 ConversionResult ConvertUTF8toUTF32 (const UTF8** sourceStart, const UTF8* sourceEnd,
148 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags);
156 Boolean isLegalUTF8Sequence(const UTF8 *source, const UTF8 *sourceEnd)
    [all...]
  /cts/tests/tests/ndef/src/android/ndef/cts/
NdefTest.java 37 static final Charset UTF8 = Charset.forName("UTF-8");
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3convertutf.h 98 // typedef unsigned char UTF8; /* typically 8 bits */
108 typedef ANTLR3_UINT8 UTF8; /* typically 8 bits */
145 const UTF8** sourceStart, const UTF8* sourceEnd,
150 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags);
153 const UTF8** sourceStart, const UTF8* sourceEnd,
158 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags)
    [all...]
  /external/llvm/include/llvm/Support/
ConvertUTF.h 103 typedef unsigned char UTF8; /* typically 8 bits */
136 const UTF8** sourceStart, const UTF8* sourceEnd,
140 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an
144 const UTF8** sourceStart, const UTF8* sourceEnd,
148 * Convert a partial UTF8 sequence to UTF32. If the sequence ends in an
152 const UTF8** sourceStart, const UTF8* sourceEnd,
157 UTF8** targetStart, UTF8* targetEnd, ConversionFlags flags)
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/reader/
UnicodeReader.java 54 private static final Charset UTF8 = Charset.forName("UTF-8");
93 encoding = UTF8;
103 encoding = UTF8;
  /prebuilts/gdb/darwin-x86/lib/python2.7/email/
header.py 31 UTF8 = Charset('utf-8')
281 for charset in USASCII, charset, UTF8:
  /prebuilts/gdb/linux-x86/lib/python2.7/email/
header.py 31 UTF8 = Charset('utf-8')
281 for charset in USASCII, charset, UTF8:
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/email/
header.py 31 UTF8 = Charset('utf-8')
281 for charset in USASCII, charset, UTF8:
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/email/
header.py 31 UTF8 = Charset('utf-8')
281 for charset in USASCII, charset, UTF8:
  /external/icu/icu4c/source/common/
unisetspan.h 41 UTF8 = 4,
49 FWD_UTF8_CONTAINED = FWD | UTF8 | CONTAINED,
50 FWD_UTF8_NOT_CONTAINED = FWD | UTF8 | NOT_CONTAINED,
53 BACK_UTF8_CONTAINED = BACK | UTF8 | CONTAINED,
54 BACK_UTF8_NOT_CONTAINED = BACK | UTF8 | NOT_CONTAINED
122 uint8_t *utf8; member in class:UnicodeSetStringSpan
  /external/smali/util/src/test/java/org/jf/util/
ClassFileNameHandlerTest.java 43 private final Charset UTF8 = Charset.forName("UTF-8");
53 Assert.assertEquals(95, result.getBytes(UTF8).length);
66 Assert.assertEquals(200, sb.toString().getBytes(UTF8).length);
67 Assert.assertEquals(195, result.getBytes(UTF8).length);
72 Assert.assertEquals(200, sb.toString().getBytes(UTF8).length);
73 Assert.assertEquals(195, result.getBytes(UTF8).length);
86 Assert.assertEquals(300, sb.toString().getBytes(UTF8).length);
87 Assert.assertEquals(292, result.getBytes(UTF8).length);
92 Assert.assertEquals(300, sb.toString().getBytes(UTF8).length);
93 Assert.assertEquals(292, result.getBytes(UTF8).length)
    [all...]
  /external/vogar/src/vogar/monitor/
HostMonitor.java 39 private static final Charset UTF8 = Charset.forName("UTF-8");
96 return followProcess(new InterleavedReader(marker, new InputStreamReader(in, UTF8)));
  /external/clang/lib/Lex/
LiteralSupport.cpp 365 /// convert the UTF32 to UTF8 or UTF16. This is a subroutine of
419 // Now that we've parsed/checked the UCN, we convert from UTF32->UTF8.
423 typedef uint8_t UTF8;
438 // Once the bits are split out into bytes of UTF8, this is a mask OR-ed
440 static const UTF8 firstByteMark[5] = {
446 case 4: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
447 case 3: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
448 case 2: *--ResultBuf = (UTF8)((UcnVal | byteMark) & byteMask); UcnVal >>= 6;
449 case 1: *--ResultBuf = (UTF8) (UcnVal | firstByteMark[bytesToWrite]);
    [all...]
  /external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
UConverterSharedData.java 390 static final int UTF8 = 4;
  /external/pcre/dist/
pcrecpp.h 147 // The UTF8 flag, passed to the constructor, causes both pattern
151 // may depend on the UTF8 flag, so always use it when matching
152 // UTF8 text. E.g., "." will match one byte normally but with UTF8
161 // Example: using the convenience function UTF8():
162 // pcrecpp::RE re(utf8_pattern, pcrecpp::UTF8());
165 // NOTE: The UTF8 option is ignored if pcre was not configured with the
166 // --enable-utf8 flag.
186 // PCRE_UTF8 handles UTF8 chars built-in
240 // CASELESS(), UTF8(), MULTILINE(), DOTALL(), EXTENDED(
434 bool utf8() const { function in class:pcrecpp::RE_Options
    [all...]
  /external/regex-re2/util/
pcre.h 48 // The UTF8 flag, passed to the constructor, causes both pattern
52 // may depend on the UTF8 flag, so always use it when matching
53 // UTF8 text. E.g., "." will match one byte normally but with UTF8
57 // PCRE re(utf8_pattern, PCRE::UTF8);
216 UTF8 = 0x0800, // == PCRE_UTF8
217 EnabledCompileOptions = UTF8,
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/
encodings.h 87 // UTF8
96 struct UTF8 {
555 #define RAPIDJSON_ENCODINGS_FUNC(x) UTF8<Ch>::x, UTF16LE<Ch>::x, UTF16BE<Ch>::x, UTF32LE<Ch>::x, UTF32BE<Ch>::x
  /external/chromium-trace/catapult/third_party/gsutil/gslib/
util.py 113 UTF8 = 'utf-8'
727 print '%s:' % url_str.encode(UTF8)
755 print meta_string.encode(UTF8)
    [all...]
  /external/icu/icu4c/source/test/perf/ubrkperf/
ubrkperfold.cpp 67 #include <unicode/utf8.h>
488 enum {UTF16LE, UTF16BE, UTF8} fEncoding;
522 fEncoding = UTF8; }
566 case UTF8:
  /external/icu/icu4c/source/test/perf/collationperf/
collperf.cpp 75 #include <unicode/utf8.h>
    [all...]
  /external/mockito/cglib-and-asm/src/org/mockito/asm/
ClassWriter.java 211 static final int UTF8 = 1;
914 * Adds an UTF8 string to the constant pool of the class being build. Does
920 * @return the index of a new or already existing UTF8 item.
923 key.set(UTF8, value, null, null);
926 pool.putByte(UTF8).putUTF8(value);
    [all...]
  /external/clang/include/clang/AST/
Expr.h     [all...]

Completed in 1242 milliseconds

1 2 3 4