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

1 2

  /external/clang/include/clang/Analysis/Visitors/
CFGRecStmtDeclVisitor.h 65 DISPATCH_CASE(Typedef)
83 DEFAULT_DISPATCH(Typedef)
  /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 161 case clang::Decl::Typedef: {
  /external/clang/tools/libclang/
CXType.cpp 82 TKCASE(Typedef);
323 case Type::Typedef:
405 TKIND(Typedef);
CIndex.cpp 715 // If we have a function declared directly (without the use of a typedef),
    [all...]
CXCursor.cpp 995 if (const TypedefType *Typedef = Ty->getAs<TypedefType>())
996 return MakeCursorTypeRef(Typedef->getDecl(), Loc, TU);
    [all...]
IndexingContext.cpp 874 case Decl::Typedef:
    [all...]
  /external/clang/lib/AST/
TypePrinter.cpp 110 case Type::Typedef:
630 if (TypedefNameDecl *Typedef = Tag->getTypedefNameForAnonDecl())
631 Buffer += Typedef->getIdentifier()->getName();
669 else if (TypedefNameDecl *Typedef = D->getTypedefNameForAnonDecl()) {
670 assert(Typedef->getIdentifier() && "Typedef without identifier?");
671 Buffer += Typedef->getIdentifier()->getNameStart();
    [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.
397 // If this is a typedef for a structure type, strip the typedef off without
398 // losing all typedef information.
416 // If this is a typedef for a union type, strip the typedef off without
417 // losing all typedef information
    [all...]
DeclBase.cpp 476 case Typedef:
    [all...]
ASTContext.cpp     [all...]
ASTImporter.cpp 615 case Type::Typedef:
    [all...]
ItaniumMangle.cpp 893 case Type::Typedef:
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 158 // Create the new typedef
159 TypedefNameDecl *Typedef;
161 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
164 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
167 Typedef->setInvalidDecl();
169 // If the old typedef was the name for linkage purposes of an anonymous
170 // tag decl, re-establish that relationship for the new typedef.
176 newTag->setTypedefNameForAnonDecl(Typedef);
188 // If the typedef types are not identical, reject them.
189 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...]
SemaDecl.cpp 341 /// typedef int TYPE;
    [all...]
  /external/protobuf/editors/
proto.vim 95 HiLink pbTypedef Typedef
  /external/clang/lib/Frontend/
ASTConsumers.cpp 340 case Decl::Typedef:
343 Out << "<typedef> " << *TD << '\n';
  /external/clang/lib/Serialization/
ASTReader.cpp 854 typedef const char *external_key_type;
855 typedef const char *internal_key_type;
857 typedef ASTStatData data_type;
898 typedef OnDiskChainedHashTable<ASTStatLookupTrait> CacheTy;
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp     [all...]
CGDecl.cpp 96 case Decl::Typedef: // typedef int X;
    [all...]
CGDebugInfo.cpp 356 // typedef struct objc_class *Class;
357 // typedef struct objc_object {
658 // Typedefs are derived from some other type. If we have a typedef of a
659 // typedef, make sure to emit the whole chain.
663 // We don't set size information, but do specify where the typedef was
    [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 414 typedef Redeclarable<NamespaceDecl> redeclarable_base;
433 typedef redeclarable_base::redecl_iterator redecl_iterator;
714 typedef clang::StorageClass StorageClass;
738 typedef llvm::PointerUnion4<Stmt *, EvaluatedStmt *,
830 typedef Redeclarable<VarDecl> redeclarable_base;
840 typedef redeclarable_base::redecl_iterator redecl_iterator;
    [all...]
Type.h 100 typedef CanQual<Type> CanQualType;
734 /// typedef int Integer;
735 /// typedef const Integer CInteger;
736 /// typedef CInteger DifferenceType;
797 /// This routine takes off the first typedef, typeof, etc. If the outer level
931 typedef const ::clang::Type *SimpleType;
    [all...]

Completed in 500 milliseconds

1 2