HomeSort by: relevance | last modified time | path
    Searched refs:parseType (Results 1 - 13 of 13) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/Utils/
WebAssemblyTypeUtilities.h 53 Optional<wasm::ValType> parseType(StringRef Type);
WebAssemblyTypeUtilities.cpp 19 Optional<wasm::ValType> WebAssembly::parseType(StringRef Type) {
  /src/external/gpl3/gcc.old/dist/libphobos/libdruntime/core/
demangle.d 31 // static char[] parseType(ref Demangle, char[])
801 char[] parseType( char[] name = null ) return scope
829 static if (__traits(hasMember, Hooks, "parseType"))
830 if (auto n = hooks.parseType(this, name))
833 debug(trace) printf( "parseType+\n" );
834 debug(trace) scope(success) printf( "parseType-\n" );
861 return parseBackrefType( () => parseType( name ) );
865 parseType();
872 parseType();
879 parseType();
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/AsmParser/
Parser.h 174 Type *parseType(StringRef Asm, SMDiagnostic &Err, const Module &M,
LLParser.h 394 bool parseType(Type *&Result, const Twine &Msg, bool AllowVoid = false);
395 bool parseType(Type *&Result, bool AllowVoid = false) {
396 return parseType(Result, "expected type", AllowVoid);
398 bool parseType(Type *&Result, const Twine &Msg, LocTy &Loc,
401 return parseType(Result, Msg, AllowVoid);
403 bool parseType(Type *&Result, LocTy &Loc, bool AllowVoid = false) {
405 return parseType(Result, AllowVoid);
  /src/external/apache2/llvm/dist/llvm/lib/Remarks/
YAMLRemarkParser.h 85 Expected<Type> parseType(yaml::MappingNode &Node);
YAMLRemarkParser.cpp 209 Expected<Type> T = parseType(*Root);
272 Expected<Type> YAMLRemarkParser::parseType(yaml::MappingNode &Node) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/Demangle/
ItaniumDemangle.h 2489 Node *parseType();
2744 Node *P = getDerived().parseType();
2874 Node *Ty = getDerived().parseType();
3506 Node *T = getDerived().parseType();
3522 Node *ReturnType = getDerived().parseType();
3541 Node *T = getDerived().parseType();
3569 Node *ElemType = getDerived().parseType();
3581 Node *ElemType = getDerived().parseType();
3586 Node *ElemType = getDerived().parseType();
3632 Node *Ty = getDerived().parseType();
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Support/
ItaniumManglingCanonicalizer.cpp 243 N = P->Demangler.parseType();
250 N = P->Demangler.parseType();
  /src/external/gpl3/gcc.old/dist/gcc/d/dmd/
parse.d 1509 spectype = parseType(&tp_ident);
1526 spec = parseType();
1535 def = parseType();
1555 tp_spectype = parseType();
1560 tp_defaulttype = parseType();
1588 tp_spectype = parseType();
1593 tp_defaulttype = parseType();
1601 tp_valtype = parseType(&tp_ident);
1803 ? parseType() // argument is a type
2030 AST.Type tb = parseType();
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/AsmParser/
LLParser.cpp 91 if (parseType(Ty) || parseConstantValue(Ty, C))
106 if (parseType(Ty))
982 if (parseType(Ty) ||
1133 parseGlobalType(IsConstant) || parseType(Ty, TyLoc))
2541 /// parseType - parse a type.
2542 bool LLParser::parseType(Type *&Result, const Twine &Msg, bool AllowVoid) {
2691 if (parseType(ArgTy, ArgLoc))
2722 if (parseType(Result))
2784 if (parseType(Ty) || parseValue(Ty, Input, PFS))
2828 if (parseType(ArgTy) || parseOptionalParamAttrs(Attrs)
    [all...]
Parser.cpp 194 Type *llvm::parseType(StringRef Asm, SMDiagnostic &Err, const Module &M,
  /src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/AsmParser/
WebAssemblyAsmParser.cpp 352 auto Type = WebAssembly::parseType(Lexer.getTok().getString());
781 auto Type = WebAssembly::parseType(TypeName);
819 Optional<wasm::ValType> ElemType = WebAssembly::parseType(ElemTypeName);

Completed in 29 milliseconds