HomeSort by relevance Sort by last modified time
    Searched full:typedecl (Results 1 - 25 of 45) sorted by null

1 2

  /external/clang/tools/libclang/
CXCursor.h 43 class TypeDecl;
91 CXCursor MakeCursorTypeRef(const TypeDecl *Type, SourceLocation Loc,
96 std::pair<TypeDecl *, SourceLocation> getCursorTypeRef(CXCursor C);
CXType.cpp 129 if (TypeDecl *TD = dyn_cast<TypeDecl>(D))
620 if (TypeDecl *TD = dyn_cast<TypeDecl>(D))
CXCursor.cpp 540 CXCursor cxcursor::MakeCursorTypeRef(const TypeDecl *Type, SourceLocation Loc,
548 std::pair<TypeDecl *, SourceLocation>
551 return std::make_pair(static_cast<TypeDecl *>(C.data[0]),
    [all...]
IndexingContext.cpp     [all...]
  /external/libxml2/include/libxml/
xmlschemastypes.h 67 xmlSchemaTypePtr typeDecl,
schemasInternals.h 932 xmlHashTablePtr typeDecl;
  /external/clang/include/clang/Sema/
DelayedDiagnostic.h 86 /// %2 - the TypeDecl type of the naming class
87 /// %3 - the TypeDecl type of the declaring class
  /external/clang/lib/Sema/
SemaCXXScopeSpec.cpp 281 if (!isa<TypeDecl>(SD))
286 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
562 (!isa<TypeDecl>(OuterDecl) || !isa<TypeDecl>(SD) ||
564 Context.getTypeDeclType(cast<TypeDecl>(OuterDecl)),
565 Context.getTypeDeclType(cast<TypeDecl>(SD))))) {
596 QualType T = Context.getTypeDeclType(cast<TypeDecl>(SD));
628 llvm_unreachable("Unhandled TypeDecl node in nested-name-specifier");
    [all...]
CodeCompleteConsumer.cpp 418 if (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND))
SemaExprMember.cpp 597 if (!isa<TypeDecl>(DC)) {
    [all...]
SemaTemplate.cpp     [all...]
SemaDecl.cpp 71 return (isa<TypeDecl>(ND) || isa<ObjCInterfaceDecl>(ND)) &&
240 if (isa<TypeDecl>(*Res) || isa<ObjCInterfaceDecl>(*Res)) {
273 if (TypeDecl *TD = dyn_cast<TypeDecl>(IIDecl)) {
463 if (isa<TypeDecl>(*I) || isa<ObjCInterfaceDecl>(*I))
594 (isa<TypeDecl>(UnderlyingFirstDecl) ||
740 if (TypeDecl *Type = dyn_cast<TypeDecl>(FirstDecl)) {
    [all...]
SemaCodeComplete.cpp 651 if (TypeDecl *Type = dyn_cast<TypeDecl>(ND))
    [all...]
SemaLookup.cpp 378 if (TypeDecl *TD = dyn_cast<TypeDecl>(D)) {
    [all...]
SemaExprObjC.cpp     [all...]
  /external/clang/lib/AST/
ASTDiagnostic.cpp 301 } else if (TypeDecl *Type = dyn_cast<TypeDecl>(DC)) {
DumpXML.cpp 548 // TypeDecl
549 void visitTypeDeclAttrs(TypeDecl *D) {
DeclTemplate.cpp 467 return TypeDecl::getSourceRange();
    [all...]
ItaniumMangle.cpp     [all...]
  /external/clang/include/clang/AST/
ASTContext.h 75 class TypeDecl;
233 TypeDecl *FILEDecl;
236 TypeDecl *jmp_bufDecl;
239 TypeDecl *sigjmp_bufDecl;
242 TypeDecl *ucontext_tDecl;
627 QualType getTypeDeclTypeSlow(const TypeDecl *Decl) const;
792 QualType getTypeDeclType(const TypeDecl *Decl,
793 const TypeDecl *PrevDecl = 0) const {
    [all...]
Decl.h     [all...]
DeclTemplate.h 874 class TemplateTypeParmDecl : public TypeDecl {
    [all...]
DeclCXX.h     [all...]
  /external/clang/lib/Serialization/
ASTWriterDecl.cpp 58 void VisitTypeDecl(TypeDecl *D);
173 void ASTDeclWriter::VisitTypeDecl(TypeDecl *D) {
    [all...]
ASTReaderDecl.cpp 223 void VisitTypeDecl(TypeDecl *TD);
315 if (TypeDecl *TD = dyn_cast<TypeDecl>(D)) {
316 // if we have a fully initialized TypeDecl, we can safely read its type now.
319 // if we have a fully initialized TypeDecl, we can safely read its type now.
401 void ASTDeclReader::VisitTypeDecl(TypeDecl *TD) {
    [all...]

Completed in 3026 milliseconds

1 2