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

  /external/toybox/toys/pending/
klogd.c 67 char *start, *line_start, msg_buffer[16348]; //LOG_LINE_LENGTH - Ring buffer size local
93 if ((line_start = strsep(&start, "\n")) != NULL && start != NULL) used = 0;
95 used = strlen(line_start);
96 strcpy(msg_buffer, line_start);
101 if (*line_start == '<') { //we have new line to syslog
102 line_start++;
103 if (line_start) prio = (int)strtoul(line_start, &line_start, 10);
104 if (*line_start == '>') line_start++
    [all...]
  /external/chromium-trace/catapult/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 114 if matcher.line_start and index > 0:
  /external/v8/test/mjsunit/regress/
regress-crbug-424142.js 30 var line_start = Debug.findScriptSourcePosition(script, line, 0); variable
33 script.id, line_start).actual_position;
36 assertTrue(line_start <= actual);
  /external/curl/lib/
http_proxy.c 259 char *line_start; local
262 line_start = ptr;
359 result = Curl_convert_from_network(data, line_start,
368 line_start, (size_t)perline, conn);
375 result = Curl_client_write(conn, writetype, line_start,
388 if(('\r' == line_start[0]) ||
389 ('\n' == line_start[0])) {
422 if(line_start[1] == '\n') {
425 line_start++;
431 r = Curl_httpchunk_read(conn, line_start+1
    [all...]
  /external/chromium-trace/catapult/third_party/py_vulcanize/third_party/rcssmin/bench/
cssmin.py 196 line_start = 0
199 if char == '}' and (i - line_start >= line_length):
200 lines.append(css[line_start:i + 1])
201 line_start = i + 1
203 if line_start < len(css):
204 lines.append(css[line_start:])
  /external/v8/test/cctest/heap/
test-mark-compact.cc 419 intptr_t line_start = 0; local
422 while (line_start < length) {
423 if (buffer[line_start] == '\n') {
424 line_start++;
427 intptr_t position = line_start;
457 line_start = position;
  /system/core/logwrapper/
logwrap.c 190 char *line_start; local
194 line_start = buf;
197 /* Found a line ending, print the line and compute new line_start */
201 do_log_line(log_info, line_start);
204 line_start = buf + i + 1;
207 do_log_line(log_info, line_start);
  /toolchain/binutils/binutils-2.25/gas/
macro.c 117 size_t line_start = ptr->len; local
131 size_t i = line_start;
168 i = line_start;
172 line_start = i;
210 ptr->len = line_start;
234 ptr->len = line_start;
240 line_start = ptr->len;
read.c 838 char *line_start = input_line_pointer;
861 equals (line_start,
881 line_label = colon (line_start);
883 line_label = symbol_create (line_start,
835 char *line_start = input_line_pointer; local
    [all...]
  /external/webrtc/talk/app/webrtc/
webrtcsdp.cc 346 // The line starting at |line_start| of |message| is the failing line.
350 size_t line_start,
353 // Get the first line of |message| from |line_start|.
355 size_t line_end = message.find(kNewLine, line_start);
360 first_line = message.substr(line_start, (line_end - line_start));
362 first_line = message.substr(line_start);
419 // The line starting at |line_start| of |message| is the failing line. The
424 size_t line_start,
430 return ParseFailed(message, line_start, description.str(), error)
    [all...]
peerconnection_unittest.cc 121 static void RemoveLinesFromSdp(const std::string& line_start,
125 while ((ssrc_pos = sdp->find(line_start, ssrc_pos)) !=
    [all...]
  /external/v8/src/debug/
debug.cc 2273 int line_start = local
    [all...]
  /external/v8/src/runtime/
runtime-debug.cc     [all...]
  /external/v8/src/
objects.h 6567 int line_start; \/\/ Position of first character in line. member in struct:v8::internal::KeyCollectionMode::Script::PositionInfo
    [all...]
objects.cc     [all...]
  /external/v8/test/cctest/
test-api.cc     [all...]

Completed in 1356 milliseconds