HomeSort by relevance Sort by last modified time
    Searched full:codepoints (Results 76 - 100 of 354) sorted by null

1 2 34 5 6 7 8 91011>>

  /frameworks/data-binding/compilerCommon/src/main/java/android/databinding/tool/util/
StringUtils.java 68 // TODO: unescape unicode codepoints
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_stringprep.py 2 # Since we don't have them, this test checks only a few codepoints.
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_stringprep.py 2 # Since we don't have them, this test checks only a few codepoints.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_stringprep.py 2 # Since we don't have them, this test checks only a few codepoints.
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_stringprep.py 2 # Since we don't have them, this test checks only a few codepoints.
  /art/test/020-string/src/
Main.java 97 int [] codePoints = new int[] { 65, 66, 67, 68, 69 };
118 String s14 = new String(codePoints, 1, 3);
  /external/caliper/examples/src/main/java/examples/
Utf8Benchmark.java 106 // discard illegal surrogate "codepoints"
120 * pseudo-randomly-generated codePoints less than {@code
  /external/harfbuzz_ng/docs/
usermanual-what-is-harfbuzz.xml 34 Unicode codepoints to glyph IDs. Text shaping turns codepoints
  /external/icu/icu4j/tools/misc/src/com/ibm/icu/dev/tool/layout/
CanonicalCharacterData.java 95 int codePoints = UTF16.countCodePoint(equiv);
97 for (int c = 0; c < codePoints; c += 1) {
  /frameworks/base/core/tests/coretests/src/android/graphics/
PaintTest.java 111 private static String codePointsToString(int[] codepoints) {
113 for (int codepoint : codepoints) {
  /frameworks/base/docs/html/sdk/api_diff/24/changes/
java.lang.CharSequence.html 94 <nobr><code>IntStream</code>&nbsp;<A HREF="../../../../reference/java/lang/CharSequence.html#codePoints()" target="_top"><code>codePoints</code></A>()</nobr>
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
WordProperty.java 81 public WordProperty(final int[] codePoints, final boolean isNotAWord,
87 mWord = StringUtils.getStringFromNullTerminatedCodePointArray(codePoints);
  /packages/inputmethods/LatinIME/native/jni/src/utils/
jni_data_utils.h 74 const int maxLength, const int *const codePoints, const int codePointCount,
80 const int codePoint = codePoints[i];
  /external/okhttp/okhttp-tests/src/test/java/com/squareup/okhttp/
UrlComponentEncodingTester.java 184 public UrlComponentEncodingTester override(Encoding encoding, int... codePoints) {
185 for (int codePoint : codePoints) {
202 public UrlComponentEncodingTester skipForUri(int... codePoints) {
203 uriEscapedCodePoints.append(new String(codePoints, 0, codePoints.length));
  /external/icu/icu4c/source/test/cintltst/
cucdapi.c 264 uint32_t codepoints[] = { local
319 for(i=0; i<UPRV_LENGTHOF(codepoints); ++i){
320 code = uscript_getScript(codepoints[i],&status);
323 code != (UScriptCode)u_getIntPropertyValue(codepoints[i], UCHAR_SCRIPT)
325 log_err("uscript_getScript for codepoint \\U%08X failed\n",codepoints[i]);
330 codepoints[i],u_errorName(status));
360 log_err("uscript_getScript failed for %d codepoints\n", err);
  /external/chromium-trace/catapult/third_party/html5lib-python/html5lib/serializer/
htmlserializer.py 42 codepoints = []
54 codepoints.append(codepoint)
55 for cp in codepoints:
  /external/guava/guava-tests/test/com/google/common/base/
Utf8Test.java 64 Integer[] codePoints = utf8Lengths.keySet().toArray(new Integer[]{});
71 Integer randomCodePoint = codePoints[rnd.nextInt(codePoints.length)];
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
StringRange.java 166 int[] array = CharSequences.codePoints(s);
245 int[] startCps = CharSequences.codePoints(start);
246 int[] endCps = CharSequences.codePoints(end);
  /external/icu/android_icu4j/src/main/java/android/icu/lang/
CharSequences.java 13 * For accessing codepoints with a CharSequence, also see
277 * for (int codePoint : CharSequences.codePoints(string)) {
286 public static int[] codePoints(CharSequence s) {
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
StringRange.java 162 int[] array = CharSequences.codePoints(s);
241 int[] startCps = CharSequences.codePoints(start);
242 int[] endCps = CharSequences.codePoints(end);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/lang/
CharSequences.java 12 * For accessing codepoints with a CharSequence, also see
275 * for (int codePoint : CharSequences.codePoints(string)) {
284 public static int[] codePoints(CharSequence s) {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/
suggestions_output_utils.cpp 174 int codePoints[MAX_WORD_LENGTH];
175 terminalDicNode->outputResult(codePoints);
180 outSuggestionResults->addSuggestion(codePoints,
  /prebuilts/go/darwin-x86/src/testing/quick/
quick.go 135 codePoints := make([]rune, numChars)
137 codePoints[i] = rune(rand.Intn(0x10ffff))
139 v.SetString(string(codePoints))
  /prebuilts/go/linux-x86/src/testing/quick/
quick.go 135 codePoints := make([]rune, numChars)
137 codePoints[i] = rune(rand.Intn(0x10ffff))
139 v.SetString(string(codePoints))
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
interactive.rb 43 @data.concat( line.codepoints.to_a )

Completed in 1513 milliseconds

1 2 34 5 6 7 8 91011>>