HomeSort by relevance Sort by last modified time
    Searched full:find_first_of (Results 26 - 50 of 168) sorted by null

12 3 4 5 6 7

  /prebuilt/ndk/android-ndk-r6/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); }
  /external/chromium/net/http/
http_util.cc 34 size_t end = line.find_first_of(set, start + 1);
64 size_t cur_delim_pos = line.find_first_of(delim_str, search_start);
99 size_t type_end = content_type_str.find_first_of(HTTP_LWS ";(", type_val);
108 size_t param_start = content_type_str.find_first_of(';', type_end);
147 charset_end = std::min(content_type_str.find_first_of(HTTP_LWS ";(",
162 content_type_str.find_first_of('/') != string::npos) {
497 size_t i = base::StringPiece(begin, end - begin).find_first_of("\r\n");
  /external/valgrind/tsan/
ts_util.cc 242 size_t next_brace = fname.find_first_of("<>", read_pointer);
328 if (fname.find_first_of("(") == fname.npos)
339 DCHECK(fname.find_first_of(")") != fname.npos);
340 DCHECK(fname.find_first_of(")") > first_parenthesis);
356 size_t next_brace = fname.find_first_of("()", read_pointer);
404 space_or_tick = ret.find_first_of("` ");
423 if (demangled.find_first_of("<>()") == demangled.npos) {
suppressions.cc 200 PARSER_CHECK(s2.find_first_of("()") == string::npos ||
203 PARSER_CHECK(s2.find_first_of("<>") == string::npos,
  /external/chromium/chrome/browser/
process_singleton_win.cc 235 const std::wstring::size_type first_null = msg.find_first_of(L'\0');
249 msg.find_first_of(L'\0', first_null + 1);
262 msg.find_first_of(L'\0', second_null + 1);
  /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);
  /external/llvm/unittests/ADT/
StringRefTest.cpp 262 EXPECT_EQ(2U, Str.find_first_of('l'));
263 EXPECT_EQ(1U, Str.find_first_of("el"));
264 EXPECT_EQ(StringRef::npos, Str.find_first_of("xyz"));
  /external/chromium/chrome/browser/ui/webui/
screenshot_source.cc 76 std::string path = full_path.substr(0, full_path.find_first_of("?"));
  /external/oprofile/libutil++/
file_manip.cpp 152 if (result.find_first_of('/') == string::npos)
string_manip.cpp 36 string::size_type i = s.find_first_of(c);
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/
algorithmfwd.h 59 find_first_of
260 // find_first_of
605 find_first_of(_FIter1, _FIter1, _FIter2, _FIter2);
609 find_first_of(_FIter1, _FIter1, _FIter2, _FIter2, _BinaryPredicate);
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 59 find_first_of
260 // find_first_of
605 find_first_of(_FIter1, _FIter1, _FIter2, _FIter2);
609 find_first_of(_FIter1, _FIter1, _FIter2, _FIter2, _BinaryPredicate);
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/gnu-libstdc++/include/bits/
algorithmfwd.h 59 find_first_of
260 // find_first_of
605 find_first_of(_FIter1, _FIter1, _FIter2, _FIter2);
609 find_first_of(_FIter1, _FIter1, _FIter2, _FIter2, _BinaryPredicate);
  /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.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.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...]
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_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...]
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_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/llvm/utils/TableGen/
CodeGenInstruction.cpp 163 std::string::size_type DotIdx = OpName.find_first_of(".");
200 std::string::size_type wpos = CStr.find_first_of(" \t");
220 std::string::size_type pos = CStr.find_first_of('=');
226 wpos = Name.find_first_of(" \t");
259 eidx = CStr.find_first_of(delims, bidx);
  /external/llvm/lib/Target/
Mangler.cpp 137 Name.find_first_of("\n\"") == StringRef::npos)) {
149 assert(Name.find_first_of("\n\"") != StringRef::npos);
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 115 Str = Str.substr(Str.find_first_of('\n'));
123 size_t Next = Str.find_first_of(" \t\n\r#");
  /external/chromium/base/
string_split.cc 68 size_t end_key_pos = line.find_first_of(key_value_delimiter);
vlog.cc 34 std::string::size_type first_slash = pattern.find_first_of("\\/");
  /external/chromium/chrome/browser/debugger/
devtools_remote_listen_socket.cc 168 std::string::size_type colon_pos = protocol_field_.find_first_of(":");
  /external/collada/src/dae/
daeUtils.cpp 71 (nextTokenIndex = s.find_first_of(separators, currentIndex)) != string::npos) {

Completed in 723 milliseconds

12 3 4 5 6 7