/external/chromium/base/ |
string_piece_unittest.cc | 261 ASSERT_EQ(a.find_first_of(b), 0U); 262 ASSERT_EQ(a.find_first_of(b, 0), 0U); 263 ASSERT_EQ(a.find_first_of(b, 1), 1U); 264 ASSERT_EQ(a.find_first_of(b, 2), 2U); 265 ASSERT_EQ(a.find_first_of(b, 3), StringPiece::npos); 266 ASSERT_EQ(a.find_first_of(c), 23U); 267 ASSERT_EQ(a.find_first_of(c, 23), 23U); 268 ASSERT_EQ(a.find_first_of(c, 24), 24U); 269 ASSERT_EQ(a.find_first_of(c, 25), 25U); 270 ASSERT_EQ(a.find_first_of(c, 26), StringPiece::npos) [all...] |
sys_info_chromeos.cc | 92 size_t start_index = lsb_release.find_first_of('=', version_key_index); 94 size_t length = lsb_release.find_first_of('\n', start_index) - start_index;
|
string_piece.cc | 97 size_type StringPiece::find_first_of(const StringPiece& s, function in class:base::StringPiece 104 return find_first_of(s.ptr_[0], pos);
|
string_piece.h | 143 size_type find_first_of(const StringPiece& s, size_type pos = 0) const; 144 size_type find_first_of(char c, size_type pos = 0) const { function in class:base::StringPiece
|
/external/stlport/test/unit/ |
alg_test.cpp | 230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); 242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); 260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); 272 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); 286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 315 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 329 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 359 map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), ValueFinder());
|
/ndk/tests/device/test-gnustl-full/unit/ |
alg_test.cpp | 230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); 242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); 260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); 272 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); 286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 315 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 329 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 359 map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), ValueFinder());
|
/ndk/tests/device/test-stlport/unit/ |
alg_test.cpp | 230 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); 242 first = find_first_of(intv.begin(), intv.end(), intsl.begin(), intsl.end()); 260 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); 272 first = find_first_of(intv.begin(), intv.end(), intl.begin(), intl.end()); 286 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 300 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 315 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 329 first = find_first_of(intv.begin(), intv.end(), chars, chars + sizeof(chars)); 359 map<int, string>::iterator i = find_first_of(m.begin(), m.end(), values.begin(), values.end(), ValueFinder());
|
/external/chromium/net/tools/flip_server/ |
loadtime_measurement.h | 53 size_t b = action.find_first_of('='); 106 size_t e = str.find_first_of(sepa, b); 110 e = str.find_first_of(sepa, b);
|
/external/chromium/chrome/browser/ui/omnibox/ |
location_bar_util.cc | 31 const size_t ws_index = description.find_first_of(kWhitespaceWide);
|
/external/chromium/net/tools/dump_cache/ |
url_utilities.cc | 19 size_t next_slash = url.find_first_of('/', b); 20 size_t next_colon = url.find_first_of(':', b);
|
/development/tools/emulator/opengl/host/tools/emugen/ |
strUtils.cpp | 28 *last = str.find_first_of(delim, pos);
|
/external/chromium/chrome/browser/ui/webui/options/chromeos/ |
user_image_source.cc | 45 std::string email = path.substr(0, path.find_first_of("?"));
|
/external/stlport/stlport/stl/ |
_string_sum.h | 199 size_type find_first_of(const _BString& __s, size_type __pos = 0) const function in class:__bstr_sum 200 { return _M_get_storage().find_first_of(__s, __pos); } 201 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:__bstr_sum 202 { return _M_get_storage().find_first_of(__s, __pos); } 203 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum 204 { return _M_get_storage().find_first_of(__s, __pos, __n); } 205 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:__bstr_sum
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_string_sum.h | 199 size_type find_first_of(const _BString& __s, size_type __pos = 0) const function in class:__bstr_sum 200 { return _M_get_storage().find_first_of(__s, __pos); } 201 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:__bstr_sum 202 { return _M_get_storage().find_first_of(__s, __pos); } 203 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum 204 { return _M_get_storage().find_first_of(__s, __pos, __n); } 205 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:__bstr_sum
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/ |
_string_sum.h | 199 size_type find_first_of(const _BString& __s, size_type __pos = 0) const function in class:__bstr_sum 200 { return _M_get_storage().find_first_of(__s, __pos); } 201 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:__bstr_sum 202 { return _M_get_storage().find_first_of(__s, __pos); } 203 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum 204 { return _M_get_storage().find_first_of(__s, __pos, __n); } 205 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:__bstr_sum
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/ |
_string_sum.h | 199 size_type find_first_of(const _BString& __s, size_type __pos = 0) const function in class:__bstr_sum 200 { return _M_get_storage().find_first_of(__s, __pos); } 201 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:__bstr_sum 202 { return _M_get_storage().find_first_of(__s, __pos); } 203 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const function in class:__bstr_sum 204 { return _M_get_storage().find_first_of(__s, __pos, __n); } 205 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:__bstr_sum
|
/external/chromium/third_party/libjingle/source/talk/base/ |
pathutils.cc | 205 if(basename.find_first_of(FOLDER_DELIMS) != std::string::npos) { 217 if (extension.find_first_of(FOLDER_DELIMS) != std::string::npos || 218 extension.find_first_of(EXT_DELIM, 1) != std::string::npos) {
|
/external/protobuf/src/google/protobuf/compiler/ |
code_generator.cc | 60 string::size_type equals_pos = parts[i].find_first_of('=');
|
/external/stlport/stlport/stl/debug/ |
_string.h | 726 // find_first_of 727 size_type find_first_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string 728 { return _M_non_dbg_impl.find_first_of(__s._M_non_dbg_impl, __pos); } 729 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const { function in class:basic_string 732 return _M_non_dbg_impl.find_first_of(__s, __pos); 734 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string 737 return _M_non_dbg_impl.find_first_of(__s, __pos, __n); 739 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:basic_string 740 { return _M_non_dbg_impl.find_first_of(__c, __pos); }
|
/ndk/sources/cxx-stl/stlport/stlport/stl/debug/ |
_string.h | 726 // find_first_of 727 size_type find_first_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string 728 { return _M_non_dbg_impl.find_first_of(__s._M_non_dbg_impl, __pos); } 729 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const { function in class:basic_string 732 return _M_non_dbg_impl.find_first_of(__s, __pos); 734 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string 737 return _M_non_dbg_impl.find_first_of(__s, __pos, __n); 739 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:basic_string 740 { return _M_non_dbg_impl.find_first_of(__c, __pos); }
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/debug/ |
_string.h | 726 // find_first_of 727 size_type find_first_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string 728 { return _M_non_dbg_impl.find_first_of(__s._M_non_dbg_impl, __pos); } 729 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const { function in class:basic_string 732 return _M_non_dbg_impl.find_first_of(__s, __pos); 734 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string 737 return _M_non_dbg_impl.find_first_of(__s, __pos, __n); 739 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:basic_string 740 { return _M_non_dbg_impl.find_first_of(__c, __pos); }
|
/prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/debug/ |
_string.h | 726 // find_first_of 727 size_type find_first_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string 728 { return _M_non_dbg_impl.find_first_of(__s._M_non_dbg_impl, __pos); } 729 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const { function in class:basic_string 732 return _M_non_dbg_impl.find_first_of(__s, __pos); 734 size_type find_first_of(const _CharT* __s, size_type __pos, size_type __n) const { function in class:basic_string 737 return _M_non_dbg_impl.find_first_of(__s, __pos, __n); 739 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:basic_string 740 { return _M_non_dbg_impl.find_first_of(__c, __pos); }
|
/external/chromium/third_party/libjingle/source/talk/xmllite/ |
xmlprinter.cc | 154 size_t unsafe = text.find_first_of("<>&\"", safe); 176 size_t unsafe = text.find_first_of("<>&", safe);
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/debug/ |
string | 698 find_first_of(const basic_string& __str, size_type __pos = 0) const 699 { return _Base::find_first_of(__str, __pos); } 702 find_first_of(const _CharT* __s, size_type __pos, size_type __n) const 705 return _Base::find_first_of(__s, __pos, __n); 709 find_first_of(const _CharT* __s, size_type __pos = 0) const 712 return _Base::find_first_of(__s, __pos); 716 find_first_of(_CharT __c, size_type __pos = 0) const 717 { return _Base::find_first_of(__c, __pos); }
|
/prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/debug/ |
string | 698 find_first_of(const basic_string& __str, size_type __pos = 0) const 699 { return _Base::find_first_of(__str, __pos); } 702 find_first_of(const _CharT* __s, size_type __pos, size_type __n) const 705 return _Base::find_first_of(__s, __pos, __n); 709 find_first_of(const _CharT* __s, size_type __pos = 0) const 712 return _Base::find_first_of(__s, __pos); 716 find_first_of(_CharT __c, size_type __pos = 0) const 717 { return _Base::find_first_of(__c, __pos); }
|