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

12 3 4 5 6 7 8 91011>>

  /sdk/emulator/opengl/host/tools/emugen/
strUtils.cpp 28 *last = str.find_first_of(delim, pos);
  /external/chromium_org/third_party/libjingle/source/talk/xmllite/
xmlprinter.cc 149 size_t unsafe = text.find_first_of("<>&\"", safe);
170 size_t unsafe = text.find_first_of("<>&", safe);
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 112 Str = Str.substr(Str.find_first_of('\n'));
133 size_t Next = Str.find_first_of(" \t\n\r,#[]");
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/strings/basic.string/string.ops/string_find.first.of/
char_size.pass.cpp 12 // size_type find_first_of(charT c, size_type pos = 0) const;
24 assert(s.find_first_of(c, pos) == x);
33 assert(s.find_first_of(c) == x);
  /external/chromium/chrome/browser/ui/webui/
screenshot_source.cc 76 std::string path = full_path.substr(0, full_path.find_first_of("?"));
  /external/chromium_org/chrome/browser/ui/omnibox/
location_bar_util.cc 22 const size_t ws_index = description.find_first_of(base::kWhitespaceUTF16);
  /external/chromium_org/third_party/WebKit/Source/platform/text/
BidiTestHarness.h 126 size_t pos = str.find_first_of(separators, lastPos); // find next space
131 pos = str.find_first_of(separators, lastPos);
233 size_t commentStart = line.find_first_of('#');
250 size_t seperatorIndex = line.find_first_of(';');
  /external/chromium_org/webkit/browser/database/
database_util.cc 80 pos = origin_identifier.find_first_of(forbidden, 0, arraysize(forbidden));
  /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/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/chromium_org/net/tools/tld_cleanup/
tld_cleanup_util.cc 160 line_end = data.find_first_of("\r\n", line_start);
165 line_end = data.find_first_of("\r\n \t", line_start);
214 line_start = data.find_first_of("\r\n", line_end);
  /external/chromium_org/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/llvm/unittests/ADT/
SmallStringTest.cpp 136 EXPECT_EQ(2U, theString.find_first_of('l'));
137 EXPECT_EQ(1U, theString.find_first_of("el"));
138 EXPECT_EQ(StringRef::npos, theString.find_first_of("xyz"));
  /external/chromium_org/chrome/browser/
process_singleton_win.cc 113 const std::wstring::size_type first_null = msg.find_first_of(L'\0');
127 msg.find_first_of(L'\0', first_null + 1);
140 msg.find_first_of(L'\0', second_null + 1);
  /external/chromium_org/chrome/browser/extensions/api/content_settings/
content_settings_helpers.cc 97 if (path.find_first_of("*?") != std::string::npos) {
  /external/chromium_org/chrome/browser/local_discovery/
privet_device_lister_impl.cc 44 size_t equals_pos = i->find_first_of('=');
  /external/chromium_org/chrome/browser/ui/
browser_window_state.cc 26 size_t num1_size = str.find_first_of(',');
  /external/chromium_org/native_client_sdk/src/examples/api/audio/
audio.cc 124 size_t sep_pos = message.find_first_of(kMessageArgumentSeparator);
  /external/chromium_org/net/dns/
dns_hosts.cc 88 pos_ = text_.find_first_of(" \t\n\r#", pos_);
  /external/chromium_org/webkit/common/database/
database_identifier.cc 62 size_t first_underscore = identifier.find_first_of('_');
  /external/oprofile/libutil++/
string_manip.cpp 36 string::size_type i = s.find_first_of(c);
  /frameworks/compile/mclinker/lib/LD/
GNUArchiveReader.cpp 177 size_t pos = name_field.find_first_of('/');
183 size_t end = name_field.find_first_of(" :");
191 end = name_field.find_first_of(' ', begin);
198 end = pArchiveRoot.getStrTable().find_first_of('\n', begin);
  /prebuilts/gcc/linux-x86/host/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,
  /prebuilts/ndk/9/sources/cxx-stl/gnu-libstdc++/4.8/include/parallel/
find_selectors.h 190 return std::make_pair(find_first_of(__begin1, __end1,

Completed in 361 milliseconds

12 3 4 5 6 7 8 91011>>