Home
last modified time | relevance | path

Searched refs:IsInGlobalNamespace (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/
DReservedIdentifierCheck.cpp89 bool IsInGlobalNamespace) { in startsWithUnderscoreInGlobalNamespace() argument
90 return IsInGlobalNamespace && Name.size() >= 1 && Name[0] == '_'; in startsWithUnderscoreInGlobalNamespace()
94 getUnderscoreGlobalNamespaceFixup(StringRef Name, bool IsInGlobalNamespace) { in getUnderscoreGlobalNamespaceFixup() argument
95 if (startsWithUnderscoreInGlobalNamespace(Name, IsInGlobalNamespace)) in getUnderscoreGlobalNamespaceFixup()
110 getFailureInfoImpl(StringRef Name, bool IsInGlobalNamespace, in getFailureInfoImpl() argument
142 IsInGlobalNamespace)) in getFailureInfoImpl()
149 startsWithUnderscoreInGlobalNamespace(Name, IsInGlobalNamespace))) in getFailureInfoImpl()
/external/llvm-project/clang-tools-extra/clang-doc/
DRepresentation.cpp173 if (!IsInGlobalNamespace) in merge()
174 IsInGlobalNamespace = Other.IsInGlobalNamespace; in merge()
DRepresentation.h121 : Name(Name), Path(Path), IsInGlobalNamespace(Path.empty()) {} in Reference()
128 IsInGlobalNamespace(Path.empty()) {} in Reference()
154 bool IsInGlobalNamespace = false; member
DYAMLGenerator.cpp173 IO.mapOptional("IsInGlobalNamespace", Ref.IsInGlobalNamespace, false); in mapping()
DBitcodeWriter.cpp409 emitRecord(R.IsInGlobalNamespace, REFERENCE_IS_IN_GLOBAL_NAMESPACE); in emitBlock()
DBitcodeReader.cpp319 return decodeRecord(R, I->IsInGlobalNamespace, Blob); in parseRecord()
DHTMLGenerator.cpp311 if (Type.Path.empty() && !Type.IsInGlobalNamespace) { in genReference()