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

  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
matcher.py 46 def __init__(self, regex, token_type, result_mode=None, line_start=False):
54 line_start: Whether this matcher should only match string at the start
60 self.line_start = line_start
tokenizer.py 113 if matcher.line_start and index > 0:
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
matcher.py 46 def __init__(self, regex, token_type, result_mode=None, line_start=False):
54 line_start: Whether this matcher should only match string at the start
60 self.line_start = line_start
tokenizer.py 113 if matcher.line_start and index > 0:
  /external/chromium_org/net/tools/tld_cleanup/
tld_cleanup_util.cc 139 size_t line_start = 0; local
145 while (line_start < data.size()) {
146 if (line_start + begin_private_length < data.size() &&
147 !data.compare(line_start, begin_private_length,
150 line_end = line_start + begin_private_length;
151 } else if (line_start + end_private_length < data.size() &&
152 !data.compare(line_start, end_private_length,
155 line_end = line_start + end_private_length;
156 } else if (line_start + 1 < data.size() &&
157 data[line_start] == '/' &
    [all...]
  /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_org/webkit/browser/appcache/
manifest_parser.cc 149 const wchar_t* line_start = p; local
156 if (*line_start == '#')
161 while (tmp > line_start && (*tmp == ' ' || *tmp == '\t'))
164 std::wstring line(line_start, tmp - line_start + 1);
  /external/chromium_org/chrome/browser/extensions/
PRESUBMIT.py 138 """Returns a list of triplet (line_start, line_end, line_text) of ranges of
139 edits changes. The |line_text| part is the text at line |line_start|.
251 for line_start, line_end, line_text in \
265 % (line_start, line_end, is_valid_edit))
274 "entry." % (line_start, line_end),
275 line_start,
user_script_master.cc 67 size_t line_start = 0; local
68 size_t line_end = line_start;
86 while (line_start < script_text.length()) {
87 line_end = script_text.find('\n', line_start);
93 line.set(script_text.data() + line_start, line_end - line_start);
146 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/chromium_org/net/base/
sdch_manager.cc 400 size_t line_start = 0; // Start of line being parsed. local
402 size_t line_end = dictionary_text.find('\n', line_start);
406 size_t colon_index = dictionary_text.find(':', line_start);
420 std::string name(dictionary_text, line_start, colon_index - line_start);
444 line_start = line_end + 1;
  /system/core/logwrapper/
logwrap.c 193 char *line_start; local
198 line_start = buf;
201 /* Found a line ending, print the line and compute new line_start */
205 do_log_line(log_info, line_start);
208 line_start = buf + i + 1;
211 do_log_line(log_info, line_start);
  /external/chromium_org/v8/test/cctest/
test-mark-compact.cc 495 intptr_t line_start = 0; local
498 while (line_start < length) {
499 if (buffer[line_start] == '\n') {
500 line_start++;
503 intptr_t position = line_start;
533 line_start = position;
  /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/chromium_org/third_party/tcmalloc/chromium/src/tests/
profiledata_unittest.cc 256 char* line_start = filedata.get() + cur_offset; local
260 char* line_end = strchr(line_start, '\n');
266 char* line_cur = line_start;
310 cur_offset += (line_end - line_start) + 1;
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
profiledata_unittest.cc 256 char* line_start = filedata.get() + cur_offset; local
260 char* line_end = strchr(line_start, '\n');
266 char* line_cur = line_start;
310 cur_offset += (line_end - line_start) + 1;
  /external/chromium_org/ui/base/clipboard/
clipboard_util_win.cc 467 size_t line_start = cf_html.find(src_url_str); local
468 if (line_start != std::string::npos) {
469 size_t src_end = cf_html.find("\n", line_start);
470 size_t src_start = line_start + src_url_str.length();
  /external/chromium_org/third_party/libjingle/source/talk/app/webrtc/
webrtcsdp.cc 330 // The line starting at |line_start| of |message| is the failing line.
334 size_t line_start,
337 // Get the first line of |message| from |line_start|.
339 size_t line_end = message.find(kNewLine, line_start);
344 first_line = message.substr(line_start, (line_end - line_start));
401 // The line starting at |line_start| of |message| is the failing line. The
406 size_t line_start,
412 return ParseFailed(message, line_start, description.str(), error);
489 size_t line_start) {
    [all...]
peerconnection_unittest.cc 95 static void RemoveLinesFromSdp(const std::string& line_start,
99 while ((ssrc_pos = sdp->find(line_start, ssrc_pos)) !=
    [all...]

Completed in 775 milliseconds