HomeSort by relevance Sort by last modified time
    Searched refs:begin_index (Results 1 - 3 of 3) sorted by null

  /external/chromium/googleurl/src/
url_file.h 55 inline int FindNextSlash(const CHAR* spec, int begin_index, int spec_len) {
56 int idx = begin_index;
  /external/chromium/net/base/
telnet_server.cc 112 int begin_index = 0; local
118 ListenSocket::SendInternal(data + begin_index, i - begin_index);
122 begin_index = i + 1;
127 ListenSocket::SendInternal(data + begin_index, len - begin_index);
  /external/protobuf/src/google/protobuf/stubs/
strutil.cc 172 string::size_type begin_index, end_index; local
173 begin_index = full.find_first_not_of(delim);
174 while (begin_index != string::npos) {
175 end_index = full.find_first_of(delim, begin_index);
177 *result++ = full.substr(begin_index);
180 *result++ = full.substr(begin_index, (end_index - begin_index));
181 begin_index = full.find_first_not_of(delim, end_index);
    [all...]

Completed in 46 milliseconds