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

1 2

  /build/kati/
string_piece.cc 122 size_type StringPiece::find_first_of(const StringPiece& s, function in class:StringPiece
129 return find_first_of(s.ptr_[0], pos);
string_piece.h 160 size_type find_first_of(const StringPiece& s, size_type pos = 0) const;
161 size_type find_first_of(char c, size_type pos = 0) const { function in class:StringPiece
  /external/llvm/include/llvm/ADT/
SmallString.h 177 size_t find_first_of(char C, size_t From = 0) const { function in class:llvm::SmallString
178 return str().find_first_of(C, From);
185 size_t find_first_of(StringRef Chars, size_t From = 0) const { function in class:llvm::SmallString
186 return str().find_first_of(Chars, From);
  /external/protobuf/src/google/protobuf/stubs/
stringpiece.cc 162 stringpiece_ssize_type StringPiece::find_first_of(StringPiece s, function in class:google::protobuf::StringPiece
168 if (s.length_ == 1) return find_first_of(s.ptr_[0], pos);
stringpiece.h 380 stringpiece_ssize_type find_first_of(StringPiece s, size_type pos = 0) const;
381 stringpiece_ssize_type find_first_of(char c, size_type pos = 0) const { function in class:google::protobuf::StringPiece
  /external/libchrome/base/strings/
string_piece.cc 200 size_t find_first_of(const StringPiece& self, function in namespace:base::internal
221 size_t find_first_of(const StringPiece16& self, function in namespace:base::internal
225 std::find_first_of(self.begin() + pos, self.end(), s.begin(), s.end());
string_piece.h 92 BASE_EXPORT size_t find_first_of(const StringPiece& self,
95 BASE_EXPORT size_t find_first_of(const StringPiece16& self,
316 // find_first_of: Find the first occurence of one of a set of characters.
317 size_type find_first_of(const BasicStringPiece& s, function in class:base::BasicStringPiece
319 return internal::find_first_of(*this, s, pos);
321 size_type find_first_of(value_type c, size_type pos = 0) const { function in class:base::BasicStringPiece
  /prebuilts/ndk/r10/sources/cxx-stl/stlport/stlport/stl/
_algo.h 136 inline _InputIter find_first_of(_InputIter __first1, _InputIter __last1, function
145 find_first_of(_InputIter __first1, _InputIter __last1, function
_string.c 482 basic_string<_CharT,_Traits,_Alloc> ::find_first_of(const _CharT* __s, size_type __pos, function in class:_Alloc
_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
  /prebuilts/ndk/r11/sources/cxx-stl/stlport/stlport/stl/
_algo.h 136 inline _InputIter find_first_of(_InputIter __first1, _InputIter __last1, function
145 find_first_of(_InputIter __first1, _InputIter __last1, function
_string.c 482 basic_string<_CharT,_Traits,_Alloc> ::find_first_of(const _CharT* __s, size_type __pos, function in class:_Alloc
_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
  /prebuilts/ndk/r13/sources/cxx-stl/stlport/stlport/stl/
_algo.h 136 inline _InputIter find_first_of(_InputIter __first1, _InputIter __last1, function
145 find_first_of(_InputIter __first1, _InputIter __last1, function
  /prebuilts/ndk/r10/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); }
  /prebuilts/ndk/r11/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); }
  /prebuilts/ndk/r13/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); }
  /prebuilts/ndk/r13/sources/third_party/shaderc/libshaderc_util/include/libshaderc_util/
string_piece.h 104 if (to_search.find_first_of(*it) == npos) {
121 size_t find_first_of(const string_piece& to_search, size_t pos = 0) const { function in class:shaderc_util::string_piece
135 // Returns find_first_of(str, pos) where str is a string_piece
137 size_t find_first_of(char to_search, size_t pos = 0) const { function in class:shaderc_util::string_piece
138 return find_first_of(string_piece(&to_search, &to_search + 1), pos);
153 if (to_search.find_first_of(*it) != npos) {
179 if (to_search.find_first_of(*it) == npos) {
196 if (chars_to_strip.find_first_of(*begin) == npos) break;
205 if (chars_to_strip.find_first_of(*(end - 1)) == npos) break;
285 return find_first_of(character, pos)
    [all...]
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
stringpiece.h 380 stringpiece_ssize_type find_first_of(StringPiece s, size_type pos = 0) const;
381 stringpiece_ssize_type find_first_of(char c, size_type pos = 0) const { function in class:google::protobuf::StringPiece
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.h 1719 find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:__versa_string
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/ext/
vstring.h 1719 find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:__versa_string
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/ext/
vstring.h 1719 find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:__versa_string
    [all...]
  /prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
vstring.h 1859 find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:__versa_string
    [all...]
  /prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
vstring.h 1859 find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:__versa_string
    [all...]
  /prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/ext/
vstring.h 1859 find_first_of(const _CharT* __s, size_type __pos = 0) const function in class:__versa_string
    [all...]

Completed in 1375 milliseconds

1 2