Home
last modified time | relevance | path

Searched refs:IsPublic (Results 1 – 4 of 4) sorted by relevance

/external/clang/include/clang/Lex/
DMacroInfo.h327 unsigned IsPublic : 1; variable
331 IsPublic(true) {} in MacroDirective()
355 bool IsPublic; variable
358 DefInfo() : DefDirective(nullptr), IsPublic(true) {} in DefInfo()
362 : DefDirective(DefDirective), UndefLoc(UndefLoc), IsPublic(isPublic) {} in DefInfo()
376 bool isPublic() const { return IsPublic; } in isPublic()
458 IsPublic = Public; in VisibilityMacroDirective()
463 bool isPublic() const { return IsPublic; } in isPublic()
/external/protobuf/csharp/src/Google.Protobuf/Compatibility/
DTypeExtensions.cs77 …if (ret != null && ((ret.CanRead && ret.GetMethod.IsPublic) || (ret.CanWrite && ret.SetMethod.IsPu… in GetProperty()
104 if (ret != null && ret.IsPublic) in GetMethod()
DPropertyInfoExtensions.cs51 return method != null && method.IsPublic ? method : null; in GetGetMethod()
61 return method != null && method.IsPublic ? method : null; in GetSetMethod()
/external/clang/lib/Lex/
DMacroInfo.cpp227 Out << (IsPublic ? " public" : " private"); in dump()