HomeSort by relevance Sort by last modified time
    Searched refs:EndsWith (Results 1 - 25 of 44) sorted by null

1 2

  /external/easymock/src/org/easymock/internal/matchers/
EndsWith.java 22 public class EndsWith implements IArgumentMatcher, Serializable {
28 public EndsWith(String suffix) {
33 return (actual instanceof String) && ((String) actual).endsWith(suffix);
37 buffer.append("endsWith(\"" + suffix + "\")");
  /external/chromium/chrome/browser/ui/webui/
devtools_ui.cc 71 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/
gtest-filepath.cc 165 return pathname_.EndsWith(kPathSeparatorString);
204 return pathname_.EndsWith(kPathSeparatorString)
  /external/chromium/sdch/open-vcdiff/src/gtest/internal/
gtest-string.h 203 bool EndsWith(const char* suffix) const;
  /external/chromium/base/
string_util_unittest.cc 824 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(L"", L".plugin", false))
    [all...]
string_util.h 367 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,
string_util.cc 610 bool EndsWith(const std::string& str, const std::string& search,
615 bool EndsWith(const std::wstring& str, const std::wstring& search,
621 bool EndsWith(const string16& str, const string16& search,
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
StringExtensions.cs 48 public static bool endsWith( string str, string value )
50 return str.EndsWith( value );
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
StringExtensions.cs 49 public static bool endsWith( this string str, string value )
51 return str.EndsWith( value );
  /external/chromium/testing/gtest/include/gtest/internal/
gtest-string.h 262 bool EndsWith(const char* suffix) const;
  /external/gtest/include/gtest/internal/
gtest-string.h 262 bool EndsWith(const char* suffix) const;
  /external/llvm/include/llvm/ADT/
StringSwitch.h 65 StringSwitch& EndsWith(const char (&S)[N], const T &Value) {
  /external/llvm/utils/unittest/googletest/include/gtest/internal/
gtest-string.h 262 bool EndsWith(const char* suffix) const;
  /external/protobuf/gtest/include/gtest/internal/
gtest-string.h 262 bool EndsWith(const char* suffix) const;
  /external/chromium/net/base/
filter.cc 192 if (EndsWith(extension, FILE_PATH_LITERAL(".gz"), false) ||
201 if ((EndsWith(extension, FILE_PATH_LITERAL(".gz"), false) ||
  /external/protobuf/gtest/src/
gtest-filepath.cc 263 return pathname_.EndsWith(kPathSeparatorString);
308 return pathname_.EndsWith(kPathSeparatorString)
  /external/chromium/chrome/browser/autofill/
phone_number.cc 213 EndsWith(number_, text, true));
  /external/chromium/chrome/common/extensions/
user_script.cc 46 return EndsWith(url.ExtractFileName(), kFileExtension, false) &&
  /external/chromium/chrome/browser/
browser_focus_uitest.cc 91 EndsWith(caption, L" - Google Chrome", true) ||
92 EndsWith(caption, L" - Chromium", true);
    [all...]
plugin_observer.cc 350 if (EndsWith(plugin_name, ASCIIToUTF16(kPluginExtension), true))
  /external/chromium/testing/gmock/test/
gmock_link_test.h 80 // 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());
gmock-matchers_test.cc 81 using testing::EndsWith;
    [all...]
  /external/chromium/chrome/browser/policy/
cloud_policy_controller.cc 36 if (EndsWith(username, kNonManagedDomains[i], true)) {
  /external/chromium/chrome/browser/chromeos/login/
login_utils.cc 334 if (EndsWith(username_, "@google.com", true)) {
  /external/easymock/src/org/easymock/
EasyMock.java     [all...]

Completed in 1424 milliseconds

1 2