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

/external/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp466 SMLoc TypeLoc; local
468 TypeLoc = getLexer().getLoc();
482 return Error(TypeLoc, "unsupported attribute in '.type' directive");
/external/llvm/lib/AsmParser/
H A DLLParser.cpp299 LocTy TypeLoc = Lex.getLoc(); local
311 if (ParseStructDefinition(TypeLoc, "",
317 return Error(TypeLoc, "non-struct types may not be recursive");
1232 SMLoc TypeLoc = Lex.getLoc();
1301 return Error(TypeLoc, "void type only allowed for function results");
1400 LocTy TypeLoc = Lex.getLoc();
1409 return Error(TypeLoc, "argument can not have void type");
1417 return Error(TypeLoc, "invalid type for function argument");
1419 ArgList.push_back(ArgInfo(TypeLoc, ArgTy, Attrs, Name));
1429 TypeLoc
[all...]
/external/clang/include/clang/AST/
H A DTypeLoc.h1 //===--- TypeLoc.h - Type Source Info Wrapper -------------------*- C++ -*-===//
10 // This file defines the TypeLoc interface and subclasses.
31 class Class##TypeLoc;
36 /// A client should use the TypeLoc subclasses through cast/dyn_cast in order to
38 class TypeLoc { class in namespace:clang
57 TypeLoc() : Ty(0), Data(0) { } function in class:clang::TypeLoc
58 TypeLoc(QualType ty, void *opaqueData) function in class:clang::TypeLoc
60 TypeLoc(const Type *ty, void *opaqueData) function in class:clang::TypeLoc
110 /// \brief Get the next TypeLoc pointed by this TypeLoc,
[all...]
/external/clang/lib/Parse/
H A DParseExpr.cpp1631 SourceLocation TypeLoc = Tok.getLocation(); local
1696 Res = Actions.ActOnBuiltinOffsetOf(getCurScope(), StartLoc, TypeLoc,
H A DParseDecl.cpp1495 SourceLocation TypeLoc = Tok.getLocation(); local
1498 return Actions.ActOnUnaryExprOrTypeTraitExpr(TypeLoc, UETT_AlignOf, true,
/external/clang/lib/Sema/
H A DSemaExpr.cpp28 #include "clang/AST/TypeLoc.h"
3517 TypeLoc TL = PVD->getTypeSourceInfo()->getTypeLoc();
8576 SourceLocation TypeLoc,
8588 ArgTInfo = Context.getTrivialTypeSourceInfo(ArgTy, TypeLoc);
8664 TypeLoc tmp = Sig->getTypeLoc().IgnoreParens();
8675 TypeLoc Result = ExplicitSignature.getResultLoc();
8574 ActOnBuiltinOffsetOf(Scope *S, SourceLocation BuiltinLoc, SourceLocation TypeLoc, ParsedType ParsedArgTy, OffsetOfComponent *CompPtr, unsigned NumComponents, SourceLocation RParenLoc) argument

Completed in 250 milliseconds