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

1 2 3 4

  /external/guava/guava/src/com/google/common/base/
Utf8.java 51 int utf8Length = utf16Length;
63 utf8Length += ((0x7f - c) >>> 31); // branch free!
65 utf8Length += encodedLengthGeneral(sequence, i);
70 if (utf8Length < utf16Length) {
73 + (utf8Length + (1L << 32)));
75 return utf8Length;
80 int utf8Length = 0;
84 utf8Length += (0x7f - c) >>> 31; // branch free!
86 utf8Length += 2;
98 return utf8Length;
    [all...]
  /external/icu/icu4c/source/common/
unisetspan.h 127 int32_t utf8Length;
  /external/icu/icu4c/source/test/intltest/
convtest.h 48 int32_t utf8Length;
rbbitst.cpp 838 int32_t utf8Length;
839 u_strToUTF8WithSub(NULL, 0, &utf8Length, // Output Buffer, NULL for preflight.
848 char *buffer = dest.getAppendBuffer(utf8Length, utf8Length, capacity, status);
849 u_strToUTF8WithSub(buffer, utf8Length, NULL,
852 dest.append(buffer, utf8Length, status);
    [all...]
  /external/icu/icu4c/source/test/perf/utrie2perf/
utrie2perf.cpp 51 utf8(NULL), utf8Length(0), countInputCodePoints(0) {
63 u_strToUTF8(NULL, 0, &utf8Length, buffer, bufferLen, &status);
65 utf8=(char *)malloc(utf8Length);
68 u_strToUTF8(utf8, utf8Length, NULL, buffer, bufferLen, &status);
77 (long)countInputCodePoints, (long)bufferLen, (long)utf8Length,
78 (double)utf8Length/countInputCodePoints);
90 int32_t utf8Length;
166 UBool isFCD=unorm_checkFCDUTF8((const uint8_t *)testcase.utf8, testcase.utf8Length, NULL);
  /external/guava/guava-tests/test/com/google/common/base/
Utf8Test.java 69 int utf8Length = 0;
73 utf8Length += utf8Lengths.get(randomCodePoint);
74 if (utf8Length != Utf8.encodedLength(sb)) {
79 assertEquals(repro.toString(), utf8Length, Utf8.encodedLength(sb));
  /external/icu/icu4c/source/test/perf/unisetperf/
unisetperf.cpp 53 utf8(NULL), utf8Length(0), countInputCodePoints(0), spanCount(0) {
70 u_strToUTF8(NULL, 0, &utf8Length, buffer, bufferLen, &status);
72 utf8=(char *)malloc(utf8Length);
75 u_strToUTF8(utf8, utf8Length, NULL, buffer, bufferLen, &status);
84 (long)countInputCodePoints, (long)bufferLen, (long)utf8Length, (long)spanCount,
85 (double)countInputCodePoints/spanCount, (double)bufferLen/spanCount, (double)utf8Length/spanCount,
86 (double)utf8Length/countInputCodePoints);
125 int32_t utf8Length;
344 int32_t length=testcase.utf8Length;
390 int32_t length=testcase.utf8Length;
    [all...]
  /external/icu/icu4c/source/test/perf/utfperf/
utfperf.cpp 42 static int32_t utf8Length, encodedLength, outputLength, countInputCodePoints;
92 u_strToUTF8(utf8, (int32_t)sizeof(utf8), &utf8Length, buffer, bufferLen, &status);
271 input8(utf8), input8Length(utf8Length) {
  /external/protobuf/java/core/src/main/java/com/google/protobuf/
Utf8.java 256 int utf8Length = utf16Length;
268 utf8Length += ((0x7f - c) >>> 31); // branch free!
270 utf8Length += encodedLengthGeneral(sequence, i);
275 if (utf8Length < utf16Length) {
278 + (utf8Length + (1L << 32)));
280 return utf8Length;
285 int utf8Length = 0;
289 utf8Length += (0x7f - c) >>> 31; // branch free!
291 utf8Length += 2;
303 return utf8Length;
    [all...]
  /external/smali/util/src/main/java/org/jf/util/
ClassFileNameHandler.java 150 private static int utf8Length(String str) {
151 int utf8Length = 0;
155 utf8Length += utf8Length(c);
158 return utf8Length;
161 private static int utf8Length(int codePoint) {
198 int bytesRemoved = utf8Length(codePoints[midPoint]);
203 bytesRemoved += utf8Length(codePoints[secondStart]);
211 bytesRemoved += utf8Length(codePoints[firstEnd]);
215 bytesRemoved += utf8Length(codePoints[secondStart])
    [all...]
  /external/protobuf/javanano/src/main/java/com/google/protobuf/nano/
CodedOutputByteBufferNano.java 349 int utf8Length = utf16Length;
361 utf8Length += ((0x7f - c) >>> 31); // branch free!
363 utf8Length += encodedLengthGeneral(sequence, i);
368 if (utf8Length < utf16Length) {
371 + (utf8Length + (1L << 32)));
373 return utf8Length;
378 int utf8Length = 0;
382 utf8Length += (0x7f - c) >>> 31; // branch free!
384 utf8Length += 2;
396 return utf8Length;
    [all...]
  /external/icu/icu4c/source/test/cintltst/
ccapitst.c     [all...]
  /prebuilts/tools/common/m2/repository/org/smali/util/2.1.3/
util-2.1.3.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/nano/protobuf-javanano/3.0.0-alpha-5/
protobuf-javanano-3.0.0-alpha-5.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.equinox.p2.repository.tools_2.1.0.v20130327-2119.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-lite/3.0.1/
protobuf-lite-3.0.1.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/3.0.0-beta-2/
protobuf-java-3.0.0-beta-2.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/3.0.0/
protobuf-java-3.0.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/protobuf/protobuf-java/3.0.2/
protobuf-java-3.0.2.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/htmlunit/htmlunit-core-js/2.14/
htmlunit-core-js-2.14.jar 
  /prebuilts/tools/common/m2/repository/org/mozilla/rhino/1.7R3/
rhino-1.7R3.jar 
  /cts/tests/libcore/javautilcollections/libs/
guava-20.0.jar 
  /external/dagger2/lib/
google-java-format-0.1-20151017.042846-2.jar 
  /external/guice/lib/
guava-16.0.1.jar 
  /external/r8/deps/
guava-19.0.jar 

Completed in 392 milliseconds

1 2 3 4