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

1 2

  /external/clang/include/clang/AST/
DeclAccessPair.h 42 NamedDecl *getDecl() const {
53 set(getDecl(), AS);
59 operator NamedDecl*() const { return getDecl(); }
60 NamedDecl *operator->() const { return getDecl(); }
GlobalDecl.h 62 const Decl *getDecl() const { return Value.getPointer(); }
65 assert(isa<CXXConstructorDecl>(getDecl()) && "Decl is not a ctor!");
70 assert(isa<CXXDestructorDecl>(getDecl()) && "Decl is not a dtor!");
UnresolvedSet.h 44 NamedDecl *getDecl() const { return I->getDecl(); }
50 NamedDecl *operator*() const { return getDecl(); }
95 if (I->getDecl() == Old)
TemplateName.h 386 TemplateDecl *getDecl() const { return Template; }
TypeLoc.h 625 return getTypePtr()->getDecl();
636 CXXRecordDecl *getDecl() const {
637 return getTypePtr()->getDecl();
647 UnresolvedUsingTypenameDecl *getDecl() const {
648 return getTypePtr()->getDecl();
661 TagDecl *getDecl() const { return getTypePtr()->getDecl(); }
665 TagDecl *D = getDecl();
676 RecordDecl *getDecl() const { return getTypePtr()->getDecl(); }
    [all...]
DeclTemplate.h 647 static DeclType *getDecl(EntryType *D) {
670 return SETraits::getDecl(&*this->I)->getMostRecentDecl();
828 static DeclType *getDecl(FunctionTemplateSpecializationInfo *I) {
    [all...]
ExprObjC.h 505 ObjCIvarDecl *getDecl() { return D; }
506 const ObjCIvarDecl *getDecl() const { return D; }
    [all...]
Stmt.h 806 LabelDecl *getDecl() const { return TheDecl; }
    [all...]
Expr.h     [all...]
Type.h     [all...]
  /external/clang/lib/Analysis/
PseudoConstantAnalysis.cpp 67 const Decl *PseudoConstantAnalysis::getDecl(const Expr *E) {
69 return DR->getDecl();
94 const Decl *LHSDecl = getDecl(BO->getLHS()->IgnoreParenCasts());
105 const Decl *RHSDecl = getDecl(BO->getRHS()->IgnoreParenCasts());
140 const Decl *D = getDecl(UO->getSubExpr()->IgnoreParenCasts());
183 const Decl *D = getDecl(VD->getInit()->IgnoreParenCasts());
200 if (const VarDecl *VD = dyn_cast<VarDecl>(DR->getDecl())) {
UninitializedValues.cpp 274 const VarDecl *getDecl() const { return vd; }
296 if (const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl()))
325 ClassifyRefs(AnalysisDeclContext &AC) : DC(cast<DeclContext>(AC.getDecl())) {}
341 const VarDecl *VD = dyn_cast<VarDecl>(DRE->getDecl());
355 if (DRE && DRE->getDecl() == VD)
519 return ::isTrackedVar(vd, cast<DeclContext>(ac.getDecl()));
523 return ::findVar(ex, cast<DeclContext>(ac.getDecl()));
734 reportUse(dr, cast<VarDecl>(dr->getDecl()));
737 vals[cast<VarDecl>(dr->getDecl())] = Initialized;
740 handler.handleSelfInit(cast<VarDecl>(dr->getDecl()));
    [all...]
  /external/clang/include/clang/Analysis/
CallGraph.h 163 Decl *getDecl() const { return FD; }
AnalysisContext.h 101 const Decl *getDecl() const { return D; }
243 const Decl *getDecl() const { return getAnalysisDeclContext()->getDecl(); }
ProgramPoint.h 533 const Decl *getDecl() const { return static_cast<const Decl *>(getData2()); }
  /external/clang/lib/StaticAnalyzer/Checkers/
MallocOverflowSecurityChecker.cpp 144 static const Decl *getDecl(const DeclRefExpr *DR) { return DR->getDecl(); }
145 static const Decl *getDecl(const MemberExpr *ME) {
154 return getDecl(CheckDR) == getDecl(DR) && Pred(Check);
  /external/clang/include/clang/Analysis/Analyses/
ThreadSafetyCommon.h 141 if (!dyn_cast_or_null<NamedDecl>(AC.getDecl()))
156 V.enterCFG(CFGraph, getDecl(), &CFGraph->getEntry());
238 const NamedDecl *getDecl() const {
239 return dyn_cast<NamedDecl>(ACtx->getDecl());
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
CallEvent.h 117 const Decl *getDecl() { return D; }
203 virtual const Decl *getDecl() const {
236 const Decl *D = getDecl();
334 const NamedDecl *ND = dyn_cast_or_null<NamedDecl>(getDecl());
433 const FunctionDecl *getDecl() const override {
434 return cast<FunctionDecl>(CallEvent::getDecl());
438 const FunctionDecl *FD = getDecl();
446 return RuntimeDefinition(AD->getDecl());
486 const FunctionDecl *getDecl() const override;
534 const BlockDecl *getDecl() const override
    [all...]
MemRegion.h 563 const NamedDecl *getDecl() const {
602 const BlockDecl *getDecl() const {
644 const BlockDecl *getDecl() const { return BC->getDecl(); }
849 const Decl *getDecl() const { return D; }
873 const VarDecl *getDecl() const { return cast<VarDecl>(D); }
879 return getDecl()->getType();
930 const FieldDecl *getDecl() const { return cast<FieldDecl>(D); }
934 return getDecl()->getType();
966 const ObjCIvarDecl *getDecl() const
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CallEvent.cpp 67 const RecordDecl *RD = RT->getDecl();
93 if (!getDecl())
122 const FunctionDecl *FD = dyn_cast_or_null<FunctionDecl>(getDecl());
161 if (const Decl *callee = getDecl())
204 const Decl *D = getDecl();
254 if (const Decl *D = getDecl()) {
340 const FunctionDecl *D = getDecl();
349 const FunctionDecl *D = cast<FunctionDecl>(CalleeCtx->getDecl());
359 const FunctionDecl *D = getDecl();
412 const FunctionDecl *SimpleFunctionCall::getDecl() const
    [all...]
MemRegion.cpp 195 if (getDecl()->isBitField())
228 const ObjCIvarDecl *ObjCIvarRegion::getDecl() const {
233 return getDecl()->getType();
237 return QualType(getDecl()->getTypeForDecl(), 0);
329 VarRegion::ProfileRegion(ID, getDecl(), superRegion);
416 ProfileRegion(ID, getDecl(), isVirtual(), superRegion);
457 os << "code{" << getDecl()->getDeclName().getAsString() << '}';
486 os << "base{" << superRegion << ',' << getDecl()->getName() << '}';
499 os << superRegion << "->" << *getDecl();
503 os << "ivar{" << superRegion << ',' << *getDecl() << '}';
    [all...]
  /external/clang/include/clang/Serialization/
ASTWriter.h 162 Decl *getDecl() const {
336 const Decl *getDecl() const { return Dcl; }
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 458 SemaRef.Diag(Entity.getDecl()->getLocation(),
470 SemaRef.Diag(Entity.getDecl()->getLocation(),
472 << /*field*/1 << Entity.getDecl();
536 if (!RType->getDecl()->isUnion())
623 const RecordDecl *RDecl = RType->getDecl();
    [all...]
  /external/clang/lib/AST/
ExprConstant.cpp     [all...]
  /prebuilts/tools/common/m2/repository/com/sun/xsom/xsom/20140925/
xsom-20140925.jar 

Completed in 1159 milliseconds

1 2