HomeSort by relevance Sort by last modified time
    Searched full:ends_with (Results 1 - 25 of 36) sorted by null

1 2

  /external/chromium_org/third_party/webrtc/base/
stringutils_unittest.cc 100 EXPECT_TRUE(ends_with("foobar", "bar"));
101 EXPECT_TRUE(ends_with("foobar", "foobar"));
102 EXPECT_TRUE(ends_with("foobar", ""));
103 EXPECT_TRUE(ends_with("", ""));
104 EXPECT_FALSE(ends_with("foobar", "foo"));
105 EXPECT_FALSE(ends_with("foobar", "foobarbaz"));
106 EXPECT_FALSE(ends_with("", "f"));
stringutils.cc 108 bool ends_with(const char *s1, const char *s2) {
stringutils.h 311 bool ends_with(const char *s1, const char *s2);
  /external/chromium_org/third_party/libjingle/source/talk/base/
stringutils_unittest.cc 117 EXPECT_TRUE(ends_with("foobar", "bar"));
118 EXPECT_TRUE(ends_with("foobar", "foobar"));
119 EXPECT_TRUE(ends_with("foobar", ""));
120 EXPECT_TRUE(ends_with("", ""));
121 EXPECT_FALSE(ends_with("foobar", "foo"));
122 EXPECT_FALSE(ends_with("foobar", "foobarbaz"));
123 EXPECT_FALSE(ends_with("", "f"));
stringutils.cc 125 bool ends_with(const char *s1, const char *s2) {
stringutils.h 328 bool ends_with(const char *s1, const char *s2);
  /bionic/libc/private/
bionic_string_utils.h 22 static inline bool ends_with(const char* s1, const char* s2) { function
  /developers/build/templates/include/
common.ftl 18 <#if meta.outputFile?ends_with("java")>
20 <#elseif meta.outputFile?ends_with("xml")>
34 && !(sample.compileSdkVersion?ends_with("\""))>
55 && !(sample.minSdk?ends_with("\""))>
  /external/chromium_org/base/strings/
string_piece_unittest.cc 562 ASSERT_TRUE(a.ends_with(a));
563 ASSERT_TRUE(a.ends_with("bar"));
564 ASSERT_TRUE(a.ends_with(e));
565 ASSERT_TRUE(b.ends_with(s1));
566 ASSERT_TRUE(b.ends_with(b));
567 ASSERT_TRUE(b.ends_with(e));
568 ASSERT_TRUE(e.ends_with(""));
569 ASSERT_TRUE(!a.ends_with(b));
570 ASSERT_TRUE(!b.ends_with(a));
571 ASSERT_TRUE(!e.ends_with(a))
    [all...]
string_piece.h 275 bool ends_with(const BasicStringPiece& x) const { function in class:base::BasicStringPiece
  /external/chromium_org/tools/clang/plugins/
ChromeClassTester.cpp 30 bool ends_with(const std::string& one, const std::string& two) { function in namespace:__anon20326
90 if (ends_with(base_name, "Matcher"))
140 if (ends_with(filename, ".cc") || ends_with(filename, ".cpp") ||
141 ends_with(filename, ".mm")) {
265 if (ends_with(filename, ".pb.h")) {
  /bionic/libc/bionic/
pthread_attr.cpp 136 if (ends_with(line, " [stack]\n")) {
  /external/chromium_org/base/
os_compat_android.cc 125 if (!base::StringPiece(path, path_len).ends_with(kSuffix)) {
vlog.cc 98 if (module.ends_with(kInlSuffix))
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
string_piece.h 119 bool ends_with(const StringPiece& x) const { function in class:i18n::phonenumbers::StringPiece
  /external/chromium_org/third_party/re2/re2/
stringpiece.h 113 bool ends_with(const StringPiece& x) const { function in class:re2::StringPiece
  /external/regex-re2/re2/
stringpiece.h 110 bool ends_with(const StringPiece& x) const { function in class:re2::StringPiece
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/SystemEvents/
Standard_Suite.py 518 class ends_with(aetools.NComparison): class in inherits:aetools.NComparison
577 'ends' : ends_with,
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/Terminal/
Standard_Suite.py 518 class ends_with(aetools.NComparison): class in inherits:aetools.NComparison
577 'ends' : ends_with,
  /art/runtime/base/
stringpiece.h 119 bool ends_with(const StringPiece& x) const { function in class:art::StringPiece
  /bionic/tests/
dlfcn_test.cpp 177 // Note that we don't know whether or not we have the full path, so we want an "ends_with" test.
  /external/linux-tools-perf/perf-3.12.0/tools/perf/
builtin-script.c 919 static const char *ends_with(const char *str, const char *suffix) function
982 str = (char *)ends_with(script_root, suffix);
1215 return ends_with(script_path, "top") == NULL ? false : true;
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
xmppclient.cc 106 talk_base::ends_with(server_name.c_str(),
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Standard_Suite.py 650 class ends_with(aetools.NComparison): class in inherits:aetools.NComparison
731 'ends' : ends_with,
  /external/chromium_org/chrome/browser/
io_thread.cc     [all...]

Completed in 2687 milliseconds

1 2