Searched refs:ParseTypeAndValue (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/AsmParser/
H A DLLParser.h289 bool ParseTypeAndValue(Value *&V, PerFunctionState *PFS);
290 bool ParseTypeAndValue(Value *&V, PerFunctionState &PFS) { function in class:llvm::LLParser
291 return ParseTypeAndValue(V, &PFS);
293 bool ParseTypeAndValue(Value *&V, LocTy &Loc, PerFunctionState &PFS) { function in class:llvm::LLParser
295 return ParseTypeAndValue(V, PFS);
H A DLLParser.cpp2562 bool LLParser::ParseTypeAndValue(Value *&V, PerFunctionState *PFS) {
2572 if (ParseTypeAndValue(V, PFS)) return true;
3052 if (ParseTypeAndValue(Op0, Loc, PFS)) return true;
3081 if (ParseTypeAndValue(Cond, CondLoc, PFS) ||
3097 if (ParseTypeAndValue(Constant, CondLoc, PFS) ||
3125 if (ParseTypeAndValue(Address, AddrLoc, PFS) ||
3255 if (ParseTypeAndValue(Exn, ExnLoc, PFS))
3275 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3303 if (ParseTypeAndValue(LHS, Loc, PFS) ||
3326 ParseTypeAndValue(LH
[all...]

Completed in 83 milliseconds