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

  /external/clang/include/clang/Lex/
MacroInfo.h 426 inline DefInfo getPreviousDefinition(bool AllowHidden = false);
427 const DefInfo getPreviousDefinition(bool AllowHidden = false) const {
428 return const_cast<DefInfo*>(this)->getPreviousDefinition(AllowHidden);
435 DefInfo getDefinition(bool AllowHidden = false);
436 const DefInfo getDefinition(bool AllowHidden = false) const {
437 return const_cast<MacroDirective*>(this)->getDefinition(AllowHidden);
440 bool isDefined(bool AllowHidden = false) const {
441 if (const DefInfo Def = getDefinition(AllowHidden))
446 const MacroInfo *getMacroInfo(bool AllowHidden = false) const {
447 return getDefinition(AllowHidden).getMacroInfo()
    [all...]
  /external/clang/include/clang/Sema/
Lookup.h 142 AllowHidden(Redecl == Sema::ForRedeclaration)
163 AllowHidden(Redecl == Sema::ForRedeclaration)
182 AllowHidden(Other.AllowHidden)
223 AllowHidden = AH;
229 return AllowHidden || LookupKind == Sema::LookupTagName;
498 AllowHidden = (RK == Sema::ForRedeclaration);
662 bool AllowHidden;
  /external/clang/lib/Lex/
MacroInfo.cpp 128 MacroDirective::DefInfo MacroDirective::getDefinition(bool AllowHidden) {
133 if (!AllowHidden && MD->isHidden())
  /external/clang/include/clang/AST/
DeclObjC.h 541 bool AllowHidden = false) const;
543 bool AllowHidden = false) const {
544 return getMethod(Sel, true/*isInstance*/, AllowHidden);
546 ObjCMethodDecl *getClassMethod(Selector Sel, bool AllowHidden = false) const {
547 return getMethod(Sel, false/*isInstance*/, AllowHidden);
    [all...]
  /external/clang/lib/AST/
DeclObjC.cpp 69 bool AllowHidden) const {
74 if (Def->isHidden() && !AllowHidden)
881 /*AllowHidden=*/true))
900 /*AllowHidden=*/true))
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp 311 AllowHidden = true;
    [all...]

Completed in 964 milliseconds