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

  /external/llvm/lib/TableGen/
TGLexer.cpp 139 int NextChar = 0;
146 NextChar = peekNextChar(i++);
147 } while (isdigit(NextChar));
149 if (NextChar == 'x' || NextChar == 'b') {
157 if (NextChar == 'b')
164 if (NextChar == 'x')
171 if (isalpha(NextChar) || NextChar == '_')
  /external/llvm/include/llvm/Bitcode/
BitstreamReader.h 128 size_t NextChar;
155 BitstreamCursor() : BitStream(0), NextChar(0) {
157 BitstreamCursor(const BitstreamCursor &RHS) : BitStream(0), NextChar(0) {
162 NextChar = 0;
172 NextChar = 0;
186 NextChar = RHS.NextChar;
256 return isEndPos(NextChar) && BitsInCurWord == 0;
261 return NextChar*CHAR_BIT - BitsInCurWord;
279 NextChar = ByteNo
    [all...]
  /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();

Completed in 103 milliseconds