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

  /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/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/curl/lib/
http_proxy.c 244 char *line_start; local
247 line_start = ptr;
344 result = Curl_convert_from_network(data, line_start,
353 line_start, (size_t)perline, conn);
360 result = Curl_client_write(conn, writetype, line_start,
373 if(('\r' == line_start[0]) ||
374 ('\n' == line_start[0])) {
407 if(line_start[1] == '\n') {
410 line_start++;
416 r = Curl_httpchunk_read(conn, line_start+1
    [all...]
  /external/v8/test/cctest/heap/
test-mark-compact.cc 430 intptr_t line_start = 0; local
433 while (line_start < length) {
434 if (buffer[line_start] == '\n') {
435 line_start++;
438 intptr_t position = line_start;
468 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...]
  /toolchain/binutils/binutils-2.25/gas/config/
tc-z80.c 335 char c, *rest, *line_start; local
338 line_start = input_line_pointer;
360 if (line_start[-1] == '\n')
367 equals (line_start, len == 4);
374 input_line_pointer = line_start;
    [all...]

Completed in 1107 milliseconds