HomeSort by relevance Sort by last modified time
    Searched defs:getDecl (Results 1 - 19 of 19) 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 410 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 198 ObjCIvarDecl *getDecl() { return D; }
199 const ObjCIvarDecl *getDecl() const { return D; }
    [all...]
TypeLoc.h 531 return getTypePtr()->getDecl();
542 CXXRecordDecl *getDecl() const {
543 return getTypePtr()->getDecl();
553 UnresolvedUsingTypenameDecl *getDecl() const {
554 return getTypePtr()->getDecl();
567 TagDecl *getDecl() const { return getTypePtr()->getDecl(); }
571 return getDecl()->isCompleteDefinition() &&
572 (getNameLoc().isInvalid() || getNameLoc() == getDecl()->getLocation());
581 RecordDecl *getDecl() const { return getTypePtr()->getDecl();
    [all...]
Stmt.h 685 LabelDecl *getDecl() const { return TheDecl; }
    [all...]
Expr.h 822 ValueDecl *getDecl() { return D; }
823 const ValueDecl *getDecl() const { return D; }
827 return DeclarationNameInfo(getDecl()->getDeclName(), Loc, DNLoc);
    [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 334 const VarDecl *getDecl() const { return vd; }
378 return ::isTrackedVar(vd, cast<DeclContext>(ac.getDecl()));
408 if (VarDecl *vd = dyn_cast<VarDecl>(dr->getDecl()))
426 vd = res.getDecl();
453 if (const VarDecl *vd = dyn_cast<VarDecl>(dr->getDecl()))
480 if (DR->getDecl() == vd) {
508 if (const VarDecl *vd = res.getDecl()) {
527 if (const VarDecl *vd = res.getDecl()) {
547 if (res.getDecl()) {
589 const 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 102 const Decl *getDecl() const { return D; }
230 const Decl *getDecl() const { return getAnalysisContext()->getDecl(); }
  /external/clang/include/clang/Serialization/
ASTWriter.h 114 Decl *getDecl() const {
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
MemRegion.h 424 const FunctionDecl *getDecl() const {
463 const BlockDecl *getDecl() const {
501 const BlockDecl *getDecl() const { return BC->getDecl(); }
658 const Decl *getDecl() const { return D; }
684 const VarDecl *getDecl() const { return cast<VarDecl>(D); }
690 return getDecl()->getType();
740 const FieldDecl *getDecl() const { return cast<FieldDecl>(D); }
744 return getDecl()->getType();
772 const ObjCIvarDecl *getDecl() const { return cast<ObjCIvarDecl>(D);
    [all...]
  /external/clang/lib/AST/
Type.cpp 51 ND = ty->getAs<RecordType>()->getDecl();
53 ND = ty->getAs<EnumType>()->getDecl();
55 ND = ty->getAs<TypedefType>()->getDecl();
336 return RT->getDecl()->isClass();
341 return RT->getDecl()->isStruct();
346 return RT->getDecl()->isStruct() || RT->getDecl()->isClass();
357 return RT->getDecl()->isUnion();
394 if (RT->getDecl()->isStruct())
400 if (!RT->getDecl()->isStruct()
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 360 if (RType->getDecl()->isUnion() &&
367 Field = RType->getDecl()->field_begin(),
368 FieldEnd = RType->getDecl()->field_end();
383 if (RType->getDecl()->isUnion())
503 RecordDecl *structDecl = DeclType->getAs<RecordType>()->getDecl();
687 RecordDecl *RD = DeclType->getAs<RecordType>()->getDecl();
    [all...]

Completed in 2345 milliseconds