Home | History | Annotate | Download | only in AsmParser

Lines Matching defs:Lex

92     LLLexer Lex;
145 : Context(M->getContext()), Lex(F, SM, Err, M->getContext()), M(M),
159 return Lex.Error(L, Msg);
162 return Error(Lex.getLoc(), Msg);
182 if (Lex.getKind() != T) return false;
183 Lex.Lex();
190 switch (Lex.getKind()) {
191 case lltok::kw_fast: FMF.setUnsafeAlgebra(); Lex.Lex(); continue;
192 case lltok::kw_nnan: FMF.setNoNaNs(); Lex.Lex(); continue;
193 case lltok::kw_ninf: FMF.setNoInfs(); Lex.Lex(); continue;
194 case lltok::kw_nsz: FMF.setNoSignedZeros(); Lex.Lex(); continue;
195 case lltok::kw_arcp: FMF.setAllowReciprocal(); Lex.Lex(); continue;
203 if (Lex.getKind() != T) {
207 *Loc = Lex.getLoc();
208 Lex.Lex();
216 Loc = Lex.getLoc();
221 Loc = Lex.getLoc();
300 Loc = Lex.getLoc();
304 Loc = Lex.getLoc();
371 Loc = Lex.getLoc();
380 Loc = Lex.getLoc();