Searched refs:EndsWith (Results 1 - 25 of 60) sorted by relevance

123

/external/llvm/lib/Target/Lanai/
H A DLanaiCondCode.h75 .EndsWith("f", LPCC::ICC_F)
76 .EndsWith("hi", LPCC::ICC_HI)
77 .EndsWith("ugt", LPCC::ICC_UGT)
78 .EndsWith("ls", LPCC::ICC_LS)
79 .EndsWith("ule", LPCC::ICC_ULE)
80 .EndsWith("cc", LPCC::ICC_CC)
81 .EndsWith("ult", LPCC::ICC_ULT)
82 .EndsWith("cs", LPCC::ICC_CS)
83 .EndsWith("uge", LPCC::ICC_UGE)
84 .EndsWith("n
[all...]
/external/mockito/src/main/java/org/mockito/internal/matchers/
H A DEndsWith.java12 public class EndsWith implements ArgumentMatcher<String>, Serializable { class in inherits:ArgumentMatcher,Serializable
16 public EndsWith(String suffix) { method in class:EndsWith
/external/easymock/src/org/easymock/internal/matchers/
H A DEndsWith.java22 public class EndsWith implements IArgumentMatcher, Serializable { class in inherits:IArgumentMatcher,Serializable
28 public EndsWith(String suffix) { method in class:EndsWith
/external/mockito/src/test/java/org/mockito/internal/matchers/
H A DStringMatchersTest.java29 assertTrue(new EndsWith("mockito").matches("here is mockito"));
34 assertFalse(new EndsWith("junit").matches("here is mockito"));
39 assertFalse(new EndsWith("java").matches(null));
H A DMatchersToStringTest.java101 assertEquals("endsWith(\"AB\")", new EndsWith("AB").toString());
/external/libchrome/dbus/
H A Dstring_util.cc42 base::EndsWith(value, "/", base::CompareCase::SENSITIVE))
/external/libmojo/base/android/library_loader/
H A Dlibrary_prefetcher.cc42 if (EndsWith(path, kSuffixesToMatch[i], CompareCase::SENSITIVE)) {
88 if (EndsWith(region.path, kLibchromeSuffix, CompareCase::SENSITIVE)) {
95 !EndsWith(region.path, kLibchromeSuffix, CompareCase::SENSITIVE)) {
/external/dng_sdk/source/
H A Ddng_string.h117 bool EndsWith (const char *s,
H A Ddng_validate.cpp753 if (!gDumpStage1.EndsWith (".tif"))
776 if (!gDumpStage2.EndsWith (".tif"))
799 if (!gDumpStage3.EndsWith (".tif"))
822 if (!gDumpTIF.EndsWith (".tif"))
845 if (!gDumpDNG.EndsWith (".dng"))
H A Ddng_camera_profile.cpp1265 if (len > 5 && baseName.EndsWith (" beta"))
1286 if (temp.EndsWith (" beta "))
1313 if (temp.EndsWith (" v"))
/external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
H A DAnyPartial.cs44 prefix.EndsWith("/") ? prefix + descriptor.FullName : prefix + "/" + descriptor.FullName;
/external/webrtc/webrtc/base/
H A Dstringutils_unittest.cc99 TEST(string_endsTest, EndsWith) {
/external/libchrome/base/strings/
H A Dstring_util_unittest.cc756 TEST(StringUtilTest, EndsWith) {
757 EXPECT_TRUE(EndsWith(ASCIIToUTF16("Foo.plugin"), ASCIIToUTF16(".plugin"),
759 EXPECT_FALSE(EndsWith(ASCIIToUTF16("Foo.Plugin"), ASCIIToUTF16(".plugin"),
761 EXPECT_TRUE(EndsWith(ASCIIToUTF16("Foo.plugin"), ASCIIToUTF16(".plugin"),
763 EXPECT_TRUE(EndsWith(ASCIIToUTF16("Foo.Plugin"), ASCIIToUTF16(".plugin"),
765 EXPECT_FALSE(EndsWith(ASCIIToUTF16(".plug"), ASCIIToUTF16(".plugin"),
767 EXPECT_FALSE(EndsWith(ASCIIToUTF16(".plug"), ASCIIToUTF16(".plugin"),
769 EXPECT_FALSE(EndsWith(ASCIIToUTF16("Foo.plugin Bar"), ASCIIToUTF16(".plugin"),
771 EXPECT_FALSE(EndsWith(ASCIIToUTF16("Foo.plugin Bar"), ASCIIToUTF16(".plugin"),
773 EXPECT_FALSE(EndsWith(string1
[all...]
H A Dstring_util.h316 // If you need to do Unicode-aware case-insensitive StartsWith/EndsWith, it's
331 BASE_EXPORT bool EndsWith(StringPiece str,
334 BASE_EXPORT bool EndsWith(StringPiece16 str,
/external/libchrome/base/
H A Dversion.cc103 if (EndsWith(version_string, ".*", CompareCase::SENSITIVE))
115 if (!EndsWith(wildcard_string, ".*", CompareCase::SENSITIVE)) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DStringExtensions.cs50 return str.EndsWith( value );
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DStringExtensions.cs51 return str.EndsWith( value );
/external/swiftshader/third_party/LLVM/include/llvm/ADT/
H A DStringSwitch.h65 StringSwitch& EndsWith(const char (&S)[N], const T &Value) { function in class:llvm::StringSwitch
/external/google-breakpad/src/testing/gtest/include/gtest/internal/
H A Dgtest-string.h262 bool EndsWith(const char* suffix) const;
/external/llvm/include/llvm/ADT/
H A DStringSwitch.h69 StringSwitch& EndsWith(const char (&S)[N], const T &Value) { function in class:llvm::StringSwitch
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-string.h262 bool EndsWith(const char* suffix) const;
/external/mesa3d/src/gtest/include/gtest/internal/
H A Dgtest-string.h262 bool EndsWith(const char* suffix) const;
/external/protobuf/gtest/include/gtest/internal/
H A Dgtest-string.h262 bool EndsWith(const char* suffix) const;
/external/swiftshader/third_party/LLVM/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-string.h262 bool EndsWith(const char* suffix) const;
/external/mockito/src/main/java/org/mockito/
H A DArgumentMatchers.java17 import org.mockito.internal.matchers.EndsWith;
1147 reportMatcher(new EndsWith(suffix));

Completed in 4148 milliseconds

123