Home
last modified time | relevance | path

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

/external/protobuf/csharp/src/Google.Protobuf/Compatibility/
DTypeExtensions.cs69 …if (ret != null && ((ret.CanRead && ret.GetMethod.IsPublic) || (ret.CanWrite && ret.SetMethod.IsPu… in GetProperty()
96 if (ret != null && ret.IsPublic) in GetMethod()
DPropertyInfoExtensions.cs55 return method != null && method.IsPublic ? method : null; in GetGetMethod()
69 return method != null && method.IsPublic ? method : null; in GetSetMethod()
/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/llvm-project/clang/include/clang/Lex/
DMacroInfo.h314 unsigned IsPublic : 1; variable
317 : Loc(Loc), MDKind(K), IsFromPCH(false), IsPublic(true) {} in MacroDirective()
341 bool IsPublic = true; variable
347 : DefDirective(DefDirective), UndefLoc(UndefLoc), IsPublic(isPublic) {} in DefInfo()
362 bool isPublic() const { return IsPublic; } in isPublic()
448 IsPublic = Public; in VisibilityMacroDirective()
453 bool isPublic() const { return IsPublic; } in isPublic()
/external/llvm-project/clang/include/clang/AST/
DOSLog.h65 IsPublic = 0x2, enumerator
84 assert(((Flags == 0) || (Flags == IsPrivate) || (Flags == IsPublic) || in TheKind()
DFormatString.h509 OptionalFlag IsPublic; // '{public}' variable
521 HasObjCTechnicalTerm("tt"), IsPrivate("private"), IsPublic("public"), in PrintfSpecifier()
552 void setIsPublic(const char *position) { IsPublic.setPosition(position); } in setIsPublic()
594 const OptionalFlag &isPublic() const { return IsPublic; } in isPublic()
/external/clang/lib/Lex/
DMacroInfo.cpp227 Out << (IsPublic ? " public" : " private"); in dump()
/external/llvm-project/clang/lib/Lex/
DMacroInfo.cpp230 Out << (IsPublic ? " public" : " private"); in dump()
/external/llvm-project/clang/lib/AST/
DOSLog.cpp129 ArgsData.back().Flags |= OSLogBufferItem::IsPublic; in HandlePrintfSpecifier()
DPrintfFormatString.cpp156 PrivacyFlags = clang::analyze_os_log::OSLogBufferItem::IsPublic; in ParsePrintfSpecifier()
180 case clang::analyze_os_log::OSLogBufferItem::IsPublic: in ParsePrintfSpecifier()