Searched defs:TypeLoc (Results 1 - 9 of 9) sorted by relevance

/external/clang/include/clang/ASTMatchers/
H A DASTMatchFinder.h209 std::vector<std::pair<TypeLocMatcher, MatchCallback *>> TypeLoc; member in struct:clang::ast_matchers::MatchFinder::MatchersByType
/external/clang/lib/Parse/
H A DParseOpenMP.cpp526 SourceLocation TypeLoc = Tok.getLocation(); local
534 return Actions.ActOnOpenMPSimpleClause(Kind, Type, TypeLoc, LOpen, Loc,
H A DParseExpr.cpp1854 SourceLocation TypeLoc = Tok.getLocation(); local
1924 Res = Actions.ActOnBuiltinOffsetOf(getCurScope(), StartLoc, TypeLoc,
H A DParseDecl.cpp2369 SourceLocation TypeLoc = Tok.getLocation(); local
2372 ER = Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
/external/llvm/lib/AsmParser/
H A DLLParser.cpp301 LocTy TypeLoc = Lex.getLoc(); local
310 if (ParseStructDefinition(TypeLoc, "",
316 return Error(TypeLoc, "non-struct types may not be recursive");
1677 SMLoc TypeLoc = Lex.getLoc();
1744 return Error(TypeLoc, "void type only allowed for function results");
1866 LocTy TypeLoc = Lex.getLoc();
1875 return Error(TypeLoc, "argument can not have void type");
1883 return Error(TypeLoc, "invalid type for function argument");
1886 ArgList.push_back(ArgInfo(TypeLoc, ArgTy,
1898 TypeLoc
[all...]
/external/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp605 SMLoc TypeLoc = getLexer().getLoc(); local
613 return Error(TypeLoc, "unsupported attribute in '.type' directive");
/external/clang/include/clang/AST/
H A DTypeLoc.h1 //===--- TypeLoc.h - Type Source Info Wrapper -------------------*- C++ -*-===//
11 /// \brief Defines the clang::TypeLoc interface and its subclasses.
33 class Class##TypeLoc;
38 /// A client should use the TypeLoc subclasses through castAs()/getAs()
40 class TypeLoc { class in namespace:clang
48 /// \brief Convert to the specified TypeLoc type, asserting that this TypeLoc
56 TypeLoc& tl = t;
61 /// \brief Convert to the specified TypeLoc type, returning a null TypeLoc i
84 TypeLoc() : Ty(nullptr), Data(nullptr) { } function in class:clang::TypeLoc
85 TypeLoc(QualType ty, void *opaqueData) function in class:clang::TypeLoc
87 TypeLoc(const Type *ty, void *opaqueData) function in class:clang::TypeLoc
189 isKind(const TypeLoc&) argument
[all...]
/external/llvm/lib/Target/X86/AsmParser/
H A DX86AsmParser.cpp1590 SMLoc TypeLoc = Tok.getLoc(); local
1614 unsigned Len = End.getPointer() - TypeLoc.getPointer();
1615 InstInfo->AsmRewrites->push_back(AsmRewrite(AOK_Imm, TypeLoc, Len, CVal));
/external/clang/lib/Sema/
H A DSemaExpr.cpp28 #include "clang/AST/TypeLoc.h"
4493 TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc();
11042 SourceLocation TypeLoc,
11054 ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc);
11162 TypeLoc tmp = Sig->getTypeLoc().IgnoreParens();
11172 TypeLoc Result = ExplicitSignature.getReturnLoc();
11040 ActOnBuiltinOffsetOf(Scope *S, SourceLocation BuiltinLoc, SourceLocation TypeLoc, ParsedType ParsedArgTy, OffsetOfComponent *CompPtr, unsigned NumComponents, SourceLocation RParenLoc) argument

Completed in 330 milliseconds