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

1 2

  /external/clang/include/clang/Analysis/Visitors/
CFGRecStmtDeclVisitor.h 65 DISPATCH_CASE(Typedef)
85 DEFAULT_DISPATCH(Typedef)
  /external/clang/lib/Analysis/
FormatString.cpp 775 const TypedefNameDecl *Typedef = cast<TypedefType>(QT)->getDecl();
778 const IdentifierInfo *Identifier = Typedef->getIdentifier();
797 QualType T = Typedef->getUnderlyingType();
801 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 164 case clang::Decl::Typedef: {
  /external/clang/tools/libclang/
CXType.cpp 82 TKCASE(Typedef);
373 case Type::Typedef:
455 TKIND(Typedef);
CXCursor.cpp 897 if (const TypedefType *Typedef = Ty->getAs<TypedefType>())
898 return MakeCursorTypeRef(Typedef->getDecl(), Loc, TU);
968 typedef llvm::DenseMap<CXCursor, unsigned> CXCursorSet_Impl;
    [all...]
CIndex.cpp 760 // If we have a function declared directly (without the use of a typedef),
    [all...]
IndexingContext.cpp     [all...]
  /external/clang/lib/AST/
Comment.cpp 232 case Decl::Typedef: {
234 // If this is a typedef to something we consider a function, extract
263 // Is this a typedef for a function type?
TypePrinter.cpp 172 case Type::Typedef:
827 if (TypedefNameDecl *Typedef = Tag->getTypedefNameForAnonDecl())
828 OS << Typedef->getIdentifier()->getName() << "::";
862 else if (TypedefNameDecl *Typedef = D->getTypedefNameForAnonDecl()) {
863 assert(Typedef->getIdentifier() && "Typedef without identifier?");
864 OS << Typedef->getIdentifier()->getName();
    [all...]
DeclBase.cpp 505 case Typedef:
    [all...]
ASTContext.cpp 439 // Attach any tag type's documentation to its typedef if latter
    [all...]
ASTImporter.cpp 594 case Type::Typedef:
    [all...]
Type.cpp 55 else if (ty->getTypeClass() == Type::Typedef)
206 // If this is a typedef for an array type, strip the typedef off without
207 // losing all typedef information.
452 // If this is a typedef for a structure type, strip the typedef off without
453 // losing all typedef information.
471 // If this is a typedef for a union type, strip the typedef off without
472 // losing all typedef information
    [all...]
ItaniumMangle.cpp 884 case Type::Typedef:
    [all...]
  /external/clang/lib/Sema/
SemaTemplateInstantiateDecl.cpp 217 // Create the new typedef
218 TypedefNameDecl *Typedef;
220 Typedef = TypeAliasDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
223 Typedef = TypedefDecl::Create(SemaRef.Context, Owner, D->getLocStart(),
226 Typedef->setInvalidDecl();
228 // If the old typedef was the name for linkage purposes of an anonymous
229 // tag decl, re-establish that relationship for the new typedef.
235 newTag->setTypedefNameForAnonDecl(Typedef);
247 // If the typedef types are not identical, reject them.
248 SemaRef.isIncompatibleTypedef(InstPrevTypedef, Typedef);
    [all...]
TreeTransform.h 726 /// \brief Build a new typedef type.
727 QualType RebuildTypedefType(TypedefNameDecl *Typedef) {
728 return SemaRef.Context.getTypeDeclType(Typedef);
    [all...]
  /external/clang/lib/Serialization/
ASTCommon.cpp 153 case Decl::Typedef:
ASTReader.cpp 211 typedef llvm::StringMap<std::pair<StringRef, bool /*IsUndef*/> >
    [all...]
  /external/protobuf/editors/
proto.vim 95 HiLink pbTypedef Typedef
  /external/clang/lib/Frontend/
ASTConsumers.cpp 36 typedef RecursiveASTVisitor<ASTPrinter> base;
412 case Decl::Typedef:
415 Out << "<typedef> " << *TD << '\n';
  /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 330 typedef Redeclarable<NamespaceDecl> redeclarable_base;
349 typedef redeclarable_base::redecl_iterator redecl_iterator;
625 typedef clang::StorageClass StorageClass;
649 typedef llvm::PointerUnion4<Stmt *, EvaluatedStmt *,
741 typedef Redeclarable<VarDecl> redeclarable_base;
751 typedef redeclarable_base::redecl_iterator redecl_iterator;
    [all...]
  /external/clang/lib/CodeGen/
CodeGenFunction.cpp     [all...]
CGDecl.cpp 97 case Decl::Typedef: // typedef int X;
    [all...]

Completed in 1347 milliseconds

1 2