HomeSort by relevance Sort by last modified time
    Searched full:surrogatepair (Results 1 - 5 of 5) sorted by null

  /external/v8/test/webkit/
regexp-non-bmp.js 31 var surrogatePair = String.fromCharCode(0xD800) + String.fromCharCode(0xDC00);
33 shouldBe('/./.exec(surrogatePair).toString().length', '1');
34 shouldBe('/\\D/.exec(surrogatePair).toString().length', '1');
35 shouldBe('/\\S/.exec(surrogatePair).toString().length', '1');
36 shouldBe('/\\W/.exec(surrogatePair).toString().length', '1');
37 shouldBe('/[^x]/.exec(surrogatePair).toString().length', '1');
regexp-non-bmp-expected.txt 29 PASS /./.exec(surrogatePair).toString().length is 1
30 PASS /\D/.exec(surrogatePair).toString().length is 1
31 PASS /\S/.exec(surrogatePair).toString().length is 1
32 PASS /\W/.exec(surrogatePair).toString().length is 1
33 PASS /[^x]/.exec(surrogatePair).toString().length is 1
  /libcore/luni/src/main/java/org/apache/harmony/xml/parsers/
DocumentBuilderImpl.java 423 char[] surrogatePair = Character.toChars(codePoint);
424 return new String(surrogatePair);
  /external/jsoncpp/src/lib_json/
json_reader.cpp 679 unsigned int surrogatePair;
681 if (decodeUnicodeEscapeSequence(token, current, end, surrogatePair)) {
682 unicode = 0x10000 + ((unicode & 0x3FF) << 10) + (surrogatePair & 0x3FF);
  /art/test/082-inline-execute/src/
Main.java 355 String surrogatePair = "\ud842\udf9f";
356 String stringWithSurrogates = "hello " + surrogatePair + " world";
    [all...]

Completed in 114 milliseconds