OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getTok
(Results
1 - 16
of
16
) 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
622
const char *Start =
getTok
().getLoc().getPointer();
628
const char *End =
getTok
().getLoc().getPointer();
633
const char *Start =
getTok
().getLoc().getPointer();
640
const char *End =
getTok
().getLoc().getPointer();
729
SMLoc Loc =
getTok
().getLoc();
730
int64_t IntVal =
getTok
().getIntVal();
736
StringRef IDVal =
getTok
().getString();
751
APFloat RealVal(APFloat::IEEEdouble,
getTok
().getString());
816
getTok
().getIdentifier() + "' (already modified)");
875
MCSymbolRefExpr::getVariantKindForName(
getTok
().getIdentifier())
[
all
...]
ELFAsmParser.cpp
230
SectionName =
getTok
().getIdentifier();
244
CurSize =
getTok
().getIdentifier().size() + 2;
247
CurSize =
getTok
().getIdentifier().size();
257
if (PrevLoc.getPointer() + CurSize !=
getTok
().getLoc().getPointer())
356
StringRef FlagsStr =
getTok
().getStringContents();
503
StringRef Data =
getTok
().getIdentifier();
559
StringRef Data =
getTok
().getIdentifier();
DarwinAsmParser.cpp
714
SMLoc Loc = getParser().
getTok
().getLoc();
/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
155
///
getTok
- Get the current (last) lexed token.
156
const AsmToken &
getTok
() {
/external/llvm/lib/Target/Mips/AsmParser/
MipsAsmParser.cpp
432
const AsmToken &Tok = Parser.
getTok
();
455
SMLoc S = Parser.
getTok
().getLoc();
460
&& Operands.size() == 2 && Parser.
getTok
().is(AsmToken::Integer)){
461
RegNo = Parser.
getTok
().getIntVal(); //get the int value
471
Parser.
getTok
().getLoc()));
491
Error(Parser.
getTok
().getLoc(), "unexpected token in operand");
495
SMLoc S = Parser.
getTok
().getLoc();
513
S = Parser.
getTok
().getLoc();
524
SMLoc E = SMLoc::getFromPointer(Parser.
getTok
().getLoc().getPointer() - 1);
543
SMLoc S = Parser.
getTok
().getLoc()
[
all
...]
/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
396
SMLoc S = Parser.
getTok
().getLoc();
397
SMLoc E = SMLoc::getFromPointer(Parser.
getTok
().getLoc().getPointer() - 1);
402
RegNo = MatchRegisterName(getLexer().
getTok
().getIdentifier());
423
SMLoc S = Parser.
getTok
().getLoc();
424
SMLoc E = SMLoc::getFromPointer(Parser.
getTok
().getLoc().getPointer() - 1);
429
unsigned reg = MatchFslRegister(getLexer().
getTok
().getIdentifier());
440
SMLoc S = Parser.
getTok
().getLoc();
441
SMLoc E = SMLoc::getFromPointer(Parser.
getTok
().getLoc().getPointer() - 1);
476
Error(Parser.
getTok
().getLoc(), "unknown operand");
/external/llvm/lib/Target/ARM/AsmParser/
ARMAsmParser.cpp
[
all
...]
/external/llvm/lib/Target/X86/AsmParser/
X86AsmParser.cpp
524
const AsmToken &PercentTok = Parser.
getTok
();
532
const AsmToken &Tok = Parser.
getTok
();
572
const AsmToken &IntTok = Parser.
getTok
();
588
return Error(Parser.
getTok
().getLoc(), "expected ')'");
650
SMLoc Start = Parser.
getTok
().getLoc(), End;
671
int64_t Val = Parser.
getTok
().getIntVal();
673
SMLoc Loc = Parser.
getTok
().getLoc();
685
SMLoc IdxRegLoc = Parser.
getTok
().getLoc();
696
SMLoc PlusLoc = Parser.
getTok
().getLoc();
698
int64_t Val = Parser.
getTok
().getIntVal()
[
all
...]
/external/llvm/tools/llvm-mc/
llvm-mc.cpp
231
AsmToken Tok = Lexer.
getTok
();
243
Out->os() << "identifier: " << Lexer.
getTok
().getString();
246
Out->os() << "int: " << Lexer.
getTok
().getString();
249
Out->os() << "real: " << Lexer.
getTok
().getString();
252
Out->os() << "register: " << Lexer.
getTok
().getRegVal();
255
Out->os() << "string: " << Lexer.
getTok
().getString();
/external/llvm/lib/MC/MCDisassembler/
EDDisassembler.cpp
388
tokens.push_back(SpecificAsmLexer->
getTok
());
Completed in 789 milliseconds