reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

Declarations

tools/lldb/include/lldb/Utility/ArchSpec.h
  475   bool IsExactMatch(const ArchSpec &rhs) const;

References

tools/lldb/include/lldb/Core/ModuleSpec.h
  275         if (!GetArchitecture().IsExactMatch(
tools/lldb/source/Commands/CommandObjectProcess.cpp
  472     } else if (!old_arch_spec.IsExactMatch(target->GetArchitecture())) {
tools/lldb/source/Plugins/ObjectContainer/Universal-Mach-O/ObjectContainerUniversalMachO.cpp
  181           arch.IsExactMatch(curr_arch))
tools/lldb/source/Plugins/Platform/MacOSX/PlatformDarwin.cpp
  512       if (platform_arch.IsExactMatch(platform_arch64)) {
tools/lldb/source/Plugins/Platform/Windows/PlatformWindows.cpp
   51         [spec](const ArchSpec &rhs) { return spec.IsExactMatch(rhs); });
tools/lldb/source/Target/Platform.cpp
 1195         if (arch.IsExactMatch(platform_arch)) {
tools/lldb/source/Target/Process.cpp
 2918           !GetTarget().GetArchitecture().IsExactMatch(process_arch)) {
tools/lldb/unittests/Utility/ArchSpecTest.cpp
  244     ASSERT_TRUE(A.IsExactMatch(B));
  252     ASSERT_TRUE(A.IsExactMatch(B));
  258     ASSERT_FALSE(A.IsExactMatch(B));
  264     ASSERT_FALSE(A.IsExactMatch(B));
  270     ASSERT_FALSE(A.IsExactMatch(B));
  276     ASSERT_FALSE(A.IsExactMatch(B));
  284     ASSERT_FALSE(A.IsExactMatch(B));
  292     ASSERT_TRUE(A.IsExactMatch(B));