Searched refs:AllowHidden (Results 1 - 6 of 6) sorted by relevance

/external/clang/include/clang/Lex/
H A DMacroInfo.h426 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)
541 getPreviousDefinition(bool AllowHidden) argument
[all...]
/external/clang/include/clang/Sema/
H A DLookup.h142 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; member in class:clang::LookupResult
/external/clang/lib/Lex/
H A DMacroInfo.cpp128 MacroDirective::DefInfo MacroDirective::getDefinition(bool AllowHidden) { argument
133 if (!AllowHidden && MD->isHidden())
/external/clang/include/clang/AST/
H A DDeclObjC.h541 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);
/external/clang/lib/AST/
H A DDeclObjC.cpp69 bool AllowHidden) const {
74 if (Def->isHidden() && !AllowHidden)
881 /*AllowHidden=*/true))
900 /*AllowHidden=*/true))
960 /*AllowHidden=*/true))
973 /*AllowHidden=*/true))
/external/clang/lib/Sema/
H A DSemaLookup.cpp311 AllowHidden = true;

Completed in 143 milliseconds