HomeSort by relevance Sort by last modified time
    Searched refs:NextChar (Results 1 - 8 of 8) 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/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)
    [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();
  /external/llvm/lib/Bitcode/Reader/
BitstreamReader.cpp 22 NextChar = RHS.NextChar;
185 NextChar = BitStream->getBitcodeBytes().getExtent();
247 NextChar = BitStream->getBitcodeBytes().getExtent();
  /external/llvm/lib/MC/MCParser/
AsmParser.cpp     [all...]

Completed in 274 milliseconds