HomeSort by relevance Sort by last modified time
    Searched refs:NamedDecl (Results 76 - 100 of 174) sorted by null

1 2 34 5 6 7

  /external/clang/tools/libclang/
CXCursor.cpp 632 CXCursor cxcursor::MakeCursorNamespaceRef(const NamedDecl *NS,
643 std::pair<const NamedDecl *, SourceLocation>
646 return std::make_pair(static_cast<const NamedDecl *>(C.data[0]),
868 const NamedDecl *D = dyn_cast_or_null<NamedDecl>(getCursorDecl(cursor));
873 SmallVector<const NamedDecl *, 8> OverDecls;
876 for (SmallVectorImpl<const NamedDecl *>::iterator
    [all...]
  /external/clang/lib/Frontend/
ASTConsumers.cpp 73 if (isa<NamedDecl>(D))
74 return cast<NamedDecl>(D)->getQualifiedNameAsString();
110 bool VisitNamedDecl(NamedDecl *D) {
  /external/lldb/source/Expression/
ClangExpressionDeclMap.cpp 180 const NamedDecl *decl,
302 const NamedDecl *decl,
333 log->Printf("Adding value for (NamedDecl*)%p [%s - %s] to the structure",
433 const NamedDecl *&decl,
472 const NamedDecl *decl,
482 // its NamedDecl
815 else if (const NamedDecl *context_named_decl = dyn_cast<NamedDecl>(context.m_decl_context))
    [all...]
ASTResultSynthesizer.cpp 65 if (NamedDecl *named_decl = dyn_cast<NamedDecl>(D))
  /external/clang/lib/Sema/
SemaTemplate.cpp 48 static NamedDecl *isAcceptableTemplateName(ASTContext &Context,
49 NamedDecl *Orig,
51 NamedDecl *D = Orig->getUnderlyingDecl();
94 NamedDecl *Orig = filter.next();
95 NamedDecl *Repl = isAcceptableTemplateName(Context, Orig,
422 NamedDecl *FirstQualifierInScope = nullptr;
458 << cast<NamedDecl>(PrevDecl)->getDeclName();
532 NamedDecl *PrevDecl = SemaRef.LookupSingleName(
    [all...]
SemaDecl.cpp 77 if (NamedDecl *ND = candidate.getCorrectionDecl()) {
158 for (NamedDecl *ND : BasePrimaryTemplate->lookup(&II)) {
281 NamedDecl *IIDecl = nullptr;
744 if (NamedDecl *D = ImplicitlyDefineFunction(NameLoc, *Name, S)) {
770 NamedDecl *FirstDecl = Corrected.getCorrectionDecl();
771 NamedDecl *UnderlyingFirstDecl
    [all...]
SemaExprMember.cpp 109 NamedDecl *D = *I;
201 NamedDecl *Rep,
446 NamedDecl *FirstQualifierInScope,
488 NamedDecl *rep,
561 NamedDecl *ND = candidate.getCorrectionDecl();
683 NamedDecl *FirstQualifierInScope,
    [all...]
SemaAttr.cpp 508 NamedDecl *ND = dyn_cast<NamedDecl>(D);
509 if (ND && ND->getExplicitVisibility(NamedDecl::VisibilityForValue))
MultiplexExternalSemaSource.cpp 203 llvm::DenseMap<NamedDecl*, SourceLocation> &Undefined){
246 SmallVectorImpl<NamedDecl*> &Decls) {
SemaTemplateDeduction.cpp 164 if (NamedDecl *NX = dyn_cast<NamedDecl>(X))
166 if (NamedDecl *NY = dyn_cast<NamedDecl>(Y))
553 getDepthAndIndex(NamedDecl *ND) {
571 return getDepthAndIndex(UPP.first.get<NamedDecl *>());
649 NamedDecl *PartiallySubstitutedPack =
    [all...]
SemaDeclObjC.cpp 257 NamedDecl *ND,
392 dyn_cast<NamedDecl>(IMD),
465 NamedDecl *PrevDecl = LookupSingleName(TUScope, ClassName, ClassLoc,
552 if (NamedDecl *IDecl = T->getAs<ObjCObjectType>()->getInterface()) {
614 NamedDecl* IDecl = LookupSingleName(TUScope, SuperName, SuperLoc,
636 NamedDecl *ADecl = LookupSingleName(TUScope, AliasName, AliasLocation,
644 NamedDecl *CDeclU = LookupSingleName(TUScope, ClassName, ClassLocation,
650 if (NamedDecl *IDecl = T->getAs<ObjCObjectType>()->getInterface()) {
    [all...]
TreeTransform.h 426 NamedDecl *TransformFirstQualifierInScope(NamedDecl *D, SourceLocation Loc) {
427 return cast_or_null<NamedDecl>(getDerived().TransformDecl(Loc, D));
439 NamedDecl *FirstQualifierInScope = nullptr);
474 NamedDecl *FirstQualifierInScope = nullptr);
    [all...]
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h 170 const internal::VariadicDynCastAllOfMatcher<Decl, NamedDecl> namedDecl;
    [all...]
  /external/clang/include/clang/AST/
ASTContext.h 343 llvm::DenseMap<UsingDecl *, NamedDecl *> InstantiatedFromUsingDecl;
367 llvm::DenseMap<const NamedDecl *, unsigned> MangleNumbers;
706 NamedDecl *getInstantiatedFromUsingDecl(UsingDecl *Inst);
710 void setInstantiatedFromUsingDecl(UsingDecl *Inst, NamedDecl *Pattern);
743 const NamedDecl *Method,
744 SmallVectorImpl<const NamedDecl *> &Overridden) const;
    [all...]
DeclObjC.h 113 class ObjCMethodDecl : public NamedDecl, public DeclContext {
233 : NamedDecl(ObjCMethod, contextDecl, beginLoc, SelInfo),
508 class ObjCContainerDecl : public NamedDecl, public DeclContext {
521 : NamedDecl(DK, DC, nameLoc, Id), DeclContext(DK), AtStart(atStartLoc) {}
    [all...]
ExternalASTSource.h 29 class NamedDecl;
294 ArrayRef<NamedDecl*> Decls);
ExprCXX.h     [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 546 const NamedDecl *FD;
548 FunctionTextRegion(const NamedDecl *fd, const MemRegion* sreg)
567 const NamedDecl *getDecl() const {
575 static void ProfileRegion(llvm::FoldingSetNodeID& ID, const NamedDecl *FD,
    [all...]
  /external/clang/lib/AST/
CXXInheritance.cpp 29 llvm::SetVector<NamedDecl *, SmallVector<NamedDecl *, 8> > Decls;
34 DeclsFound = new NamedDecl * [NumDeclsFound];
NestedNameSpecifier.cpp 130 return isa<NamespaceDecl>(static_cast<NamedDecl *>(Specifier))? Namespace
147 return dyn_cast<NamespaceDecl>(static_cast<NamedDecl *>(Specifier));
156 return dyn_cast<NamespaceAliasDecl>(static_cast<NamedDecl *>(Specifier));
  /external/clang/include/clang/Serialization/
ASTReader.h 76 class NamedDecl;
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
PlistDiagnostics.cpp 395 if (const NamedDecl *ND = dyn_cast<NamedDecl>(DeclWithIssue)) {
HTMLDiagnostics.cpp 137 if (const NamedDecl *ND = dyn_cast<NamedDecl>(DeclWithIssue)) {
  /external/clang/lib/ASTMatchers/
ASTMatchFinder.cpp 411 const Matcher<NamedDecl> &Base,
587 const Matcher<NamedDecl> Matcher,
648 NamedDecl *Templated =
663 const Matcher<NamedDecl> &Base,
  /frameworks/compile/slang/
slang_rs_context.cpp 141 clang::NamedDecl *const ND = *I;

Completed in 2258 milliseconds

1 2 34 5 6 7