OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lltok
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/AsmParser/
LLLexer.h
38
lltok
::Kind CurKind;
51
lltok
::Kind Lex() {
57
lltok
::Kind getKind() const { return CurKind; }
70
lltok
::Kind LexToken();
74
lltok
::Kind ReadString(
lltok
::Kind kind);
77
lltok
::Kind LexIdentifier();
78
lltok
::Kind LexDigitOrNegative();
79
lltok
::Kind LexPositive();
80
lltok
::Kind LexAt()
[
all
...]
LLParser.cpp
168
case
lltok
::Eof: return false;
169
case
lltok
::kw_declare: if (ParseDeclare()) return true; break;
170
case
lltok
::kw_define: if (ParseDefine()) return true; break;
171
case
lltok
::kw_module: if (ParseModuleAsm()) return true; break;
172
case
lltok
::kw_target: if (ParseTargetDefinition()) return true; break;
173
case
lltok
::kw_deplibs: if (ParseDepLibs()) return true; break;
174
case
lltok
::LocalVarID: if (ParseUnnamedType()) return true; break;
175
case
lltok
::LocalVar: if (ParseNamedType()) return true; break;
176
case
lltok
::GlobalID: if (ParseUnnamedGlobal()) return true; break;
177
case
lltok
::GlobalVar: if (ParseNamedGlobal()) return true; break
[
all
...]
LLLexer.cpp
215
lltok
::Kind LLLexer::LexToken() {
225
return
lltok
::Error;
226
case EOF: return
lltok
::Eof;
242
return
lltok
::LabelStr;
246
return
lltok
::dotdotdot;
248
return
lltok
::Error;
253
return
lltok
::LabelStr;
255
return
lltok
::Error;
264
case '=': return
lltok
::equal;
265
case '[': return
lltok
::lsquare
[
all
...]
LLToken.h
18
namespace
lltok
{
namespace in namespace:llvm
146
} // end namespace
lltok
LLParser.h
149
bool ParseToken(
lltok
::Kind T, const char *ErrMsg);
150
bool EatIfPresent(
lltok
::Kind T) {
155
bool ParseOptionalToken(
lltok
::Kind T, bool &Present, LocTy *Loc = 0) {
Completed in 499 milliseconds