HomeSort by relevance Sort by last modified time
    Searched full:line_start (Results 1 - 25 of 29) sorted by null

1 2

  /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/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);
  /dalvik/dx/tests/078-dex-local-variable-table/
expected.txt 9 line_start: 1
26 line_start: 1
43 line_start: 1
67 line_start: 1
95 line_start: 1
123 line_start: 1
146 line_start: 1
162 line_start: 1
178 line_start: 1
194 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/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...]
  /dalvik/dx/tests/121-sccp/
expected.txt 16 line_start: 114
47 line_start: 141
68 line_start: 152
92 line_start: 130
114 line_start: 159
139 line_start: 60
170 line_start: 87
191 line_start: 98
215 line_start: 76
237 line_start: 10
    [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:])
  /sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/
ScreenViewer.java 199 GridBagConstraints.LINE_START, GridBagConstraints.NONE,
372 GridBagConstraints.LINE_START, GridBagConstraints.NONE,
378 GridBagConstraints.LINE_START, GridBagConstraints.NONE,
384 GridBagConstraints.LINE_START, GridBagConstraints.NONE,
388 GridBagConstraints.LINE_START, GridBagConstraints.NONE,
394 GridBagConstraints.LINE_START, GridBagConstraints.NONE,
398 GridBagConstraints.LINE_START, GridBagConstraints.NONE,
404 GridBagConstraints.LINE_START, GridBagConstraints.NONE,
408 GridBagConstraints.LINE_START, GridBagConstraints.NONE,
414 GridBagConstraints.LINE_START, GridBagConstraints.NONE
    [all...]
Workspace.java 266 GridBagConstraints.LINE_START, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0),
279 GridBagConstraints.LINE_START, GridBagConstraints.BOTH, new Insets(0, 0, 0, 0),
420 statusPanel.add(leftSide, BorderLayout.LINE_START);
    [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);
  /dalvik/dx/tests/069-dex-source-position/
expected.txt 70 line_start: 20
120 line_start: 20
  /dalvik/dx/tests/079-dex-local-variable-renumbering/
expected.txt 45 line_start: 1
  /external/libgdx/tests/gdx-tests-lwjgl/src/com/badlogic/gdx/tests/lwjgl/
SwingLwjglTest.java 54 container.add(canvas1.getCanvas(), BorderLayout.LINE_START);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/raw/
DebugInfoItem.java 56 out.annotateTo(reader.getOffset(), "line_start = %d", lineStart);
  /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...]
  /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...]
  /dalvik/dx/tests/122-switch-with-high-register/
expected.txt 285 line_start: 9
843 line_start: 9
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
DebugInfoEncoder.java 382 annotate(output.getCursor() - mark, "line_start: " + line);
  /dalvik/dx/src/com/android/dx/dex/file/
DebugInfoEncoder.java 390 annotate(output.getCursor() - mark, "line_start: " + line);
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
DebugInfoEncoder.java 382 annotate(output.getCursor() - mark, "line_start: " + line);

Completed in 1921 milliseconds

1 2