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

  /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 2652 milliseconds