HomeSort by relevance Sort by last modified time
    Searched refs:Typedef (Results 1 - 25 of 33) sorted by null

1 2

  /external/clang/include/clang/Analysis/Visitors/
CFGRecStmtDeclVisitor.h 65 DISPATCH_CASE(Typedef)
84 DEFAULT_DISPATCH(Typedef)
  /external/clang/lib/Analysis/
FormatString.cpp 741 const TypedefNameDecl *Typedef = cast<TypedefType>(QT)->getDecl();
744 const IdentifierInfo *Identifier = Typedef->getIdentifier();
763 QualType T = Typedef->getUnderlyingType();
767 Typedef = cast<TypedefType>(T)->getDecl();
  /frameworks/compile/slang/
slang_rs_export_element.cpp 132 // Following the typedef chain to see whether it's an element name like
133 // rs_pixel_rgb or its alias (via typedef).
135 if (T->getTypeClass() != clang::Type::Typedef) {
slang_rs_context.cpp 162 case clang::Decl::Typedef: {
  /external/clang/tools/libclang/
CXType.cpp 82 TKCASE(Typedef);
339 case Type::Typedef:
421 TKIND(Typedef);
CIndex.cpp 732 // If we have a function declared directly (without the use of a typedef),
    [all...]
CXCursor.cpp     [all...]
IndexingContext.cpp 878 case Decl::Typedef:
    [all...]
  /external/clang/lib/AST/
Comment.cpp 245 case Decl::Typedef: {
247 // If this is a typedef to something we consider a function, extract
284 // Is this a typedef for a function type?
TypePrinter.cpp 175 case Type::Typedef:
822 if (TypedefNameDecl *Typedef = Tag->getTypedefNameForAnonDecl())
823 OS << Typedef->getIdentifier()->getName() << "::";
857 else if (TypedefNameDecl *Typedef = D->getTypedefNameForAnonDecl()) {
858 assert(Typedef->getIdentifier() && "Typedef without identifier?");
859 OS << Typedef->getIdentifier()->getName();
    [all...]
Type.cpp 54 else if (ty->getTypeClass() == Type::Typedef)
186 // If this is a typedef for an array type, strip the typedef off without
187 // losing all typedef information.
425 // If this is a typedef for a structure type, strip the typedef off without
426 // losing all typedef information.
444 // If this is a typedef for a union type, strip the typedef off without
445 // losing all typedef information
    [all...]
DeclBase.cpp 485 case Typedef:
    [all...]
ASTContext.cpp     [all...]
ASTImporter.cpp 587 case Type::Typedef:
    [all...]
ItaniumMangle.cpp 894 case Type::Typedef:
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 161 // Create the new typedef
162 TypedefNameDecl *Typedef;
164 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
167 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
170 Typedef->setInvalidDecl();
172 // If the old typedef was the name for linkage purposes of an anonymous
173 // tag decl, re-establish that relationship for the new typedef.
179 newTag->setTypedefNameForAnonDecl(Typedef);
191 // If the typedef types are not identical, reject them.
192 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
    [all...]
TreeTransform.h 717 /// \brief Build a new typedef type.
718 QualType RebuildTypedefType(TypedefNameDecl *Typedef) {
719 return SemaRef.Context.getTypeDeclType(Typedef);
    [all...]
  /external/protobuf/editors/
proto.vim 95 HiLink pbTypedef Typedef
  /external/clang/lib/Frontend/
ASTConsumers.cpp 36 typedef RecursiveASTVisitor<ASTPrinter> base;
410 case Decl::Typedef:
413 Out << "<typedef> " << *TD << '\n';
  /external/clang/lib/Serialization/
ASTReader.cpp 860 typedef const char *external_key_type;
861 typedef const char *internal_key_type;
863 typedef ASTStatData data_type;
904 typedef OnDiskChainedHashTable<ASTStatLookupTrait> CacheTy;
    [all...]
  /external/chromium/testing/gmock/scripts/generator/cpp/
ast.py 272 class Typedef(_GenericDeclaration):
693 # Keep the state whether we are currently handling a typedef or not.
    [all...]
  /external/clang/include/clang/AST/
Decl.h 412 typedef Redeclarable<NamespaceDecl> redeclarable_base;
431 typedef redeclarable_base::redecl_iterator redecl_iterator;
712 typedef clang::StorageClass StorageClass;
736 typedef llvm::PointerUnion4<Stmt *, EvaluatedStmt *,
828 typedef Redeclarable<VarDecl> redeclarable_base;
838 typedef redeclarable_base::redecl_iterator redecl_iterator;
    [all...]
Type.h 101 typedef CanQual<Type> CanQualType;
735 /// typedef int Integer;
736 /// typedef const Integer CInteger;
737 /// typedef CInteger DifferenceType;
798 /// This routine takes off the first typedef, typeof, etc. If the outer level
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp     [all...]
CGDecl.cpp 96 case Decl::Typedef: // typedef int X;
    [all...]

Completed in 388 milliseconds

1 2