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

  /external/clang/include/clang/AST/
DeclBase.h 245 /// HasAttrs - This indicates whether the decl has attributes or not.
246 unsigned HasAttrs : 1;
317 HasAttrs(false), Implicit(false), Used(false), Referenced(false),
327 HasAttrs(false), Implicit(false), Used(false), Referenced(false),
420 bool hasAttrs() const { return HasAttrs; }
431 if (hasAttrs())
445 return hasAttrs() ? getAttrs().begin() : nullptr;
448 return hasAttrs() ? getAttrs().end() : nullptr;
453 if (!HasAttrs) return
    [all...]
  /external/clang/lib/AST/
DeclBase.cpp 282 if (!hasAttrs())
601 assert(!HasAttrs && "Decl already contains attrs.");
604 assert(AttrBlank.empty() && "HasAttrs was wrong?");
607 HasAttrs = true;
611 if (!HasAttrs) return;
613 HasAttrs = false;
618 assert(HasAttrs && "No attrs to get!");
    [all...]

Completed in 447 milliseconds