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

1 2 3

  /external/chromium/base/
sys_info_chromeos.cc 50 size_t start_index = lsb_release.find_first_of('=', version_key_index);
52 size_t length = lsb_release.find_first_of('\n', start_index) - start_index;
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...]
string_split.cc 19 size_t end_key_pos = line.find_first_of(key_value_delimiter);
shared_memory_posix.cc 128 DCHECK(memname.find_first_of(L"/") == std::string::npos);
129 DCHECK(memname.find_first_of(L"\0") == std::string::npos);
string_piece.cc 102 size_type StringPiece::find_first_of(const StringPiece& s, function in class:base::StringPiece
109 return find_first_of(s.ptr_[0], pos);
string_piece.h 145 size_type find_first_of(const StringPiece& s, size_type pos = 0) const;
146 size_type find_first_of(char c, size_type pos = 0) const { function in class:base::StringPiece
  /external/chromium/net/tools/flip_server/
url_utilities.h 20 size_t next_slash = url.find_first_of('/', b);
21 size_t next_colon = url.find_first_of(':', b);
loadtime_measurement.h 52 size_t b = action.find_first_of('=');
105 size_t e = str.find_first_of(sepa, b);
109 e = str.find_first_of(sepa, b);
  /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/protobuf/src/google/protobuf/compiler/
code_generator.cc 60 string::size_type equals_pos = parts[i].find_first_of('=');
command_line_interface.cc 533 data_.find_first_of('\n', data_pos) + 1 - data_pos;
875 int equals_pos = parts[i].find_first_of('=');
983 string::size_type equals_pos = value.find_first_of('=');
    [all...]
  /external/chromium/net/tools/tld_cleanup/
tld_cleanup.cc 185 line_end = data.find_first_of("\r\n", line_start);
190 line_end = data.find_first_of("\r\n \t", line_start);
218 line_start = data.find_first_of("\r\n", line_end);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
find_selectors.h 187 { return std::make_pair(find_first_of(begin1, end1, begin, end, pred,
  /external/chromium/net/http/
http_util.cc 33 size_t end = line.find_first_of(set, start + 1);
63 size_t cur_delim_pos = line.find_first_of(delim_str, search_start);
98 size_t type_end = content_type_str.find_first_of(HTTP_LWS ";(", type_val);
107 size_t param_start = content_type_str.find_first_of(';', type_end);
145 charset_end = std::min(content_type_str.find_first_of(HTTP_LWS ";(",
160 content_type_str.find_first_of('/') != string::npos) {
489 size_t i = base::StringPiece(begin, end - begin).find_first_of("\r\n");
  /external/astl/tests/
test_string.cpp 1002 EXPECT_TRUE(s.find_first_of('a') == string::npos);
1004 EXPECT_TRUE(s.find_first_of('a') == 0);
1005 EXPECT_TRUE(s.find_first_of('a', 0) == 0);
1006 EXPECT_TRUE(s.find_first_of('a', 1) == 3);
1007 EXPECT_TRUE(s.find_first_of('a', 8) == 10);
1009 EXPECT_TRUE(s.find_first_of('a') == 7);
1010 EXPECT_TRUE(s.find_first_of('a', 8) == string::npos); // out of bound
1012 // For char (set of size 1) find_first_of is equive to find(char, pos)
  /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
_string.h 976 size_type find_first_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string
979 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:basic_string
984 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:basic_string
    [all...]
  /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
_string.h 976 size_type find_first_of(const _Self& __s, size_type __pos = 0) const function in class:basic_string
979 size_type find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:basic_string
984 size_type find_first_of(_CharT __c, size_type __pos = 0) const function in class:basic_string
    [all...]
  /external/astl/include/
string 276 return find_first_of(c, pos);
298 size_type find_first_of(value_type c, size_type pos = 0) const;
  /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); }
  /external/protobuf/src/google/protobuf/compiler/cpp/
cpp_helpers.cc 279 if (float_value.find_first_of(".eE") != string::npos) {

Completed in 434 milliseconds

1 2 3