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

  /frameworks/compile/mclinker/lib/LD/
Diagnostic.cpp 73 const char* cur_char = pBegin; local
74 while (cur_char != pEnd) {
75 if ('%' != *cur_char) {
76 const char* new_end = std::find(cur_char, pEnd, '%');
77 pOutStr.append(cur_char, new_end);
78 cur_char = new_end;
81 else if (ispunct(cur_char[1])) {
82 pOutStr.push_back(cur_char[1]); // %% -> %.
83 cur_char += 2;
88 ++cur_char;
    [all...]
  /external/chromium_org/third_party/cython/src/Cython/Plex/
Scanners.py 103 self.cur_char = BOL
148 if self.cur_char is EOL:
150 if self.cur_char is None or self.cur_char is EOF:
162 cur_char = self.cur_char
174 state['number'], input_state, cur_pos, repr(cur_char))) #TRACE#
180 action, cur_pos, cur_line, cur_line_start, cur_char, input_state, next_pos
182 c = cur_char
215 cur_char = EO
    [all...]
Scanners.pxd 24 cdef public cur_char
  /external/chromium_org/tools/gn/
tokenizer.cc 190 char next_char = cur_char();
245 } while (!at_end() && IsAsciiDigit(cur_char()));
249 char c = cur_char();
262 char initial = cur_char();
274 } else if (cur_char() == '\n') {
285 if (CouldBeTwoCharOperatorBegin(cur_char())) {
293 while (!at_end() && IsIdentifierContinuingChar(cur_char()))
344 if (cur_char() != quote_char)
380 if (cur_char() == ';') {
383 } else if (cur_char() == '\t')
    [all...]
tokenizer.h 77 char cur_char() const { return input_[cur_]; } function in class:Tokenizer
  /external/stlport/src/c_locale_win32/
c_locale_win32.c 429 const char *cur_char; local
433 cur_char = NTDate;
437 while (*cur_char) {
439 switch (*cur_char) {
442 if (*(cur_char + 1) == 'd') {
447 if (*(cur_char + 2) == 'd') {
448 if (*(cur_char + 3) == 'd') {
451 cur_char += 3;
456 cur_char += 2;
462 cur_char++
582 const char *cur_char; local
    [all...]
  /ndk/sources/cxx-stl/stlport/src/c_locale_win32/
c_locale_win32.c 429 const char *cur_char; local
433 cur_char = NTDate;
437 while (*cur_char) {
439 switch (*cur_char) {
442 if (*(cur_char + 1) == 'd') {
447 if (*(cur_char + 2) == 'd') {
448 if (*(cur_char + 3) == 'd') {
451 cur_char += 3;
456 cur_char += 2;
462 cur_char++
582 const char *cur_char; local
    [all...]
  /external/chromium_org/ppapi/tests/
test_browser_font.cc 137 int cur_char = font.CharacterOffsetForPixel(run, x); local
138 if (cur_char != expected_char_sequence[last_sequence]) {
143 ASSERT_TRUE(cur_char == expected_char_sequence[last_sequence]);
152 int cur_char = font.CharacterOffsetForPixel(forced_run, x);
153 if (cur_char != last_forced_char) {
155 ASSERT_TRUE(cur_char == last_forced_char);
  /frameworks/compile/mclinker/include/mcld/ADT/
StringHash.h 284 int cur_char = pString[idx]; local
286 if ('.' == cur_char) {
291 if (isdigit(cur_char)) {
296 if ('_' == cur_char) {
301 if (isupper(cur_char)) {
302 result |= (1 << (cur_char - 'A'));
306 if (islower(cur_char)) {
307 result |= (1 << (cur_char - 'a'));
  /external/chromium_org/base/i18n/
file_util_icu.cc 117 unsigned char cur_char = static_cast<unsigned char>((*file_name)[cursor++]); local
118 if (cur_char >= 0x80)
120 code_point = cur_char;
  /external/libxml2/
parser.c     [all...]
HTMLparser.c 341 #define CUR_CHAR(l) htmlCurrentChar(ctxt, &l)
    [all...]
xpath.c     [all...]
  /external/chromium_org/third_party/libxml/src/
parser.c     [all...]
HTMLparser.c 338 #define CUR_CHAR(l) htmlCurrentChar(ctxt, &l)
    [all...]
xpath.c     [all...]

Completed in 417 milliseconds