Home
last modified time | relevance | path

Searched refs:AllowVoid (Results 1 – 2 of 2) sorted by relevance

/external/llvm/lib/AsmParser/
DLLParser.h248 bool ParseType(Type *&Result, bool AllowVoid = false);
249 bool ParseType(Type *&Result, LocTy &Loc, bool AllowVoid = false) {
251 return ParseType(Result, AllowVoid);
DLLParser.cpp1511 bool LLParser::ParseType(Type *&Result, bool AllowVoid) { in ParseType() argument
1580 if (!AllowVoid && Result->isVoidTy()) in ParseType()