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

  /external/expat/xmlwf/
ct.c 4 getTok(const char **pp)
90 p = getTok(&next);
95 p = getTok(&next);
98 p = getTok(&next);
101 p = getTok(&next);
104 p = getTok(&next);
106 p = getTok(&next);
108 p = getTok(&next);
136 p = getTok(&next);
xmlmime.c 5 getTok(const char **pp)
94 p = getTok(&next);
99 p = getTok(&next);
102 p = getTok(&next);
107 p = getTok(&next);
110 p = getTok(&next);
112 p = getTok(&next);
114 p = getTok(&next);
143 p = getTok(&next);
  /external/llvm/lib/MC/MCParser/
MCAsmParser.cpp 32 const AsmToken &MCAsmParser::getTok() {
33 return getLexer().getTok();
AsmParser.cpp 687 const char *Start = getTok().getLoc().getPointer();
693 const char *End = getTok().getLoc().getPointer();
698 const char *Start = getTok().getLoc().getPointer();
705 const char *End = getTok().getLoc().getPointer();
718 EndLoc = Lexer.getTok().getEndLoc();
732 EndLoc = Lexer.getTok().getEndLoc();
799 SMLoc Loc = getTok().getLoc();
800 int64_t IntVal = getTok().getIntVal();
802 EndLoc = Lexer.getTok().getEndLoc();
806 StringRef IDVal = getTok().getString()
    [all...]
ELFAsmParser.cpp 232 SectionName = getTok().getIdentifier();
246 CurSize = getTok().getIdentifier().size() + 2;
249 CurSize = getTok().getIdentifier().size();
259 if (PrevLoc.getPointer() + CurSize != getTok().getLoc().getPointer())
358 StringRef FlagsStr = getTok().getStringContents();
514 StringRef Data = getTok().getIdentifier();
570 StringRef Data = getTok().getIdentifier();
DarwinAsmParser.cpp 793 SMLoc Loc = getParser().getTok().getLoc();
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp     [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp 730 const AsmToken &Tok = Parser.getTok();
747 SMLoc S = Parser.getTok().getLoc();
755 Parser.getTok().getLoc()));
775 Error(Parser.getTok().getLoc(), "unexpected token in operand");
779 SMLoc S = Parser.getTok().getLoc();
797 S = Parser.getTok().getLoc();
808 SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
827 SMLoc S = Parser.getTok().getLoc();
830 SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
837 SMLoc S = Parser.getTok().getLoc(); // start location of the operan
    [all...]
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 71 const AsmToken &getTok() { return getParser().getTok(); }
MCAsmLexer.h 147 /// getTok - Get the current (last) lexed token.
148 const AsmToken &getTok() {
MCAsmParser.h 122 /// getTok - Get the current AsmToken from the stream.
123 const AsmToken &getTok();
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 406 StartLoc = Parser.getTok().getLoc();
407 EndLoc = Parser.getTok().getEndLoc();
412 unsigned RegNo = MatchRegisterName(getLexer().getTok().getIdentifier());
432 SMLoc S = Parser.getTok().getLoc();
433 SMLoc E = Parser.getTok().getEndLoc();
438 unsigned reg = MatchFslRegister(getLexer().getTok().getIdentifier());
449 SMLoc S = Parser.getTok().getLoc();
450 SMLoc E = Parser.getTok().getEndLoc();
484 Error(Parser.getTok().getLoc(), "unknown operand");
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 566 const AsmToken &PercentTok = Parser.getTok();
574 const AsmToken &Tok = Parser.getTok();
615 const AsmToken &IntTok = Parser.getTok();
631 return Error(Parser.getTok().getLoc(), "expected ')'");
633 EndLoc = Parser.getTok().getEndLoc();
638 EndLoc = Parser.getTok().getEndLoc();
656 EndLoc = Parser.getTok().getEndLoc();
900 const AsmToken &Tok = Parser.getTok();
918 return ErrorOperand(Parser.getTok().getLoc(), "Expected ']' token!");
920 End = SMLoc::getFromPointer(Parser.getTok().getEndLoc().getPointer()-1)
    [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 252 AsmToken Tok = Lexer.getTok();
264 Out->os() << "identifier: " << Lexer.getTok().getString();
267 Out->os() << "int: " << Lexer.getTok().getString();
270 Out->os() << "real: " << Lexer.getTok().getString();
273 Out->os() << "string: " << Lexer.getTok().getString();

Completed in 125 milliseconds