Home
last modified time | relevance | path

Searched refs:IsExactMatch (Results 1 – 14 of 14) sorted by relevance

/llvm-project-15.0.7/lldb/unittests/Utility/
H A DArchSpecTest.cpp280 ASSERT_TRUE(A.IsExactMatch(B)); in TEST()
288 ASSERT_TRUE(A.IsExactMatch(B)); in TEST()
294 ASSERT_FALSE(A.IsExactMatch(B)); in TEST()
300 ASSERT_FALSE(A.IsExactMatch(B)); in TEST()
306 ASSERT_FALSE(A.IsExactMatch(B)); in TEST()
308 ASSERT_FALSE(B.IsExactMatch(A)); in TEST()
314 ASSERT_FALSE(A.IsExactMatch(B)); in TEST()
355 ASSERT_TRUE(A.IsExactMatch(B)); in TEST()
362 ASSERT_TRUE(A.IsExactMatch(B)); in TEST()
382 ASSERT_TRUE(A.IsExactMatch(B)); in TEST()
[all …]
/llvm-project-15.0.7/clang/lib/ASTMatchers/Dynamic/
H A DVariantValue.cpp59 bool &IsExactMatch) const { in canConstructFrom()
60 IsExactMatch = Matcher.getSupportedKind().isSame(NodeKind); in canConstructFrom()
149 bool IsExactMatch; in getTypedMatcher() local
150 if (Ops.canConstructFrom(Matchers[i], IsExactMatch)) { in getTypedMatcher()
153 assert(!IsExactMatch && "We should not have two exact matches."); in getTypedMatcher()
158 FoundIsExact = IsExactMatch; in getTypedMatcher()
/llvm-project-15.0.7/lldb/unittests/Platform/
H A DPlatformMacOSXTest.cpp28 return arch.IsExactMatch(other); in containsArch()
/llvm-project-15.0.7/clang/include/clang/ASTMatchers/Dynamic/
H A DVariantValue.h112 bool &IsExactMatch) const;
/llvm-project-15.0.7/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/
H A DObjectContainerUniversalMachO.cpp175 arch.IsExactMatch(curr_arch)) in GetObjectFile()
/llvm-project-15.0.7/lldb/include/lldb/Utility/
H A DArchSpec.h496 bool IsExactMatch(const ArchSpec &rhs) const;
/llvm-project-15.0.7/lldb/include/lldb/Core/
H A DModuleSpec.h249 if (!GetArchitecture().IsExactMatch( in Matches()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/Windows/
H A DPlatformWindows.cpp121 return spec.IsExactMatch(rhs); in PlatformWindows()
/llvm-project-15.0.7/llvm/lib/IR/
H A DFunction.cpp787 bool IsExactMatch = Name.size() == MatchSize; in lookupIntrinsicID() local
788 return IsExactMatch || Intrinsic::isOverloaded(ID) ? ID in lookupIntrinsicID()
/llvm-project-15.0.7/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp493 if (host_arch.IsExactMatch(host_arch64)) in x86GetSupportedArchitectures()
/llvm-project-15.0.7/lldb/source/Commands/
H A DCommandObjectProcess.cpp465 } else if (!old_arch_spec.IsExactMatch(target->GetArchitecture())) { in DoExecute()
/llvm-project-15.0.7/lldb/source/Utility/
H A DArchSpec.cpp931 bool ArchSpec::IsExactMatch(const ArchSpec &rhs) const { in IsExactMatch() function in ArchSpec
/llvm-project-15.0.7/lldb/source/Target/
H A DPlatform.cpp1163 auto match = exact_arch_match ? &ArchSpec::IsExactMatch in IsCompatibleArchitecture()
H A DProcess.cpp2929 !target_arch.IsExactMatch(process_arch)) { in CompleteAttach()