HomeSort by relevance Sort by last modified time
    Searched refs:code_point (Results 26 - 50 of 56) sorted by null

12 3

  /external/v8/src/
unicode.cc 229 uchar code_point = ((first << 6) | second) & kMaxTwoByteChar; local
230 if (code_point <= kMaxOneByteChar) {
235 return code_point;
247 uchar code_point = ((((first << 6) | second) << 6) | third) local
249 if (code_point <= kMaxTwoByteChar) {
254 return code_point;
266 uchar code_point = (((((first << 6 | second) << 6) | third) << 6) | fourth) local
268 if (code_point <= kMaxThreeByteChar) {
273 return code_point;
    [all...]
  /external/chromium/base/
string_util.cc 279 uint32 code_point = 0; local
280 CBU8_NEXT(data, char_index, truncation_length, code_point);
281 if (!base::IsValidCharacter(code_point) ||
282 !base::IsValidCodepoint(code_point)) {
478 int32 code_point; local
479 CBU8_NEXT(src, char_index, src_len, code_point);
480 if (!base::IsValidCharacter(code_point))
    [all...]
  /external/chromium_org/base/strings/
string_util.cc 236 uint32 code_point = 0; local
237 CBU8_NEXT(data, char_index, truncation_length, code_point);
238 if (!base::IsValidCharacter(code_point) ||
239 !base::IsValidCodepoint(code_point)) {
423 int32 code_point; local
424 CBU8_NEXT(src, char_index, src_len, code_point);
425 if (!base::IsValidCharacter(code_point))
  /external/chromium/googleurl/src/
url_util.cc 533 unsigned code_point; local
535 unescaped_chars.length(), &code_point)) {
537 url_canon::AppendUTF16Value(code_point, output);
  /external/chromium_org/url/
url_util.cc 551 unsigned code_point; local
553 unescaped_chars.length(), &code_point)) {
555 url_canon::AppendUTF16Value(code_point, output);
  /external/chromium/testing/gtest/src/
gtest.cc     [all...]
gtest-internal-inl.h 216 // code_point parameter is of type UInt32 because wchar_t may not be
220 // If the code_point is not a valid Unicode code point
223 GTEST_API_ char* CodePointToUtf8(UInt32 code_point, char* str);
    [all...]
  /external/chromium_org/testing/gtest/src/
gtest.cc     [all...]
gtest-internal-inl.h 223 // code_point parameter is of type UInt32 because wchar_t may not be
227 // If the code_point is not a valid Unicode code point
230 GTEST_API_ char* CodePointToUtf8(UInt32 code_point, char* str);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest.cc     [all...]
gtest-internal-inl.h 216 // code_point parameter is of type UInt32 because wchar_t may not be
220 // If the code_point is not a valid Unicode code point
223 GTEST_API_ char* CodePointToUtf8(UInt32 code_point, char* str);
    [all...]
  /external/gtest/src/
gtest.cc     [all...]
gtest-internal-inl.h 216 // code_point parameter is of type UInt32 because wchar_t may not be
220 // If the code_point is not a valid Unicode code point
223 GTEST_API_ char* CodePointToUtf8(UInt32 code_point, char* str);
    [all...]
  /external/libvpx/libvpx/third_party/googletest/src/src/
gtest.cc     [all...]
gtest-internal-inl.h 216 // code_point parameter is of type UInt32 because wchar_t may not be
220 // If the code_point is not a valid Unicode code point
223 GTEST_API_ char* CodePointToUtf8(UInt32 code_point, char* str);
    [all...]
  /external/llvm/utils/unittest/googletest/
gtest.cc     [all...]
  /external/mesa3d/src/gtest/src/
gtest.cc     [all...]
gtest-internal-inl.h 216 // code_point parameter is of type UInt32 because wchar_t may not be
220 // If the code_point is not a valid Unicode code point
223 GTEST_API_ char* CodePointToUtf8(UInt32 code_point, char* str);
    [all...]
  /external/open-vcdiff/gtest/src/
gtest.cc     [all...]
  /external/protobuf/gtest/src/
gtest.cc     [all...]
  /ndk/sources/third_party/googletest/googletest/src/
gtest.cc     [all...]
  /external/chromium_org/base/json/
json_parser.cc 776 uint32 code_point = CBU16_GET_SUPPLEMENTARY(code_unit16_high, local
779 CBU8_APPEND_UNSAFE(code_unit8, offset, code_point);
  /external/chromium_org/third_party/ots/src/
cmap.cc 217 const uint16_t code_point = cp; local
220 const uint16_t glyph = code_point + ranges[i].id_delta;
225 const uint16_t range_delta = code_point - ranges[i].start_range;
    [all...]
  /external/chromium_org/net/base/
net_util.cc 190 unsigned code_point; local
191 U16_NEXT(str, i, str_len, code_point);
194 UScriptCode cur_script = uscript_getScript(code_point, &err);
    [all...]