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

  /external/chromium/net/tools/tld_cleanup/
tld_cleanup.cc 176 size_t line_start = 0; local
180 while (line_start < data.size()) {
182 if (line_start + 1 < data.size() &&
183 data[line_start] == '/' &&
184 data[line_start + 1] == '/') {
185 line_end = data.find_first_of("\r\n", line_start);
190 line_end = data.find_first_of("\r\n \t", line_start);
193 domain.assign(data.data(), line_start, line_end - line_start);
218 line_start = data.find_first_of("\r\n", line_end)
    [all...]
  /external/chromium/net/base/
ssl_false_start_blacklist_process.cc 165 off_t line_start = 0; local
171 long len = i - line_start;
174 hosts.push_back(std::string(&buffer[line_start], len));
178 line_start = i + 1;
182 if (i == line_start && buffer[i] == '#')
sdch_manager.cc 388 size_t line_start = 0; // Start of line being parsed. local
390 size_t line_end = dictionary_text.find('\n', line_start);
394 size_t colon_index = dictionary_text.find(':', line_start);
408 std::string name(dictionary_text, line_start, colon_index - line_start);
432 line_start = line_end + 1;
  /external/chromium/chrome/browser/extensions/
user_script_master.cc 55 size_t line_start = 0; local
56 size_t line_end = line_start;
72 while (line_start < script_text.length()) {
73 line_end = script_text.find('\n', line_start);
79 line.set(script_text.data() + line_start, line_end - line_start);
124 line_start = line_end + 1;
  /external/v8/test/cctest/
test-mark-compact.cc 482 intptr_t line_start = 0; local
485 while (line_start < length) {
486 if (buffer[line_start] == '\n') {
487 line_start++;
490 intptr_t position = line_start;
520 line_start = position;
  /external/bluetooth/glib/glib/
gkeyfile.c 737 gchar *line_start; local
742 line_start = (gchar *) line;
743 while (g_ascii_isspace (*line_start))
744 line_start++;
746 if (g_key_file_line_is_comment (line_start))
748 else if (g_key_file_line_is_group (line_start))
749 g_key_file_parse_group (key_file, line_start,
750 length - (line_start - line),
752 else if (g_key_file_line_is_key_value_pair (line_start))
753 g_key_file_parse_key_value_pair (key_file, line_start,
    [all...]

Completed in 856 milliseconds