HomeSort by relevance Sort by last modified time
    Searched defs:last_line (Results 1 - 25 of 41) sorted by null

1 2

  /bionic/libc/bionic/
error.cpp 79 static unsigned int last_line; local
80 if (last_line == line && last_file != NULL && strcmp(last_file, file) == 0) {
84 last_line = line;
  /external/blktrace/
verify_blkparse.c 12 char line[256], last_line[256], *p; local
40 fprintf(stdout, "last: %s", last_line);
59 strcpy(last_line, line);
  /external/dtc/
srcpos.h 74 int last_line; member in struct:srcpos
86 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
90 (Current).first_line = (Current).last_line = \
91 YYRHSLOC(Rhs, 0).last_line; \
  /external/google-breakpad/src/common/
stabs_to_module.cc 183 vector<Module::Line>::iterator last_line = f->lines.end() - 1; local
185 line_it != last_line; line_it++)
188 last_line->size = (f->address + f->size) - last_line->address;
  /external/libvncserver/examples/
camera.c 79 static int last_line=0, fps=0, fcount=0; local
112 if (last_line > line) {
116 last_line = line;
  /external/swiftshader/src/OpenGL/compiler/
Common.h 29 int last_line; member in struct:TSourceLoc
glslang_tab.h 237 int last_line; member in struct:YYLTYPE
glslang_tab.cpp 324 int last_line; member in struct:YYLTYPE
349 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
353 (Current).first_line = YYRHSLOC(Rhs, 0).last_line; \
355 (Current).last_line = YYRHSLOC(Rhs, 0).last_line; \
    [all...]
  /external/flatbuffers/include/flatbuffers/
code_generators.h 127 const char *last_line; member in struct:flatbuffers::CommentConfig
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
peephole.c 308 int new_line, cum_orig_line, last_line, tabsiz; local
606 last_line = 0;
610 assert (new_line - last_line < 255);
611 lineno[i] =((unsigned char)(new_line - last_line));
612 last_line = new_line;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
peephole.c 319 int new_line, cum_orig_line, last_line, tabsiz; local
619 last_line = 0;
623 assert (new_line - last_line < 255);
624 lineno[i] =((unsigned char)(new_line - last_line));
625 last_line = new_line;
  /external/mesa3d/src/gallium/auxiliary/hud/
hud_private.h 66 unsigned last_line; /* index of the last describing line in the graph */ member in struct:hud_pane
hud_context.c 368 const unsigned last_line = pane->last_line; local
376 for (i = 0; i <= last_line; i++) {
379 pane->inner_height * (last_line - i) / last_line -
382 number_to_human_readable(pane->max_value * i / last_line,
421 for (i = 0; i <= last_line; i++) {
422 float y = round((pane->max_value * i / (double)last_line) *
720 pane->last_line = 5; /* lines in +1/5 increments */
723 pane->last_line = 8; /* lines in +1/4 increments. *
    [all...]
  /external/python/cpython2/Python/
peephole.c 308 int new_line, cum_orig_line, last_line, tabsiz; local
606 last_line = 0;
610 assert (new_line - last_line < 255);
611 lineno[i] =((unsigned char)(new_line - last_line));
612 last_line = new_line;
  /external/valgrind/exp-bbv/tests/amd64-linux/
ll.S 354 last_line: label
  /external/valgrind/exp-bbv/tests/arm-linux/
ll.S 234 last_line: label
  /external/mesa3d/src/mesa/program/
program_parser.h 232 int last_line; member in struct:YYLTYPE
  /external/mesa3d/src/compiler/glsl/glcpp/
glcpp.h 75 int last_line; member in struct:YYLTYPE
88 (Current).last_line = YYRHSLOC(Rhs, N).last_line; \
93 (Current).first_line = (Current).last_line = \
94 YYRHSLOC(Rhs, 0).last_line; \
  /external/python/cpython3/Python/
traceback.c 422 int last_line = -1; local
435 last_line != -1 && tb->tb_lineno == last_line &&
447 last_line = tb->tb_lineno;
  /external/mksh/src/
histrap.c 357 static int last_line = -1; local
360 if (histptr >= history && last_line != hist_source->line) {
364 last_line = hist_source->line;
    [all...]
  /external/protobuf/src/google/protobuf/compiler/objectivec/
objectivec_helpers.cc 850 int last_line() const { return line_; } function in class:google::protobuf::compiler::objectivec::__anon32311::Parser
979 " Line " + SimpleItoa(parser.last_line()) + ", " + parser.error_str();
    [all...]
  /system/core/logcat/tests/
logcat_test.cpp 938 char* last_line = local
950 second_last_line = last_line;
951 last_line = line;
958 second_last_line = last_line;
959 last_line = NULL;
961 free(last_line);
    [all...]
  /toolchain/binutils/binutils-2.27/gas/
listing.c 299 static unsigned int last_line = 0xffff; local
330 if (line == last_line
397 last_line = line;
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/parser/
Parser.java 24 private int last_line; field in class:Parser
127 this.last_line = this.lexer.peek().getLine();
864 "[" + this.last_line + "," + this.last_pos + "] " +
    [all...]
  /external/mesa3d/src/compiler/glsl/
ast.h 82 locp.last_line = this->location.last_line;
98 this->location.last_line = locp.last_line;
111 this->location.last_line = end.last_line;
123 unsigned last_line; /**< Last line number within the source string. */ member in struct:ast_node::__anon29167
    [all...]

Completed in 865 milliseconds

1 2