HomeSort by relevance Sort by last modified time
    Searched defs:TypeLoc (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/AsmParser/
LLParser.cpp 294 LocTy TypeLoc = Lex.getLoc();
306 if (ParseStructDefinition(TypeLoc, "",
312 return Error(TypeLoc, "non-struct types may not be recursive");
    [all...]
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 466 SMLoc TypeLoc;
468 TypeLoc = getLexer().getLoc();
483 return Error(TypeLoc, "unsupported attribute in '.type' directive");
  /external/clang/lib/Parse/
ParseExpr.cpp     [all...]
ParseDecl.cpp     [all...]
  /external/clang/include/clang/AST/
TypeLoc.h 1 //===--- TypeLoc.h - Type Source Info Wrapper -------------------*- C++ -*-===//
10 // This file defines the TypeLoc interface and subclasses.
31 #define TYPELOC(Class, Base) \
32 class Class##TypeLoc;
37 /// A client should use the TypeLoc subclasses through cast/dyn_cast in order to
39 class TypeLoc {
58 TypeLoc() : Ty(0), Data(0) { }
59 TypeLoc(QualType ty, void *opaqueData)
61 TypeLoc(const Type *ty, void *opaqueData)
113 /// \brief Get the next TypeLoc pointed by this TypeLoc, e.g for "int*" th
    [all...]

Completed in 68 milliseconds