Searched refs:IsInGlobalNamespace (Results 1 – 7 of 7) sorted by relevance
/external/llvm-project/clang-tools-extra/clang-tidy/bugprone/ |
D | ReservedIdentifierCheck.cpp | 89 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/ |
D | Representation.cpp | 173 if (!IsInGlobalNamespace) in merge() 174 IsInGlobalNamespace = Other.IsInGlobalNamespace; in merge()
|
D | Representation.h | 121 : Name(Name), Path(Path), IsInGlobalNamespace(Path.empty()) {} in Reference() 128 IsInGlobalNamespace(Path.empty()) {} in Reference() 154 bool IsInGlobalNamespace = false; member
|
D | YAMLGenerator.cpp | 173 IO.mapOptional("IsInGlobalNamespace", Ref.IsInGlobalNamespace, false); in mapping()
|
D | BitcodeWriter.cpp | 409 emitRecord(R.IsInGlobalNamespace, REFERENCE_IS_IN_GLOBAL_NAMESPACE); in emitBlock()
|
D | BitcodeReader.cpp | 319 return decodeRecord(R, I->IsInGlobalNamespace, Blob); in parseRecord()
|
D | HTMLGenerator.cpp | 311 if (Type.Path.empty() && !Type.IsInGlobalNamespace) { in genReference()
|