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

1 2 3

  /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/mockito/src/org/mockito/internal/matchers/
EndsWith.java 14 public class EndsWith extends ArgumentMatcher<String> implements Serializable {
19 public EndsWith(String suffix) {
24 return actual != null && ((String) actual).endsWith(suffix);
28 description.appendText("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,
  /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/libvpx/libvpx/third_party/googletest/src/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/open-vcdiff/gtest/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/open-vcdiff/gtest/src/
gtest-filepath.cc 263 return pathname_.EndsWith(kPathSeparatorString);
308 return pathname_.EndsWith(kPathSeparatorString)
  /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/mockito/src/org/mockito/
Matchers.java 749 public static String endsWith(String suffix) {
750 return reportMatcher(new EndsWith(suffix)).returnString();
  /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());

Completed in 473 milliseconds

1 2 3