HomeSort by relevance Sort by last modified time
    Searched defs:line (Results 76 - 100 of 2369) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/framework/
StreamRedirector.java 65 String line = ""; local
68 line = br.readLine();
69 if (line == null)
72 logWriter.println(name + "> " + line);
  /external/bison/src/
location.h 31 /* If nonnegative, the (origin-1) line that contains the boundary.
32 If this is INT_MAX, the line number has overflowed.
36 int line; member in struct:__anon4729
54 b->line = l;
65 res = a.line - b.line;
76 && a.line == b.line
109 /* Output to OUT the line and caret corresponding to location LOC. */
123 /* LOC_STR must be formatted as `file:line.column', it will be modified. *
    [all...]
  /external/blktrace/btt/
devmap.c 31 static int dev_map_add(char *line)
35 if (strstr(line, "Device") != NULL)
39 if (sscanf(line, "%s %s", dmp->device, dmp->devno) != 2) {
66 char line[256]; local
74 while (fscanf(fp, "%255[a-zA-Z0-9 :.,/_-]\n", line) == 1) {
75 if (dev_map_add(line))
  /external/blktrace/
verify_blkparse.c 12 char line[256], last_line[256], *p; local
35 while ((p = fgets(line, sizeof(line), f)) != NULL) {
59 strcpy(last_line, line);
  /external/clang/test/Analysis/
taint-tester.cpp 19 char *line = 0; local
24 while ((read = T.getline(&line, &len, stdin)) != -1) {
25 printf("%s", line); // no warning
27 free(line);
  /external/compiler-rt/lib/asan/scripts/
symbolize.py 25 address often belongs to the next source code line, or even to a different
42 for line in readelf_pipe.stdout:
43 if ('LOAD' in line) and (' E ' in line):
44 match = re.match(r'\s*LOAD\s+0x[01-9a-zA-Z]+\s+(0x[01-9a-zA-Z]+)', line, re.UNICODE)
61 def symbolize_addr2line(line, binary_prefix, paths_to_cut):
64 line = re.sub(r'^.*?: ', '', line)
66 match = re.match(r'^(\s*#)([0-9]+) *(0x[0-9a-f]+) *\((.*)\+(0x[0-9a-f]+)\)', line, re.UNICODE)
78 print line.rstrip().encode('utf-8'
123 line = line.decode('utf-8') variable
    [all...]
  /external/compiler-rt/lib/tsan/rtl/
tsan_symbolize.cc 44 int *line, int *col)
50 int *line, int *col) {
61 int line, col; local
64 sizeof(file_buf), &line, &col)) {
67 frame->info.line = line;
  /external/dhcpcd/
duid.c 52 char *line; local
57 while ((line = get_line(f))) {
58 len = hwaddr_aton(NULL, line);
60 hwaddr_aton(duid, line);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/builderTemplate/publishingFiles/staticDropFiles/
buildNotes.php 47 $line = "<td>Component: <a href=\"buildnotes/$anEntry\">$component</a></td>"; variable
49 echo "$line";
consoleLogs.php 56 $line = "<td>Component: <a href=\"testresults/consolelogs/$anEntry\">$anEntry</a></td>"; variable
58 echo "$line";
  /external/google-breakpad/src/client/linux/minidump_writer/
proc_cpuinfo_reader.h 53 // Returns true on success, or false on EOF or error (line too long).
56 const char* line; local
59 // Try to read next line.
65 if (!line_reader_.GetNextLine(&line, &line_len))
70 const char* line_end = line + line_len;
77 char* sep = static_cast<char*>(my_memchr(line, ':', line_len));
92 while (sep > line && my_isspace(sep[-1]))
95 if (sep == line)
101 *field = line;
  /external/google-breakpad/src/common/
dwarf_line_to_module.cc 92 fprintf(stderr, "warning: DWARF line number data refers to undefined"
116 // Should we omit this line? (See the comments for omitted_line_end_.)
128 fprintf(stderr, "warning: DWARF line number data refers to "
134 Module::Line line; local
135 line.address = address;
136 // We set the size when we get the next line or the EndSequence call.
137 line.size = length;
138 line.file = file;
139 line.number = line_num
    [all...]
stabs_to_module_unittest.cc 48 // one line.
52 EXPECT_TRUE(h.Line(0xfde4abbed390c394LL, "source-file-name", 174823314));
70 Module::Line *line = &function->lines[0]; local
71 EXPECT_EQ(0xfde4abbed390c394LL, line->address);
72 EXPECT_EQ(0x10U, line->size); // derived from EndFunction
73 EXPECT_TRUE(line->file == file);
74 EXPECT_EQ(174823314, line->number);
143 // one line.
147 EXPECT_TRUE(h.Line(0xb4513962eff94e92LL, "source-file-name-1", 77396614))
    [all...]
  /external/harfbuzz_ng/util/
view-cairo.cc 41 helper_cairo_line_t &line = g_array_index (lines, helper_cairo_line_t, i); local
43 line.get_advance (&x_advance, &y_advance);
  /external/icu/icu4c/source/tools/toolutil/
pkg_icu.cpp 77 char line[1024]; local
88 while(fgets(line, sizeof(line), file)) {
90 end=strchr(line, '#');
95 end=strchr(line, 0);
96 while(line<end && (*(end-1)=='\r' || *(end-1)=='\n')) {
104 start=u_skipWhitespace(line);
109 // take whitespace-separated items from the line
111 // find whitespace after the item or the end of the line
114 // this item is the last one on the line
    [all...]
  /external/icu/icu4j/main/tests/translit/src/com/ibm/icu/dev/util/
FileUtilities.java 36 String line = br.readLine(); local
37 if (line == null) break;
40 line = replace(line, replacementList[i], replacementList[i+1]);
43 output.println(line);
  /external/jmonkeyengine/engine/src/core/com/jme3/util/blockparser/
Statement.java 9 private String line; field in class:Statement
12 Statement(int lineNumber, String line) {
14 this.line = line;
29 return line;
43 sb.append(line);
  /external/jsilver/src/com/google/clearsilver/jsilver/exceptions/
JSilverBadSyntaxException.java 26 private final int line; field in class:JSilverBadSyntaxException
31 * Signifies line or column is not known.
39 * @param lineContent content of a line where error occurred (can be null)
41 * @param line number of a line in {@code resourceName} where error occurred (ignored if set to
49 int line, int column, Throwable cause) {
50 super(makeMessage(message, lineContent, resourceName, line, column), cause);
52 this.line = line;
57 int line, int column)
    [all...]
  /external/libpcap/Win32/Src/
getservent.c 52 static char line[BUFSIZ+1]; variable
87 if ((p = fgets(line, BUFSIZ, servf)) == NULL)
  /external/lldb/include/lldb/Symbol/
LineEntry.h 21 /// @brief A line table entry class.
66 /// list so the line entry can dump the file name (since this
70 /// If \b true, display the filename with the line entry which
98 /// line entry to the supplied stream \a s.
105 /// list so the line entry can dump the file name (since this
109 /// Returns \b true if the file and line were properly dumped,
116 /// Check if a line entry object is valid.
119 /// Returns \b true if the line entry contains a valid section
120 /// offset address, file index, and line number, \b false
147 AddressRange range; ///< The section offset address range for this line entry
149 uint32_t line; \/\/\/< The source line number, or zero if there is no line number information. member in struct:lldb_private::LineEntry
    [all...]
  /external/mesa3d/src/gallium/state_trackers/clover/tgsi/
compiler.cpp 37 std::string line; local
39 while (getline(ls, line)) {
40 std::istringstream ts(line);
  /external/mesa3d/src/glsl/glcpp/
glcpp-parse.y 186 | input line
189 line: label
214 "#line %" PRIiMAX "\n",
224 "#line %" PRIiMAX " %" PRIiMAX "\n",
    [all...]
  /external/mesa3d/src/mesa/tnl_dd/
t_dd_triemit.h 113 static __inline void TAG(line)( CTX_ARG, function
  /external/mockito/cglib-and-asm/src/org/mockito/asm/tree/
LineNumberNode.java 37 * A node that represents a line number declaration. These nodes are pseudo
45 * A line number. This number refers to the source file from which the class
48 public int line; field in class:LineNumberNode
51 * The first instruction corresponding to this line number.
58 * @param line a line number. This number refers to the source file from
60 * @param start the first instruction corresponding to this line number.
62 public LineNumberNode(final int line, final LabelNode start) {
64 this.line = line;
    [all...]
  /external/mockito/src/org/mockito/internal/debugging/
MockitoDebuggerImpl.java 24 out += line("********************************");
25 out += line("*** Mockito interactions log ***");
26 out += line("********************************");
28 out += line(i.toString());
29 out += line(" invoked: " + i.getLocation());
31 out += line(" stubbed: " + i.stubInfo().stubbedAt().toString());
39 out += line("********************************");
40 out += line("*** Unused stubs ***");
41 out += line("********************************");
44 out += line(i.toString());
50 private String line(String text) { method in class:MockitoDebuggerImpl
    [all...]

Completed in 383 milliseconds

1 2 34 5 6 7 8 91011>>