HomeSort by relevance Sort by last modified time
    Searched refs:surrogatePair (Results 1 - 4 of 4) sorted by null

  /external/chromium_org/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');
  /external/chromium_org/third_party/jsoncpp/overrides/src/lib_json/
json_reader.cpp 746 unsigned int surrogatePair;
749 if (decodeUnicodeEscapeSequence( token, current, end, surrogatePair ))
751 unicode = 0x10000 + ((unicode & 0x3FF) << 10) + (surrogatePair & 0x3FF);
  /art/test/082-inline-execute/src/
Main.java 106 String surrogatePair = "\ud842\udf9f";
107 String stringWithSurrogates = "hello " + surrogatePair + " world";
  /prebuilts/misc/common/groovy/
groovy-all-1.7.0.jar 

Completed in 126 milliseconds