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

1 23 4 5 6 7

  /external/llvm/include/llvm/ADT/
StringRef.h 250 /// find_first_of - Find the first character in the string that is \arg C,
252 size_type find_first_of(char C, size_t From = 0) const {
256 /// find_first_of - Find the first character in the string that is in \arg
260 size_type find_first_of(StringRef Chars, size_t From = 0) const;
  /external/llvm/lib/Support/
PathV2.cpp 58 size_t end = path.find_first_of(separators, 2);
73 size_t end = path.find_first_of(separators, 2);
120 return str.find_first_of(separators, 2);
216 size_t end_pos = Path.find_first_of(separators, Position);
StringExtras.cpp 44 StringRef::size_type End = Source.find_first_of(Delimiters, Start);
StringRef.cpp 195 /// find_first_of - Find the first character in the string that is in \arg
199 StringRef::size_type StringRef::find_first_of(StringRef Chars,
  /prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/parallel/
algorithmfwd.h 174 find_first_of(_IIter, _IIter, _FIter, _FIter,
179 find_first_of(_IIter, _IIter, _FIter, _FIter, _BiPredicate,
184 find_first_of(_IIter, _IIter, _FIter, _FIter, _BiPredicate);
188 find_first_of(_IIter, _IIter, _FIter, _FIter);
find_selectors.h 187 { return std::make_pair(find_first_of(begin1, end1, begin, end, pred,
algo.h 213 find_first_of(InputIterator begin1, InputIterator end1, function in namespace:std::__parallel
216 { return _GLIBCXX_STD_P::find_first_of(begin1, end1, begin2, end2); }
222 find_first_of(InputIterator begin1, InputIterator end1, function in namespace:std::__parallel
225 { return _GLIBCXX_STD_P::find_first_of(begin1, end1, begin2, end2, comp); }
234 { return find_first_of(begin1, end1, begin2, end2,
261 { return find_first_of(begin1, end1, begin2, end2, comp,
268 find_first_of(InputIterator begin1, InputIterator end1, function in namespace:std::__parallel
284 find_first_of(InputIterator begin1, InputIterator end1, function in namespace:std::__parallel
292 return find_first_of(begin1, end1, begin2, end2, __gnu_parallel::
    [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/chromium/chrome/browser/importer/
firefox_importer_utils.cc 332 size_t seperator = home_page_list.find_first_of('|');
346 size_t seperator = default_homepages.find_first_of('|');
  /external/chromium/net/websockets/
websocket_handshake_handler.cc 23 size_t i = base::StringPiece(handshake_message, len).find_first_of("\r\n");
195 status_line_.data(), status_line_.size()).find_first_of(" ");
  /external/chromium/net/tools/flip_server/
mem_cache.cc 203 filename_stripped.find_first_of('/'));
  /external/chromium/third_party/libjingle/source/talk/p2p/client/
httpportallocator.cc 68 end_of_line = string.find_first_of("\r\n", start_of_line);
  /external/llvm/utils/TableGen/
AsmWriterInst.cpp 67 AsmString.find_first_of("$\\", LastEmitted);
  /external/webkit/Tools/DumpRenderTree/chromium/
DumpRenderTree.cpp 88 separatorPosition = timeOut.find_first_of(' ');
  /external/chromium/base/
string_util.cc 177 found = output->find_first_of(remove_chars);
181 found = output->find_first_of(remove_chars, found);
769 typename STR::size_type end = str.find_first_of(delimiters, start + 1);
    [all...]
  /development/tools/a3dconvert/
ObjLoader.cpp 86 size_t firstSeparator = mRawFaces[i].find_first_of(slash);
  /external/chromium/chrome/browser/tab_contents/
web_drag_dest_gtk.cc 196 size_t split = netscape_url.find_first_of('\n');
  /external/icu4c/test/perf/ustrperf/
stringperf.h 545 scan_idx = (int) sScan_STRING.find_first_of(L"sm");
  /external/protobuf/src/google/protobuf/compiler/
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/stlport/stlport/stl/
_algobase.c 346 // find_first_of, with and without an explicitly supplied comparison function.
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
SymbolTable.h 151 return TString(mangledName.c_str(), mangledName.find_first_of('('));
  /ndk/sources/cxx-stl/stlport/stlport/stl/
_algobase.c 346 // find_first_of, with and without an explicitly supplied comparison function.
  /prebuilt/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
_algobase.c 346 // find_first_of, with and without an explicitly supplied comparison function.
  /prebuilt/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
_algobase.c 346 // find_first_of, with and without an explicitly supplied comparison function.
  /external/chromium/chrome/common/extensions/
extension_file_util.cc 495 // to cheat with find_first_of and match all.
507 if (filename.find_first_of(FILE_PATH_LITERAL("_")) != 0) continue;

Completed in 1200 milliseconds

1 23 4 5 6 7