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

  /external/llvm/lib/TableGen/
TGLexer.cpp 138 int NextChar = 0;
145 NextChar = peekNextChar(i++);
146 } while (isdigit(NextChar));
148 if (NextChar == 'x' || NextChar == 'b') {
156 if (NextChar == 'b')
163 if (NextChar == 'x')
170 if (isalpha(NextChar) || NextChar == '_')
  /external/chromium_org/chrome/browser/ui/app_list/search/
tokenized_string_char_iterator.h 28 bool NextChar();
tokenized_string_match.cc 68 query_iter.NextChar();
69 text_iter.NextChar();
tokenized_string_char_iterator_unittest.cc 33 ASSERT_FALSE(iter->NextChar());
47 iter.NextChar();
76 if (iter.NextChar())
tokenized_string_char_iterator.cc 23 bool TokenizedStringCharIterator::NextChar() {
  /external/chromium_org/base/json/
json_parser.cc 242 if (!CanConsume(1) || (NextChar() && GetNextToken() != T_END_OF_INPUT)) {
343 const char* JSONParser::NextChar() {
411 NextChar();
427 char next_char = *NextChar();
431 char next_char = *NextChar();
439 next_char = *NextChar();
444 NextChar();
494 NextChar();
509 NextChar();
517 NextChar();
    [all...]
json_parser.h 50 // NextChar. The conversion from byte to JSON token happens without advancing
151 const char* NextChar();
153 // Performs the equivalent of NextChar N times.
257 FRIEND_TEST_ALL_PREFIXES(JSONParserTest, NextChar);
json_parser_unittest.cc 26 EXPECT_EQ(',', *parser->NextChar());
27 EXPECT_EQ('|', *parser->NextChar());
28 EXPECT_EQ('\0', *parser->NextChar());
33 TEST_F(JSONParserTest, NextChar) {
39 EXPECT_EQ(input[i], *parser->NextChar());
41 EXPECT_EQ(parser->end_pos_, parser->NextChar());
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 171 size_t NextChar;
204 BitstreamCursor() : BitStream(0), NextChar(0) {
206 BitstreamCursor(const BitstreamCursor &RHS) : BitStream(0), NextChar(0) {
211 NextChar = 0;
221 NextChar = 0;
252 return BitsInCurWord == 0 && isEndPos(NextChar);
260 return NextChar*CHAR_BIT - BitsInCurWord;
331 NextChar = ByteNo;
358 if (isEndPos(NextChar)) {
369 BitStream->getBitcodeBytes().readBytes(NextChar, sizeof(Array), Array)
    [all...]
  /external/chromium_org/chrome/browser/policy/
preg_parser_win.cc 54 int NextChar(const uint8** cursor, const uint8* end) {
90 while ((current = NextChar(cursor, end)) > 0x0000)
247 if (NextChar(&cursor, end) != kDelimBracketOpen)
260 int current = NextChar(&cursor, end);
264 current = NextChar(&cursor, end);
270 current = NextChar(&cursor, end);
276 current = NextChar(&cursor, end);
285 current = NextChar(&cursor, end);
  /external/chromium/base/json/
json_reader.cc 27 wchar_t first = token.NextChar();
35 c = token.NextChar();
359 c = token.NextChar();
366 c = token.NextChar();
371 c = token.NextChar();
377 c = token.NextChar();
380 c = token.NextChar();
406 wchar_t c = token.NextChar();
410 c = token.NextChar();
444 c = token.NextChar();
    [all...]
json_reader.h 74 wchar_t NextChar() {
  /external/protobuf/src/google/protobuf/io/
tokenizer.cc 212 void Tokenizer::NextChar() {
293 NextChar();
302 NextChar();
312 NextChar();
322 NextChar();
342 NextChar();
362 NextChar();
365 NextChar();
429 NextChar();
442 NextChar();
    [all...]
tokenizer.h 187 char current_char_; // == buffer_[buffer_pos_], updated by NextChar().
215 void NextChar();
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 22 NextChar = RHS.NextChar;
185 NextChar = BitStream->getBitcodeBytes().getExtent();
256 NextChar = BitStream->getBitcodeBytes().getExtent();
  /external/chromium_org/third_party/protobuf/src/google/protobuf/io/
tokenizer.cc 219 void Tokenizer::NextChar() {
311 NextChar();
320 NextChar();
330 NextChar();
340 NextChar();
360 NextChar();
401 NextChar();
404 NextChar();
470 NextChar();
488 NextChar();
    [all...]
tokenizer.h 241 char current_char_; // == buffer_[buffer_pos_], updated by NextChar().
270 void NextChar();
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]

Completed in 1803 milliseconds