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

12

/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/chromium/chrome/browser/ui/webui/
H A Ddevtools_ui.cc71 if (EndsWith(filename, ".html", false)) {
73 } else if (EndsWith(filename, ".css", false)) {
75 } else if (EndsWith(filename, ".js", false)) {
77 } else if (EndsWith(filename, ".png", false)) {
79 } else if (EndsWith(filename, ".gif", false)) {
/external/chromium/sdch/open-vcdiff/src/gtest/
H A Dgtest-filepath.cc165 return pathname_.EndsWith(kPathSeparatorString);
204 return pathname_.EndsWith(kPathSeparatorString)
/external/chromium/base/
H A Dstring_util_unittest.cc824 TEST(StringUtilTest, EndsWith) {
825 EXPECT_TRUE(EndsWith(L"Foo.plugin", L".plugin", true));
826 EXPECT_FALSE(EndsWith(L"Foo.Plugin", L".plugin", true));
827 EXPECT_TRUE(EndsWith(L"Foo.plugin", L".plugin", false));
828 EXPECT_TRUE(EndsWith(L"Foo.Plugin", L".plugin", false));
829 EXPECT_FALSE(EndsWith(L".plug", L".plugin", true));
830 EXPECT_FALSE(EndsWith(L".plug", L".plugin", false));
831 EXPECT_FALSE(EndsWith(L"Foo.plugin Bar", L".plugin", true));
832 EXPECT_FALSE(EndsWith(L"Foo.plugin Bar", L".plugin", false));
833 EXPECT_FALSE(EndsWith(
[all...]
H A Dstring_util.h367 BASE_API bool EndsWith(const std::string& str,
370 BASE_API bool EndsWith(const std::wstring& str,
373 BASE_API bool EndsWith(const string16& str,
H A Dstring_util.cc610 bool EndsWith(const std::string& str, const std::string& search, function
615 bool EndsWith(const std::wstring& str, const std::wstring& search, function
621 bool EndsWith(const string16& str, const string16& search, function
/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/chromium/sdch/open-vcdiff/src/gtest/internal/
H A Dgtest-string.h203 bool EndsWith(const char* suffix) const;
/external/llvm/include/llvm/ADT/
H A DStringSwitch.h65 StringSwitch& EndsWith(const char (&S)[N], const T &Value) { function in class:llvm::StringSwitch
/external/chromium/net/base/
H A Dfilter.cc192 if (EndsWith(extension, FILE_PATH_LITERAL(".gz"), false) ||
201 if ((EndsWith(extension, FILE_PATH_LITERAL(".gz"), false) ||
/external/protobuf/gtest/src/
H A Dgtest-filepath.cc263 return pathname_.EndsWith(kPathSeparatorString);
308 return pathname_.EndsWith(kPathSeparatorString)
/external/chromium/testing/gtest/include/gtest/internal/
H A Dgtest-string.h262 bool EndsWith(const char* suffix) const;
/external/gtest/include/gtest/internal/
H A Dgtest-string.h262 bool EndsWith(const char* suffix) const;
/external/llvm/utils/unittest/googletest/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/chromium/chrome/browser/autofill/
H A Dphone_number.cc213 EndsWith(number_, text, true));
/external/chromium/chrome/common/extensions/
H A Duser_script.cc46 return EndsWith(url.ExtractFileName(), kFileExtension, false) &&
/external/chromium/chrome/browser/
H A Dbrowser_focus_uitest.cc91 EndsWith(caption, L" - Google Chrome", true) ||
92 EndsWith(caption, L" - Chromium", true);
H A Dplugin_observer.cc350 if (EndsWith(plugin_name, ASCIIToUTF16(kPluginExtension), true))
/external/chromium/testing/gmock/test/
H A Dgmock_link_test.h80 // EndsWith
139 using testing::EndsWith;
562 // Tests the linkage of the StartsWith, EndsWith, and HasSubstr matchers.
567 ON_CALL(mock, VoidFromString(EndsWith("c"))).WillByDefault(Return());
H A Dgmock-matchers_test.cc81 using testing::EndsWith;
1305 // Tests EndsWith(s).
1308 const Matcher<const char*> m1 = EndsWith("");
1313 const Matcher<const string&> m2 = EndsWith(string("Hi"));
1322 Matcher<const std::string> m = EndsWith("Hi");
1539 // Tests EndsWith(s).
1542 const Matcher<const wchar_t*> m1 = EndsWith(L"");
1547 const Matcher<const ::std::wstring&> m2 = EndsWith(::std::wstring(L"Hi"));
1556 Matcher<const ::std::wstring> m = EndsWith(L"Hi");
1730 // Tests EndsWith(
[all...]
/external/chromium/chrome/browser/policy/
H A Dcloud_policy_controller.cc36 if (EndsWith(username, kNonManagedDomains[i], true)) {
/external/chromium/chrome/browser/chromeos/login/
H A Dlogin_utils.cc334 if (EndsWith(username_, "@google.com", true)) {
/external/easymock/src/org/easymock/
H A DEasyMock.java1359 reportMatcher(new EndsWith(suffix));

Completed in 525 milliseconds

12