| /freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/ |
| H A D | LanaiCondCode.h | 75 .EndsWith("f", LPCC::ICC_F) in suffixToLanaiCondCode() 76 .EndsWith("hi", LPCC::ICC_HI) in suffixToLanaiCondCode() 77 .EndsWith("ugt", LPCC::ICC_UGT) in suffixToLanaiCondCode() 78 .EndsWith("ls", LPCC::ICC_LS) in suffixToLanaiCondCode() 79 .EndsWith("ule", LPCC::ICC_ULE) in suffixToLanaiCondCode() 80 .EndsWith("cc", LPCC::ICC_CC) in suffixToLanaiCondCode() 81 .EndsWith("ult", LPCC::ICC_ULT) in suffixToLanaiCondCode() 82 .EndsWith("cs", LPCC::ICC_CS) in suffixToLanaiCondCode() 83 .EndsWith("uge", LPCC::ICC_UGE) in suffixToLanaiCondCode() 84 .EndsWith("ne", LPCC::ICC_NE) in suffixToLanaiCondCode() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/TargetParser/ |
| H A D | Triple.cpp | 747 .EndsWith("xcoff", Triple::XCOFF) in parseFormat() 748 .EndsWith("coff", Triple::COFF) in parseFormat() 749 .EndsWith("elf", Triple::ELF) in parseFormat() 750 .EndsWith("goff", Triple::GOFF) in parseFormat() 751 .EndsWith("macho", Triple::MachO) in parseFormat() 752 .EndsWith("wasm", Triple::Wasm) in parseFormat() 753 .EndsWith("spirv", Triple::SPIRV) in parseFormat() 773 .EndsWith("v1.0", Triple::SPIRVSubArch_v10) in parseSubArch() 774 .EndsWith("v1.1", Triple::SPIRVSubArch_v11) in parseSubArch() 775 .EndsWith("v1.2", Triple::SPIRVSubArch_v12) in parseSubArch() [all …]
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Utility/ |
| H A D | NameMatches.h | 20 EndsWith, enumerator
|
| /freebsd/contrib/llvm-project/lldb/source/Utility/ |
| H A D | NameMatches.cpp | 26 case NameMatch::EndsWith: in NameMatches()
|
| /freebsd/contrib/googletest/googlemock/test/ |
| H A D | gmock-matchers-comparisons_test.cc | 1840 const Matcher<const char*> m1 = EndsWith(""); in TEST() 1845 const Matcher<const std::string&> m2 = EndsWith(std::string("Hi")); in TEST() 1854 EndsWith(internal::StringView("")); in TEST() 1863 Matcher<const std::string> m = EndsWith("Hi"); in TEST() 1870 const Matcher<const char*> m1 = WhenBase64Unescaped(EndsWith("!")); in TEST() 1876 const Matcher<const std::string&> m2 = WhenBase64Unescaped(EndsWith("!")); in TEST() 1884 WhenBase64Unescaped(EndsWith("!")); in TEST() 1893 const Matcher<const char*> m = WhenBase64Unescaped(EndsWith("!")); in TEST() 2146 const Matcher<const wchar_t*> m1 = EndsWith(L""); in TEST() 2151 const Matcher<const ::std::wstring&> m2 = EndsWith(::std::wstring(L"Hi")); in TEST() [all …]
|
| H A D | gmock_link_test.h | 141 using testing::EndsWith; 575 ON_CALL(mock, VoidFromString(EndsWith("c"))).WillByDefault(Return()); in TEST()
|
| H A D | gmock-matchers-arithmetic_test.cc | 724 EXPECT_THAT(Describe(m), EndsWith("and (isn't equal to 11)")); in TEST() 858 EXPECT_THAT(Describe(m), EndsWith("or (is equal to 11)")); in TEST()
|
| H A D | gmock-matchers-containers_test.cc | 112 ASSERT_THAT("Foo", EndsWith("oo")); in TEST() 160 Matcher<const std::string&> ends_with_ok = EndsWith("ok"); in TEST()
|
| /freebsd/contrib/googletest/googlemock/include/gmock/ |
| H A D | gmock-function-mocker.h | 79 constexpr bool EndsWith(const char (&suffix)[N], const char (&str)[M]) { in EndsWith() function 95 internal::EndsWith(")", spec)) || in ValidateSpec() 99 internal::EndsWith(")", spec)); in ValidateSpec()
|
| H A D | gmock-matchers.h | 4789 PolymorphicMatcher<internal::EndsWithMatcher<std::string>> EndsWith( 4842 inline PolymorphicMatcher<internal::EndsWithMatcher<std::wstring>> EndsWith(
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | StringSwitch.h | 76 StringSwitch& EndsWith(StringLiteral S, T Value) { in EndsWith() function
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Lanai/AsmParser/ |
| H A D | LanaiAsmParser.cpp | 836 return StringSwitch<int>(T).EndsWith(".h", 2).EndsWith(".b", 1).Default(4); in SizeForSuffix()
|
| /freebsd/contrib/llvm-project/lldb/source/Commands/ |
| H A D | CommandObjectPlatform.cpp | 1271 case NameMatch::EndsWith: in DoExecute() 1397 match_info.SetNameMatchType(NameMatch::EndsWith); in SetOptionValue()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/Unix/ |
| H A D | Process.inc | 376 .EndsWith("color", true)
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVBuiltins.cpp | 1288 .EndsWith("device", SPIRV::Scope::Scope::Device) in generateKernelClockInst() 1289 .EndsWith("work_group", SPIRV::Scope::Scope::Workgroup) in generateKernelClockInst() 1290 .EndsWith("sub_group", SPIRV::Scope::Scope::Subgroup); in generateKernelClockInst()
|
| /freebsd/contrib/googletest/docs/ |
| H A D | gmock_faq.md | 112 EXPECT_CALL(log, Log(_, Not(EndsWith("/my_file.cc")), _))
|
| /freebsd/contrib/llvm-project/lldb/source/Plugins/Process/gdb-remote/ |
| H A D | GDBRemoteCommunicationServerCommon.cpp | 353 .Case("ends_with", NameMatch::EndsWith) in Handle_qfProcessInfo()
|
| H A D | GDBRemoteCommunicationClient.cpp | 2317 case NameMatch::EndsWith: in FindProcesses()
|
| /freebsd/contrib/googletest/docs/reference/ |
| H A D | matchers.md | 98 | `EndsWith(suffix)` | `argument` ends with string `suffix`. |
|
| /freebsd/contrib/bsnmp/tests/ |
| H A D | catch.hpp | 3542 …StdString::EndsWithMatcher EndsWith( std::string const& str, CaseSensitive::Choice caseSensitivity… 4939 struct EndsWith : StringHolder { struct 4940 EndsWith( NSString* substr ) : StringHolder( substr ){} in EndsWith() function 4964 inline Impl::NSStringMatchers::EndsWith 4965 EndsWith( NSString* substr ){ return Impl::NSStringMatchers::EndsWith( substr ); } in EndsWith() function 11637 …StdString::EndsWithMatcher EndsWith( std::string const& str, CaseSensitive::Choice caseSensitivity… in EndsWith() function
|
| /freebsd/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangAttrEmitter.cpp | 108 .EndsWith("Decl *", "Record.readDeclAs<" + in ReadPCHRecord() 131 .EndsWith("Decl *", "AddDeclRef(" + std::string(name) + ");\n") in WritePCHRecord()
|