HomeSort by relevance Sort by last modified time
    Searched full:gettok (Results 1 - 25 of 43) sorted by null

1 2

  /external/llvm/lib/Target/SystemZ/AsmParser/
SystemZAsmParser.cpp 456 Reg.StartLoc = Parser.getTok().getLoc();
459 if (Parser.getTok().isNot(AsmToken::Percent))
460 return Error(Parser.getTok().getLoc(), "register expected");
464 if (Parser.getTok().isNot(AsmToken::Identifier))
468 StringRef Name = Parser.getTok().getString();
487 Reg.EndLoc = Parser.getTok().getLoc();
515 if (Parser.getTok().isNot(AsmToken::Percent))
572 return Error(Parser.getTok().getLoc(), "unexpected token in address");
583 SMLoc StartLoc = Parser.getTok().getLoc();
609 SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1)
    [all...]
  /external/llvm/lib/MC/MCParser/
MCAsmParser.cpp 32 const AsmToken &MCAsmParser::getTok() const {
33 return getLexer().getTok();
AsmParser.cpp 708 const char *Start = getTok().getLoc().getPointer();
713 const char *End = getTok().getLoc().getPointer();
718 const char *Start = getTok().getLoc().getPointer();
724 const char *End = getTok().getLoc().getPointer();
738 EndLoc = Lexer.getTok().getEndLoc();
753 EndLoc = Lexer.getTok().getEndLoc();
820 return Error(Lexer.getTok().getLoc(),
865 SMLoc Loc = getTok().getLoc();
866 int64_t IntVal = getTok().getIntVal();
868 EndLoc = Lexer.getTok().getEndLoc()
    [all...]
ELFAsmParser.cpp 236 SectionName = getTok().getIdentifier();
249 CurSize = getTok().getIdentifier().size() + 2;
252 CurSize = getTok().getIdentifier().size();
262 if (PrevLoc.getPointer() + CurSize != getTok().getLoc().getPointer())
325 StringRef flagId = getTok().getIdentifier();
410 StringRef FlagsStr = getTok().getStringContents();
630 StringRef Data = getTok().getIdentifier();
678 StringRef Data = getTok().getIdentifier();
DarwinAsmParser.cpp 840 SMLoc Loc = getParser().getTok().getLoc();
    [all...]
COFFAsmParser.cpp 317 SectionName = getTok().getIdentifier();
352 StringRef FlagsStr = getTok().getStringContents();
473 StringRef TypeId = getTok().getIdentifier();
  /external/llvm/include/llvm/MC/MCParser/
MCAsmParserExtension.h 80 const AsmToken &getTok() { return getParser().getTok(); }
MCAsmLexer.h 160 const AsmToken &getTok() const {
MCAsmParser.h 144 const AsmToken &getTok() const;
  /external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp     [all...]
  /external/llvm/lib/Target/AArch64/AsmParser/
AArch64AsmParser.cpp 55 SMLoc getLoc() const { return getParser().getTok().getLoc(); }
    [all...]
  /external/llvm/lib/Target/Sparc/AsmParser/
SparcAsmParser.cpp 428 const AsmToken &Tok = Parser.getTok();
595 Parser.getTok().getLoc()));
599 SMLoc S = Parser.getTok().getLoc();
605 if (!matchRegisterName(Parser.getTok(), RegNo, RegKind))
609 SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer()-1);
623 Parser.getTok().getLoc()));
644 SMLoc S = Parser.getTok().getLoc();
645 SMLoc E = SMLoc::getFromPointer(Parser.getTok().getLoc().getPointer() - 1);
656 if (matchRegisterName(Parser.getTok(), RegNo, RegKind)) {
657 StringRef name = Parser.getTok().getString()
    [all...]
  /external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp     [all...]
  /external/llvm/docs/tutorial/
LangImpl1.rst 190 ``gettok``. The ``gettok`` function is called to return the next token
195 /// gettok - Return the next token from standard input.
196 static int gettok() {
203 ``gettok`` works by calling the C ``getchar()`` function to read
209 The next thing ``gettok`` needs to do is recognize identifiers and
257 return gettok();
  /external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp 66 SMLoc Result = Parser.getTok().getLoc();
862 const AsmToken &PercentTok = Parser.getTok();
870 const AsmToken &Tok = Parser.getTok();
911 const AsmToken &IntTok = Parser.getTok();
927 return Error(Parser.getTok().getLoc(), "expected ')'");
929 EndLoc = Parser.getTok().getEndLoc();
934 EndLoc = Parser.getTok().getEndLoc();
952 EndLoc = Parser.getTok().getEndLoc();
    [all...]
  /external/llvm/lib/Target/R600/AsmParser/
AMDGPUAsmParser.cpp 428 const AsmToken Tok = Parser.getTok();
587 SMLoc S = Parser.getTok().getLoc();
606 SMLoc S = Parser.getTok().getLoc();
658 Operands.push_back(AMDGPUOperand::CreateToken(Parser.getTok().getString(),
728 StringRef OffsetName = Parser.getTok().getString();
752 SMLoc S = Parser.getTok().getLoc();
767 SMLoc S = Parser.getTok().getLoc();
774 StringRef Tok = Parser.getTok().getString();
810 SMLoc S = Parser.getTok().getLoc();
867 SMLoc S = Parser.getTok().getLoc()
    [all...]
  /ndk/sources/host-tools/nawk-20071023/
lex.c 101 int gettok(char **pbuf, int *psz) /* get next input token */ function
120 if (!adjbuf(&buf, &sz, bp-buf+2, 100, &bp, "gettok"))
137 if (!adjbuf(&buf, &sz, bp-buf+2, 100, &bp, "gettok"))
187 c = gettok(&buf, &bufsize);
304 c = gettok(&buf, &bufsize);
  /external/llvm/lib/Target/PowerPC/AsmParser/
PPCAsmParser.cpp     [all...]
  /external/llvm/examples/Kaleidoscope/Chapter2/
toy.cpp 27 /// gettok - Return the next token from standard input.
28 static int gettok() { function
62 return gettok();
141 return CurTok = gettok();
  /external/llvm/tools/llvm-mc/
llvm-mc.cpp 248 AsmToken Tok = Lexer.getTok();
260 OS << "identifier: " << Lexer.getTok().getString();
263 OS << "int: " << Lexer.getTok().getString();
266 OS << "real: " << Lexer.getTok().getString();
269 OS << "string: " << Lexer.getTok().getString();
  /external/llvm/examples/Kaleidoscope/Chapter3/
toy.cpp 32 /// gettok - Return the next token from standard input.
33 static int gettok() { function
67 return gettok();
161 return CurTok = gettok();
  /external/dnsmasq/src/
cache.c 730 static int gettok(FILE *f, char *token) function
770 while ((atnl = gettok(f, token)) != EOF)
800 atnl = gettok(f, token);
827 if ((atnl = gettok(f, token)) == EOF)
    [all...]
  /external/llvm/examples/Kaleidoscope/Chapter4/
toy.cpp 42 /// gettok - Return the next token from standard input.
43 static int gettok() { function
80 return gettok();
178 static int getNextToken() { return CurTok = gettok(); }
  /external/llvm/examples/Kaleidoscope/Chapter5/
toy.cpp 50 /// gettok - Return the next token from standard input.
51 static int gettok() { function
98 return gettok();
218 static int getNextToken() { return CurTok = gettok(); }
  /external/llvm/examples/Kaleidoscope/Chapter6/
toy.cpp 54 /// gettok - Return the next token from standard input.
55 static int gettok() { function
106 return gettok();
249 static int getNextToken() { return CurTok = gettok(); }

Completed in 637 milliseconds

1 2