HomeSort by relevance Sort by last modified time
    Searched refs:HasAttrs (Results 1 - 3 of 3) sorted by null

  /external/clang/lib/AST/
DeclBase.cpp 270 if (!hasAttrs())
573 assert(!HasAttrs && "Decl already contains attrs.");
576 assert(AttrBlank.empty() && "HasAttrs was wrong?");
579 HasAttrs = true;
583 if (!HasAttrs) return;
585 HasAttrs = false;
590 assert(HasAttrs && "No attrs to get!");
595 bool HasLHSAttr = this->HasAttrs;
596 bool HasRHSAttr = RHS->HasAttrs;
616 this->HasAttrs = false
    [all...]
ASTDumper.cpp 669 bool HasAttrs = D->attr_begin() != D->attr_end();
675 setMoreChildren(HasAttrs || HasComment || HasDeclContext);
    [all...]
  /external/clang/include/clang/AST/
DeclBase.h 250 /// HasAttrs - This indicates whether the decl has attributes or not.
251 unsigned HasAttrs : 1;
309 HasAttrs(false), Implicit(false), Used(false), Referenced(false),
319 HasAttrs(false), Implicit(false), Used(false), Referenced(false),
405 bool hasAttrs() const { return HasAttrs; }
417 if (hasAttrs())
428 return hasAttrs() ? getAttrs().begin() : 0;
431 return hasAttrs() ? getAttrs().end() : 0;
436 if (!HasAttrs) return
    [all...]

Completed in 41 milliseconds