HomeSort by: relevance | last modified time | path
    Searched refs:isPublic (Results 1 - 17 of 17) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/Lex/
MacroInfo.cpp 181 Optional<bool> isPublic;
185 !isPublic.hasValue() || isPublic.getValue());
193 if (!isPublic.hasValue())
194 isPublic = VisMD->isPublic();
198 !isPublic.hasValue() || isPublic.getValue());
230 Out << (IsPublic ? " public" : " private");
PPLexerChange.cpp 788 if (VisMD->isPublic())
PPDirectives.cpp 76 bool isPublic) {
77 return new (BP) VisibilityMacroDirective(Loc, isPublic);
1485 MacroNameTok.getLocation(), /*isPublic=*/true));
1512 MacroNameTok.getLocation(), /*isPublic=*/false));
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
MacroInfo.h 314 unsigned IsPublic : 1;
317 : Loc(Loc), MDKind(K), IsFromPCH(false), IsPublic(true) {}
341 bool IsPublic = true;
346 bool isPublic)
347 : DefDirective(DefDirective), UndefLoc(UndefLoc), IsPublic(isPublic) {}
362 bool isPublic() const { return IsPublic; }
448 IsPublic = Public;
453 bool isPublic() const { return IsPublic;
    [all...]
Preprocessor.h 2075 bool isPublic);
  /src/external/bsd/libc++/dist/libcxxrt/src/
typeinfo.h 217 bool isPublic() const { return flags() & __public_mask; }
  /src/external/gpl2/gettext/dist/gettext-runtime/intl-java/gnu/gettext/
GettextResource.java 116 && Modifier.isPublic(handleGetObjectMethod.getModifiers())
  /src/external/apache2/llvm/dist/clang/lib/AST/
OSLog.cpp 128 else if (FS.isPublic())
129 ArgsData.back().Flags |= OSLogBufferItem::IsPublic;
  /src/external/apache2/llvm/dist/clang/lib/Tooling/DumpTool/
ASTSrcLocProcessor.cpp 147 return cxxMethodDecl(isPublic(), parameterCountIs(0), isConst(),
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
FormatString.h 509 OptionalFlag IsPublic; // '{public}'
521 HasObjCTechnicalTerm("tt"), IsPrivate("private"), IsPublic("public"),
552 void setIsPublic(const char *position) { IsPublic.setPosition(position); }
594 const OptionalFlag &isPublic() const { return IsPublic; }
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfUnit.cpp 1280 else if (SP->isPublic())
1628 else if (DT->isPublic())
1678 else if (DT->isPublic())
  /src/external/apache2/llvm/dist/clang/lib/ASTMatchers/Dynamic/
Registry.cpp 435 REGISTER_MATCHER(isPublic);
  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
DebugInfoMetadata.h 727 bool isPublic() const {
1958 bool isPublic() const {
  /src/external/apache2/llvm/dist/clang/include/clang/ASTMatchers/
ASTMatchers.h 616 /// public: int a; // fieldDecl(isPublic()) matches 'a'
627 AST_POLYMORPHIC_MATCHER(isPublic,
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaChecking.cpp 8561 if (FS.isPublic().isSet()) {
8564 getLocationOfByte(FS.isPublic().getPosition()),
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 2229 Record.push_back(VisMD->isPublic());
ASTReader.cpp 2205 bool isPublic = Record[Idx++];
2206 MD = PP.AllocateVisibilityMacroDirective(Loc, isPublic);

Completed in 113 milliseconds