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 299 LocTy TypeLoc = Lex.getLoc();
311 if (ParseStructDefinition(TypeLoc, "",
317 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();
482 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.
30 #define TYPELOC(Class, Base) \
31 class Class##TypeLoc;
36 /// A client should use the TypeLoc subclasses through cast/dyn_cast in order to
38 class TypeLoc {
57 TypeLoc() : Ty(0), Data(0) { }
58 TypeLoc(QualType ty, void *opaqueData)
60 TypeLoc(const Type *ty, void *opaqueData)
110 /// \brief Get the next TypeLoc pointed by this TypeLoc, e.g for "int*" th
    [all...]

Completed in 327 milliseconds