HomeSort by relevance Sort by last modified time
    Searched defs:first_char (Results 1 - 13 of 13) sorted by null

  /external/skia/tools/skdiff/
skdiff_utils.cpp 98 const char *first_char = input_cstr; local
101 while ((match_char = strstr(first_char, oldSubstring))) {
102 output.append(first_char, (match_char - first_char));
104 first_char = match_char + oldSubstringLen;
106 output.append(first_char);
  /frameworks/base/tools/aapt2/text/
Unicode.cpp 37 char32_t first_char; member in namespace:aapt::text::__anon40942
53 if (iter != iter_end && codepoint >= iter->first_char) {
  /external/libchrome/base/
environment.cc 37 char first_char = variable_name[0]; variable
39 if (IsAsciiLower(first_char))
41 else if (IsAsciiUpper(first_char))
  /frameworks/base/tools/aapt2/
StringPool.h 36 uint32_t first_char; member in struct:aapt::Span
137 uint32_t first_char; member in struct:aapt::StringPool::Span
  /system/core/libutils/
Unicode.cpp 134 const char first_char = *cur; local
135 if ((first_char & 0x80) == 0) { // ASCII
142 char32_t utf32 = first_char;
144 (first_char & mask);
404 const char first_char = *cur++;
405 if ((first_char & 0x80) == 0) { // ASCII
411 if ((first_char & 0x40) == 0) {
419 num_to_read < 5 && (first_char & mask);
427 // "first_char" must be (110xxxxx - 11110xxx)
432 utf32 |= ((~to_ignore_mask) & first_char) << (6 * (num_to_read - 1))
    [all...]
  /external/freetype/include/freetype/
ftwinfnt.h 206 FT_Byte first_char; member in struct:FT_WinFNT_HeaderRec_
  /external/pdfium/core/fpdfapi/page/
cpdf_streamparser.cpp 322 int first_char = m_WordBuffer[0]; local
323 if (first_char == '/') {
329 if (first_char == '(') {
334 if (first_char == '<') {
360 if (first_char == '[') {
  /external/pdfium/third_party/freetype/include/freetype/
ftwinfnt.h 206 FT_Byte first_char; member in struct:FT_WinFNT_HeaderRec_
  /frameworks/base/tools/aapt2/compile/
PseudolocaleGenerator.cpp 38 uint32_t first_char; member in struct:aapt::UnifiedSpan
45 if (left.first_char < right.first_char) {
47 } else if (left.first_char > right.first_char) {
56 return UnifiedSpan{*span.name, span.first_char, span.last_char};
116 // Collect the spans and untranslatable sections into one set of spans, sorted by first_char.
149 if (parent_span == nullptr || parent_span->last_char > span->first_char) {
152 const StringPiece16 substr = text.substr(cursor, span->first_char - cursor);
164 // Rewrite the first_char
    [all...]
  /prebuilts/misc/darwin-x86_64/freetype/include/freetype2/
ftwinfnt.h 206 FT_Byte first_char; member in struct:FT_WinFNT_HeaderRec_
  /external/v8/src/parsing/
scanner.cc 1262 uc32 first_char = c0_; local
1465 char first_char = static_cast<char>(c0_); local
1473 char first_char = static_cast<char>(c0_); local
1477 char first_char = static_cast<char>(c0_); local
1499 char first_char = static_cast<char>(c0_); local
1522 uc32 first_char = c0_; local
    [all...]
  /external/v8/tools/clang/rewrite_to_chrome_style/
RewriteToChromeStyle.cpp 379 bool first_char = true; local
400 if (!first_char && was_lowercase && is_uppercase)
404 first_char = false;
    [all...]
  /system/core/liblog/
logprint.c 1170 const char first_char = *cur++; local
1176 if ((first_char & 0x80) == 0) { /* ASCII */
1177 return first_char ? 1 : -1;
1184 if ((first_char & 0x40) == 0)
    [all...]

Completed in 349 milliseconds