HomeSort by relevance Sort by last modified time
    Searched refs:getTok (Results 1 - 14 of 14) 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 595 const char *Start = getTok().getLoc().getPointer();
601 const char *End = getTok().getLoc().getPointer();
690 SMLoc Loc = getTok().getLoc();
691 int64_t IntVal = getTok().getIntVal();
697 StringRef IDVal = getTok().getString();
712 APFloat RealVal(APFloat::IEEEdouble, getTok().getString());
777 getTok().getIdentifier() + "' (already modified)");
836 MCSymbolRefExpr::getVariantKindForName(getTok().getIdentifier());
838 return TokError("invalid variant '" + getTok().getIdentifier() + "'");
842 return TokError("invalid modifier '" + getTok().getIdentifier()
    [all...]
ELFAsmParser.cpp 228 SectionName = getTok().getIdentifier();
242 CurSize = getTok().getIdentifier().size() + 2;
245 CurSize = getTok().getIdentifier().size();
255 if (PrevLoc.getPointer() + CurSize != getTok().getLoc().getPointer())
354 StringRef FlagsStr = getTok().getStringContents();
501 StringRef Data = getTok().getIdentifier();
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 71 const AsmToken &getTok() { return getParser().getTok(); }
MCAsmParser.h 95 /// getTok - Get the current AsmToken from the stream.
96 const AsmToken &getTok();
MCAsmLexer.h 154 /// getTok - Get the current (last) lexed token.
155 const AsmToken &getTok() {
  /external/llvm/include/llvm/MC/
MCTargetAsmLexer.h 62 /// getTok - Get the current (last) lexed token.
63 const AsmToken &getTok() {
  /external/llvm/lib/Target/MBlaze/AsmParser/
MBlazeAsmParser.cpp 391 SMLoc S = Parser.getTok().getLoc();
392 SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
397 RegNo = MatchRegisterName(getLexer().getTok().getIdentifier());
418 SMLoc S = Parser.getTok().getLoc();
419 SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
424 unsigned reg = MatchFslRegister(getLexer().getTok().getIdentifier());
435 SMLoc S = Parser.getTok().getLoc();
436 SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
471 Error(Parser.getTok().getLoc(), "unknown operand");
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 481 const AsmToken &TokPercent = Parser.getTok();
487 const AsmToken &Tok = Parser.getTok();
527 const AsmToken &IntTok = Parser.getTok();
543 return Error(Parser.getTok().getLoc(), "expected ')'");
605 SMLoc Start = Parser.getTok().getLoc(), End;
626 int64_t Val = Parser.getTok().getIntVal();
628 SMLoc Loc = Parser.getTok().getLoc();
640 SMLoc IdxRegLoc = Parser.getTok().getLoc();
651 SMLoc PlusLoc = Parser.getTok().getLoc();
653 int64_t Val = Parser.getTok().getIntVal()
    [all...]
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 253 AsmToken Tok = Lexer.getTok();
265 Out->os() << "identifier: " << Lexer.getTok().getString();
268 Out->os() << "int: " << Lexer.getTok().getString();
271 Out->os() << "real: " << Lexer.getTok().getString();
274 Out->os() << "register: " << Lexer.getTok().getRegVal();
277 Out->os() << "string: " << Lexer.getTok().getString();
  /external/llvm/lib/MC/MCDisassembler/
EDDisassembler.cpp 388 tokens.push_back(SpecificAsmLexer->getTok());

Completed in 263 milliseconds