HomeSort by relevance Sort by last modified time
    Searched defs:getDecl (Results 1 - 18 of 18) sorted by null

  /external/clang/include/clang/AST/
DeclAccessPair.h 41 NamedDecl *getDecl() const {
52 set(getDecl(), AS);
59 operator NamedDecl*() const { return getDecl(); }
60 NamedDecl *operator->() const { return getDecl(); }
GlobalDecl.h 59 const Decl *getDecl() const { return Value.getPointer(); }
62 assert(isa<CXXConstructorDecl>(getDecl()) && "Decl is not a ctor!");
67 assert(isa<CXXDestructorDecl>(getDecl()) && "Decl is not a dtor!");
TemplateName.h 413 TemplateDecl *getDecl() const { return Template; }
UnresolvedSet.h 50 NamedDecl *getDecl() const { return ir->getDecl(); }
55 NamedDecl *operator*() const { return getDecl(); }
124 if (I->getDecl() == Old)
ExprObjC.h 197 ObjCIvarDecl *getDecl() { return D; }
198 const ObjCIvarDecl *getDecl() const { return D; }
    [all...]
TypeLoc.h 531 return getTypePtr()->getDecl();
549 UnresolvedUsingTypenameDecl *getDecl() const {
550 return getTypePtr()->getDecl();
563 TagDecl *getDecl() const { return getTypePtr()->getDecl(); }
571 RecordDecl *getDecl() const { return getTypePtr()->getDecl(); }
579 EnumDecl *getDecl() const { return getTypePtr()->getDecl(); }
588 TemplateTypeParmDecl *getDecl() const { return getTypePtr()->getDecl();
    [all...]
Stmt.h 674 LabelDecl *getDecl() const { return TheDecl; }
    [all...]
Expr.h 833 ValueDecl *getDecl() { return D; }
834 const ValueDecl *getDecl() const { return D; }
    [all...]
Type.h     [all...]
  /external/clang/lib/Analysis/
PseudoConstantAnalysis.cpp 68 const Decl *PseudoConstantAnalysis::getDecl(const Expr *E) {
70 return DR->getDecl();
72 return BDR->getDecl();
97 const Decl *LHSDecl = getDecl(BO->getLHS()->IgnoreParenCasts());
108 const Decl *RHSDecl = getDecl(BO->getRHS()->IgnoreParenCasts());
143 const Decl *D = getDecl(UO->getSubExpr()->IgnoreParenCasts());
187 const Decl *D = getDecl(VD->getInit()->IgnoreParenCasts());
204 if (const VarDecl *VD = dyn_cast<VarDecl>(BDR->getDecl())) {
215 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
UninitializedValues.cpp 336 const VarDecl *getDecl() const { return vd; }
377 return ::isTrackedVar(vd, cast<DeclContext>(ac.getDecl()));
393 if (VarDecl *vd = dyn_cast<VarDecl>(dr->getDecl()))
412 vd = res.getDecl();
443 if (const VarDecl *vd = dyn_cast<VarDecl>(dr->getDecl()))
467 if (DR->getDecl() == vd) {
489 if (const VarDecl* vd = res.getDecl()) {
507 if (const VarDecl *vd = res.getDecl()) {
530 if (const VarDecl *vd = res.getDecl()) {
572 VarDecl *VD = cast<VarDecl>(DR->getDecl());
    [all...]
  /external/clang/lib/Index/
CallGraph.cpp 106 Decl *CallGraph::getDecl(CallGraphNode *Node) {
110 return Node->getDecl(*Ctx);
Entity.cpp 167 Decl *EntityImpl::getDecl(ASTContext &AST) {
170 : cast<DeclContext>(Parent.getDecl(AST));
228 Decl *Entity::getDecl(ASTContext &AST) const {
236 return Val.get<EntityImpl *>()->getDecl(AST);
  /external/clang/include/clang/Index/
CallGraph.h 52 Decl *getDecl(ASTContext &Ctx) const { return F.getDecl(Ctx); }
95 Decl *getDecl(CallGraphNode *Node);
  /external/clang/include/clang/Analysis/
AnalysisContext.h 80 const Decl *getDecl() const { return D; }
195 const Decl *getDecl() const { return getAnalysisContext()->getDecl(); }
  /external/clang/include/clang/Serialization/
ASTWriter.h 99 Decl *getDecl() const {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 414 const FunctionDecl *getDecl() const {
453 const BlockDecl *getDecl() const {
491 const BlockDecl *getDecl() const { return BC->getDecl(); }
648 const Decl* getDecl() const { return D; }
674 const VarDecl *getDecl() const { return cast<VarDecl>(D); }
680 return getDecl()->getType();
730 const FieldDecl* getDecl() const { return cast<FieldDecl>(D); }
734 return getDecl()->getType();
762 const ObjCIvarDecl* getDecl() const { return cast<ObjCIvarDecl>(D);
    [all...]
  /external/clang/lib/AST/
Type.cpp 316 return RT->getDecl()->isClass();
321 return RT->getDecl()->isStruct();
326 return RT->getDecl()->isStruct() || RT->getDecl()->isClass();
337 return RT->getDecl()->isUnion();
374 if (RT->getDecl()->isStruct())
380 if (!RT->getDecl()->isStruct())
393 if (RT->getDecl()->isUnion())
399 if (!RT->getDecl()->isUnion())
469 return dyn_cast<CXXRecordDecl>(RT->getDecl());
    [all...]

Completed in 665 milliseconds