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

1 2 3 4 5

  /external/chromium/base/
string_piece_unittest.cc 351 ASSERT_EQ(a.find_last_not_of(b), a.size()-1);
352 ASSERT_EQ(a.find_last_not_of(c), 22U);
353 ASSERT_EQ(b.find_last_not_of(a), StringPiece::npos);
354 ASSERT_EQ(b.find_last_not_of(b), StringPiece::npos);
355 ASSERT_EQ(f.find_last_not_of(i), 4U);
356 ASSERT_EQ(a.find_last_not_of(c, 24), 22U);
357 ASSERT_EQ(a.find_last_not_of(b, 3), 3U);
358 ASSERT_EQ(a.find_last_not_of(b, 2), StringPiece::npos);
360 ASSERT_EQ(f.find_last_not_of(d), f.size()-1);
361 ASSERT_EQ(f.find_last_not_of(e), f.size()-1)
    [all...]
string_piece.cc 169 size_type StringPiece::find_last_not_of(const StringPiece& s, function in class:base::StringPiece
180 return find_last_not_of(s.ptr_[0], pos);
193 size_type StringPiece::find_last_not_of(char c, size_type pos) const { function in class:base::StringPiece
string_piece.h 153 size_type find_last_not_of(const StringPiece& s, size_type pos = npos) const;
154 size_type find_last_not_of(char c, size_type pos = npos) const;
  /external/chromium_org/base/strings/
string_piece_unittest.cc 413 ASSERT_EQ(a.find_last_not_of(b), a.size()-1);
414 ASSERT_EQ(a.find_last_not_of(c), 22U);
415 ASSERT_EQ(b.find_last_not_of(a), StringPiece::npos);
416 ASSERT_EQ(b.find_last_not_of(b), StringPiece::npos);
417 ASSERT_EQ(f.find_last_not_of(i), 4U);
418 ASSERT_EQ(a.find_last_not_of(c, 24), 22U);
419 ASSERT_EQ(a.find_last_not_of(b, 3), 3U);
420 ASSERT_EQ(a.find_last_not_of(b, 2), StringPiece::npos);
422 ASSERT_EQ(f.find_last_not_of(d), f.size()-1);
423 ASSERT_EQ(f.find_last_not_of(e), f.size()-1)
    [all...]
string_piece.h 203 BASE_EXPORT StringPieceDetail<std::string>::size_type find_last_not_of(
207 BASE_EXPORT StringPieceDetail<std::string>::size_type find_last_not_of(
329 size_type find_last_not_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
331 return internal::find_last_not_of(*this, s, pos);
334 size_type find_last_not_of(char c, size_type pos = npos) const { function in class:base::BasicStringPiece
335 return internal::find_last_not_of(*this, c, pos);
string_piece.cc 206 StringPiece::size_type find_last_not_of(const StringPiece& self, function in namespace:base::internal
218 return find_last_not_of(self, s.data()[0], pos);
231 StringPiece::size_type find_last_not_of(const StringPiece& self, function in namespace:base::internal
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.last.not.of/
char_size.pass.cpp 12 // size_type find_last_not_of(charT c, size_type pos = npos) const;
24 assert(s.find_last_not_of(c, pos) == x);
33 assert(s.find_last_not_of(c) == x);
pointer_size.pass.cpp 12 // size_type find_last_not_of(const charT* s, size_type pos = npos) const;
24 assert(s.find_last_not_of(str, pos) == x);
33 assert(s.find_last_not_of(str) == x);
string_size.pass.cpp 12 // size_type find_last_not_of(const basic_string& str, size_type pos = npos) const;
23 assert(s.find_last_not_of(str, pos) == x);
32 assert(s.find_last_not_of(str) == x);
  /external/chromium_org/sync/internal_api/
syncapi_internal.cc 46 size_t untrimmed_count = name.find_last_not_of(' ') + 1;
  /sdk/emulator/opengl/host/tools/emugen/
strUtils.cpp 40 string::size_type end = str.find_last_not_of(WHITESPACE);
  /external/chromium/chrome/browser/autocomplete/
history_provider.cc 115 input_text.find_last_not_of(ASCIIToUTF16("/\\"));
119 output.find_last_not_of(ASCIIToUTF16("/\\"));
  /external/chromium_org/chrome/browser/autocomplete/
history_provider.cc 118 input_text.find_last_not_of(ASCIIToUTF16("/\\"));
122 output.find_last_not_of(ASCIIToUTF16("/\\"));
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
algorithm.hpp 179 find_last_not_of( BidirectionalIterator1 first1, BidirectionalIterator1 last1, function in namespace:boost::unit_test
203 find_last_not_of( BidirectionalIterator1 first1, BidirectionalIterator1 last1, function in namespace:boost::unit_test
  /external/stlport/test/unit/
string_test.cpp 66 CPPUNIT_TEST(find_last_not_of);
125 void find_last_not_of();
799 void StringTest::find_last_not_of() function in class:StringTest
804 CPPUNIT_ASSERT( s.find_last_not_of("ehortw ") == 15 );
808 CPPUNIT_CHECK( test.find_last_not_of( "a", 2, 1 ) == 1 );
809 CPPUNIT_CHECK( test.find_last_not_of( "b", 2, 1 ) == 2 );
810 CPPUNIT_CHECK( test.find_last_not_of( "a", 1, 1 ) == 1 );
811 CPPUNIT_CHECK( test.find_last_not_of( "b", 1, 1 ) == 0 );
812 CPPUNIT_CHECK( test.find_last_not_of( "a", 0, 1 ) == string::npos );
813 CPPUNIT_CHECK( test.find_last_not_of( "b", 0, 1 ) == 0 )
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
string_test.cpp 66 CPPUNIT_TEST(find_last_not_of);
125 void find_last_not_of();
799 void StringTest::find_last_not_of() function in class:StringTest
804 CPPUNIT_ASSERT( s.find_last_not_of("ehortw ") == 15 );
808 CPPUNIT_CHECK( test.find_last_not_of( "a", 2, 1 ) == 1 );
809 CPPUNIT_CHECK( test.find_last_not_of( "b", 2, 1 ) == 2 );
810 CPPUNIT_CHECK( test.find_last_not_of( "a", 1, 1 ) == 1 );
811 CPPUNIT_CHECK( test.find_last_not_of( "b", 1, 1 ) == 0 );
812 CPPUNIT_CHECK( test.find_last_not_of( "a", 0, 1 ) == string::npos );
813 CPPUNIT_CHECK( test.find_last_not_of( "b", 0, 1 ) == 0 )
    [all...]
  /ndk/tests/device/test-stlport/unit/
string_test.cpp 66 CPPUNIT_TEST(find_last_not_of);
125 void find_last_not_of();
799 void StringTest::find_last_not_of() function in class:StringTest
804 CPPUNIT_ASSERT( s.find_last_not_of("ehortw ") == 15 );
808 CPPUNIT_CHECK( test.find_last_not_of( "a", 2, 1 ) == 1 );
809 CPPUNIT_CHECK( test.find_last_not_of( "b", 2, 1 ) == 2 );
810 CPPUNIT_CHECK( test.find_last_not_of( "a", 1, 1 ) == 1 );
811 CPPUNIT_CHECK( test.find_last_not_of( "b", 1, 1 ) == 0 );
812 CPPUNIT_CHECK( test.find_last_not_of( "a", 0, 1 ) == string::npos );
813 CPPUNIT_CHECK( test.find_last_not_of( "b", 0, 1 ) == 0 )
    [all...]
  /external/chromium_org/third_party/libphonenumber/src/phonenumbers/base/strings/
string_piece.cc 175 size_type StringPiece::find_last_not_of(const StringPiece& s, function in class:i18n::phonenumbers::StringPiece
186 return find_last_not_of(s.ptr_[0], pos);
199 size_type StringPiece::find_last_not_of(char c, size_type pos) const { function in class:i18n::phonenumbers::StringPiece
string_piece.h 153 size_type find_last_not_of(const StringPiece& s, size_type pos = npos) const;
154 size_type find_last_not_of(char c, size_type pos = npos) const;
  /external/llvm/include/llvm/ADT/
StringRef.h 297 size_t find_last_not_of(char C, size_t From = npos) const;
303 size_t find_last_not_of(StringRef Chars, size_t From = npos) const;
499 return drop_back(Length - std::min(Length, find_last_not_of(Chars) + 1));
  /external/chromium/third_party/libjingle/source/talk/base/
stringutils.cc 136 std::string::size_type last = s.find_last_not_of(kWhitespace);
  /external/chromium_org/third_party/libjingle/source/talk/base/
stringutils.cc 141 std::string::size_type last = s.find_last_not_of(kWhitespace);
  /external/oprofile/libutil++/
string_manip.cpp 96 return result.erase(result.find_last_not_of(totrim) + 1);
  /external/chromium_org/base/
file_util.cc 114 std::string::size_type end1 = line1.find_last_not_of("\r\n");
120 std::string::size_type end2 = line2.find_last_not_of("\r\n");
  /external/stlport/stlport/stl/
_string_sum.h 226 size_type find_last_not_of(const _BString& __s, size_type __pos = _BString::npos) const function in class:__bstr_sum
227 { return _M_get_storage().find_last_not_of(__s, __pos); }
228 size_type find_last_not_of(const _CharT* __s, size_type __pos =_BString:: npos) const function in class:__bstr_sum
229 { return _M_get_storage().find_last_not_of(__s, __pos); }
230 size_type find_last_not_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum
231 { return _M_get_storage().find_last_not_of(__s, __pos, __n); }
232 size_type find_last_not_of(_CharT __c, size_type __pos = _BString::npos) const function in class:__bstr_sum
233 { return _M_get_storage().find_last_not_of(__c, __pos); }

Completed in 1821 milliseconds

1 2 3 4 5