HomeSort by relevance Sort by last modified time
    Searched defs:line_start (Results 1 - 20 of 20) 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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Parser/
tokenizer.h 48 const char* line_start; /* pointer to start of current line */ member in struct:tok_state
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Parser/
tokenizer.h 48 const char* line_start; /* pointer to start of current line */ member in struct:tok_state
  /external/python/cpython2/Parser/
tokenizer.h 48 const char* line_start; /* pointer to start of current line */ member in struct:tok_state
  /external/python/cpython3/Parser/
tokenizer.h 57 const char* line_start; /* pointer to start of current line */ member in struct:tok_state
  /external/skqp/modules/skottie/src/
SkottieAdapter.cpp 342 const char* line_start = ptr; local
347 push_line(line_start, ptr - 1);
348 line_start = ptr;
351 push_line(line_start, ptr);
  /external/tensorflow/tensorflow/compiler/xla/service/
hlo_lexer.cc 425 size_t line_start = local
427 const char* start = line_start == absl::string_view::npos
429 : buf_.begin() + line_start + 1;
  /external/v8/src/objects/
script.h 142 PositionInfo() : line(-1), column(-1), line_start(-1), line_end(-1) {}
146 int line_start; // Position of first character in line. member in struct:v8::internal::Script::PositionInfo
  /development/vndk/tools/header-checker/src/repr/json/
ir_dumper.cpp 381 size_t line_start = 0; local
382 while (line_start < output_string.size()) {
383 size_t trailing_space_start = line_start;
385 for (index = line_start;
393 if (trailing_space_start != line_start) {
394 output_file.write(output_string.data() + line_start,
395 trailing_space_start - line_start);
398 line_start = index + 1;
  /external/skia/modules/skottie/src/
SkottieAdapter.cpp 472 const char* line_start = ptr; local
477 push_line(line_start, ptr - 1);
478 line_start = ptr;
481 push_line(line_start, ptr);
  /device/google/bonito/sdm710/kernel-headers/media/
cam_isp.h 118 uint32_t line_start; member in struct:cam_isp_in_port_info
  /device/google/bonito/sdm710/original-kernel-headers/media/
cam_isp.h 173 * @line_start: top of the line number
201 uint32_t line_start; member in struct:cam_isp_in_port_info
  /device/google/crosshatch/sdm845/kernel-headers/media/
cam_isp.h 118 uint32_t line_start; member in struct:cam_isp_in_port_info
  /device/google/crosshatch/sdm845/original-kernel-headers/media/
cam_isp.h 173 * @line_start: top of the line number
201 uint32_t line_start; member in struct:cam_isp_in_port_info
  /external/pdfium/xfa/fde/
cfde_texteditengine.cpp 439 size_t line_start = GetIndexAtStartOfLine(pos); local
440 if (line_start == 0)
444 size_t dist = pos - line_start;
449 --line_start;
450 ch = GetChar(line_start);
451 } while (line_start != 0 && (ch == '\r' || ch == '\n'));
453 if (line_start == 0)
457 size_t prior_start = GetIndexAtStartOfLine(line_start);
461 if (prior_start + dist > line_start)
462 return GetIndexAtEndOfLine(line_start);
    [all...]
  /external/v8/src/debug/
debug.cc 1989 int line_start = line == 0 ? 0 : Smi::ToInt(line_ends->get(line - 1)) + 1; local
    [all...]
  /external/epid-sdk/ext/argtable3/
argtable3.c 4877 unsigned line_start = 0; local
    [all...]
  /external/python/cpython3/Modules/
_pickle.c 1355 char *line_start = self->input_buffer + self->next_read_idx; local
    [all...]
  /external/curl/lib/
urldata.h 766 char *line_start; member in struct:http_connect_state
    [all...]
  /external/v8/src/
objects.cc 13636 int line_start = 0; local
    [all...]

Completed in 2060 milliseconds