/external/chromium/base/ |
string_piece_unittest.cc | 219 ASSERT_EQ(a.rfind(b), 0U); 220 ASSERT_EQ(a.rfind(b, 1), 0U); 221 ASSERT_EQ(a.rfind(c), 23U); 222 ASSERT_EQ(a.rfind(c, 22U), StringPiece::npos); 223 ASSERT_EQ(a.rfind(c, 1U), StringPiece::npos); 224 ASSERT_EQ(a.rfind(c, 0U), StringPiece::npos); 225 ASSERT_EQ(b.rfind(c), StringPiece::npos); 226 ASSERT_EQ(b.rfind(c, 0U), StringPiece::npos); 227 ASSERT_EQ(a.rfind(d), (size_t) a.as_string().rfind(std::string())) [all...] |
string_piece.h | 140 size_type rfind(const StringPiece& s, size_type pos = npos) const; 141 size_type rfind(char c, size_type pos = npos) const; 151 return rfind(c, pos);
|
string_piece.cc | 55 size_type StringPiece::rfind(const StringPiece& s, size_type pos) const { function in class:base::StringPiece 67 size_type StringPiece::rfind(char c, size_type pos) const { function in class:base::StringPiece
|
/external/bluetooth/bluez/test/ |
monitor-bluetooth | 9 iface = interface[interface.rfind(".") + 1:] 14 iface = interface[interface.rfind(".") + 1:]
|
list-devices | 14 list = list + val[val.rfind("/") + 1:] + " "
|
/external/chromium/third_party/libjingle/overrides/talk/xmllite/ |
qname.cc | 24 size_t i = name.rfind(':'); 32 size_t i = name.rfind(':');
|
/build/tools/ |
fileslist.py | 28 base = len(root[:root.rfind(os.path.sep)])
|
/external/stlport/stlport/stl/ |
_string_sum.h | 194 size_type rfind(const _BString& __s, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__s, __pos); } function in class:__bstr_sum 195 size_type rfind(const _CharT* __s, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__s, __pos); } function in class:__bstr_sum 196 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const { return _M_get_storage().rfind(__s, __pos, __n); } function in class:__bstr_sum 197 size_type rfind(_CharT __c, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__c, __pos); } function in class:__bstr_sum 215 { return _M_get_storage().rfind(__c, __pos); }
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_string_sum.h | 194 size_type rfind(const _BString& __s, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__s, __pos); } function in class:__bstr_sum 195 size_type rfind(const _CharT* __s, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__s, __pos); } function in class:__bstr_sum 196 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const { return _M_get_storage().rfind(__s, __pos, __n); } function in class:__bstr_sum 197 size_type rfind(_CharT __c, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__c, __pos); } function in class:__bstr_sum 215 { return _M_get_storage().rfind(__c, __pos); }
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/ |
_string_sum.h | 194 size_type rfind(const _BString& __s, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__s, __pos); } function in class:__bstr_sum 195 size_type rfind(const _CharT* __s, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__s, __pos); } function in class:__bstr_sum 196 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const { return _M_get_storage().rfind(__s, __pos, __n); } function in class:__bstr_sum 197 size_type rfind(_CharT __c, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__c, __pos); } function in class:__bstr_sum 215 { return _M_get_storage().rfind(__c, __pos); }
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/ |
_string_sum.h | 194 size_type rfind(const _BString& __s, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__s, __pos); } function in class:__bstr_sum 195 size_type rfind(const _CharT* __s, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__s, __pos); } function in class:__bstr_sum 196 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const { return _M_get_storage().rfind(__s, __pos, __n); } function in class:__bstr_sum 197 size_type rfind(_CharT __c, size_type __pos = _BString::npos) const { return _M_get_storage().rfind(__c, __pos); } function in class:__bstr_sum 215 { return _M_get_storage().rfind(__c, __pos); }
|
/external/llvm/unittests/ADT/ |
StringRefTest.cpp | 255 EXPECT_EQ(3U, Str.rfind('l')); 256 EXPECT_EQ(StringRef::npos, Str.rfind('z')); 257 EXPECT_EQ(StringRef::npos, Str.rfind("helloworld")); 258 EXPECT_EQ(0U, Str.rfind("hello")); 259 EXPECT_EQ(1U, Str.rfind("ello")); 260 EXPECT_EQ(StringRef::npos, Str.rfind("zz"));
|
/external/skia/src/animator/ |
SkTDArray_Experimental.h | 58 int rfind(const int32_t& elem) const; 132 int rfind(const T& elem) const { return SkDS32Array::rfind((const int32_t&) elem); } function in class:SkTDS32Array
|
/external/stlport/test/unit/ |
string_test.cpp | 64 CPPUNIT_TEST(rfind); 123 void rfind(); 729 string::size_type p = s.rfind( "", 0, 0 ); 736 string::size_type p = s.rfind( "", 0, 0 ); 742 string::size_type p = s.rfind( "", 1, 0 ); 748 string::size_type p = s.rfind( "", 1, 0 ); 754 string::size_type p = s.rfind( "", 3, 0 ); 760 void StringTest::rfind() function in class:StringTest 765 CPPUNIT_ASSERT( s.rfind("two") == 18 ); 766 CPPUNIT_ASSERT( s.rfind("two", 0) == string::npos ) [all...] |
/ndk/tests/device/test-gnustl-full/unit/ |
string_test.cpp | 64 CPPUNIT_TEST(rfind); 123 void rfind(); 729 string::size_type p = s.rfind( "", 0, 0 ); 736 string::size_type p = s.rfind( "", 0, 0 ); 742 string::size_type p = s.rfind( "", 1, 0 ); 748 string::size_type p = s.rfind( "", 1, 0 ); 754 string::size_type p = s.rfind( "", 3, 0 ); 760 void StringTest::rfind() function in class:StringTest 765 CPPUNIT_ASSERT( s.rfind("two") == 18 ); 766 CPPUNIT_ASSERT( s.rfind("two", 0) == string::npos ) [all...] |
/ndk/tests/device/test-stlport/unit/ |
string_test.cpp | 64 CPPUNIT_TEST(rfind); 123 void rfind(); 729 string::size_type p = s.rfind( "", 0, 0 ); 736 string::size_type p = s.rfind( "", 0, 0 ); 742 string::size_type p = s.rfind( "", 1, 0 ); 748 string::size_type p = s.rfind( "", 1, 0 ); 754 string::size_type p = s.rfind( "", 3, 0 ); 760 void StringTest::rfind() function in class:StringTest 765 CPPUNIT_ASSERT( s.rfind("two") == 18 ); 766 CPPUNIT_ASSERT( s.rfind("two", 0) == string::npos ) [all...] |
/external/stlport/stlport/stl/debug/ |
_string.h | 710 // rfind. 711 size_type rfind(const _Self& __s, size_type __pos = npos) const function in class:basic_string 712 { return _M_non_dbg_impl.rfind(__s._M_non_dbg_impl, __pos); } 713 size_type rfind(const _CharT* __s, size_type __pos = npos) const { function in class:basic_string 716 return _M_non_dbg_impl.rfind(__s, __pos); 718 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string 721 return _M_non_dbg_impl.rfind(__s, __pos, __n); 723 size_type rfind(_CharT __c, size_type __pos = npos) const function in class:basic_string 724 { return _M_non_dbg_impl.rfind(__c, __pos); } 756 { return _M_non_dbg_impl.rfind(__c, __pos); [all...] |
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
_string.h | 710 // rfind. 711 size_type rfind(const _Self& __s, size_type __pos = npos) const function in class:basic_string 712 { return _M_non_dbg_impl.rfind(__s._M_non_dbg_impl, __pos); } 713 size_type rfind(const _CharT* __s, size_type __pos = npos) const { function in class:basic_string 716 return _M_non_dbg_impl.rfind(__s, __pos); 718 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string 721 return _M_non_dbg_impl.rfind(__s, __pos, __n); 723 size_type rfind(_CharT __c, size_type __pos = npos) const function in class:basic_string 724 { return _M_non_dbg_impl.rfind(__c, __pos); } 756 { return _M_non_dbg_impl.rfind(__c, __pos); [all...] |
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/debug/ |
_string.h | 710 // rfind. 711 size_type rfind(const _Self& __s, size_type __pos = npos) const function in class:basic_string 712 { return _M_non_dbg_impl.rfind(__s._M_non_dbg_impl, __pos); } 713 size_type rfind(const _CharT* __s, size_type __pos = npos) const { function in class:basic_string 716 return _M_non_dbg_impl.rfind(__s, __pos); 718 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string 721 return _M_non_dbg_impl.rfind(__s, __pos, __n); 723 size_type rfind(_CharT __c, size_type __pos = npos) const function in class:basic_string 724 { return _M_non_dbg_impl.rfind(__c, __pos); } 756 { return _M_non_dbg_impl.rfind(__c, __pos); [all...] |
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/debug/ |
_string.h | 710 // rfind. 711 size_type rfind(const _Self& __s, size_type __pos = npos) const function in class:basic_string 712 { return _M_non_dbg_impl.rfind(__s._M_non_dbg_impl, __pos); } 713 size_type rfind(const _CharT* __s, size_type __pos = npos) const { function in class:basic_string 716 return _M_non_dbg_impl.rfind(__s, __pos); 718 size_type rfind(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string 721 return _M_non_dbg_impl.rfind(__s, __pos, __n); 723 size_type rfind(_CharT __c, size_type __pos = npos) const function in class:basic_string 724 { return _M_non_dbg_impl.rfind(__c, __pos); } 756 { return _M_non_dbg_impl.rfind(__c, __pos); [all...] |
/external/chromium/third_party/libjingle/source/talk/xmllite/ |
qname.cc | 113 size_t i = name.rfind(':'); 121 size_t i = name.rfind(':');
|
/frameworks/base/opengl/libs/GLES2_dbg/ |
generate_caller_cpp.py | 48 if line.find("*") >= 0 and (line.find("*") < line.find(":") or line.find("*") > line.rfind(":")): # unannotated pointer 107 if len(arguments) - arguments.rfind("\n") > 60 :
|
/libcore/luni/src/main/native/ |
realpath.cpp | 79 resolved.erase(resolved.rfind('/')); 108 resolved.erase(resolved.rfind('/'));
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/debug/ |
string | 676 rfind(const basic_string& __str, size_type __pos = _Base::npos) const 677 { return _Base::rfind(__str, __pos); } 680 rfind(const _CharT* __s, size_type __pos, size_type __n) const 683 return _Base::rfind(__s, __pos, __n); 687 rfind(const _CharT* __s, size_type __pos = _Base::npos) const 690 return _Base::rfind(__s, __pos); 694 rfind(_CharT __c, size_type __pos = _Base::npos) const 695 { return _Base::rfind(__c, __pos); }
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/debug/ |
string | 676 rfind(const basic_string& __str, size_type __pos = _Base::npos) const 677 { return _Base::rfind(__str, __pos); } 680 rfind(const _CharT* __s, size_type __pos, size_type __n) const 683 return _Base::rfind(__s, __pos, __n); 687 rfind(const _CharT* __s, size_type __pos = _Base::npos) const 690 return _Base::rfind(__s, __pos); 694 rfind(_CharT __c, size_type __pos = _Base::npos) const 695 { return _Base::rfind(__c, __pos); }
|