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

1 2 3 4 5 67 8 91011>>

  /external/elfutils/src/tests/
allfcts.c 33 int line = -1; local
34 dwarf_decl_line (func, &line);
37 printf ("%s:%d:%s\n", file, line, fct);
line2addr.c 64 int line; member in struct:args
79 if (dwfl_module_getsrc_file (mod, a->file, a->line, 0, &lines, &nlines) == 0)
84 int line = a->line, col = 0; local
85 const char *file = dwfl_lineinfo (lines[inner], &addr, &line, &col,
93 if (strcmp (file, a->file) || line != a->line || col != 0)
95 file, line);
99 || strcmp (file, a->file) || line != a->line || col != 0
    [all...]
  /external/google-breakpad/src/common/
stabs_reader.cc 181 Line line; local
183 // the absolute address of the line.
184 line.address = iterator_->value;
185 line.filename = current_source_file_;
186 // The n_desc of a N_SLINE entry is the line number. It's a
187 // signed 16-bit field; line numbers from 32768 to 65535 are
189 line.number = (uint16_t) iterator_->descriptor;
190 queued_lines_.push_back(line);
238 for (vector<Line>::const_iterator it = queued_lines_.begin()
    [all...]
stabs_to_module.cc 117 bool StabsToModule::Line(uint64_t address, const char *name, int number) {
124 Module::Line line; local
125 line.address = address;
126 line.size = 0; // We compute this in StabsToModule::Finalize().
127 line.file = current_source_file_;
128 line.number = number;
129 current_function_->lines.push_back(line);
182 Module::Line::CompareByAddress);
183 vector<Module::Line>::iterator last_line = f->lines.end() - 1
    [all...]
  /external/google-breakpad/src/processor/
source_line_resolver_base_types.h 35 // each concrete source line resolver class.
69 struct SourceLineResolverBase::Line {
70 Line() { }
71 Line(MemAddr addr, MemAddr code_size, int file_id, int source_line)
75 , line(source_line) { }
80 int32_t line; member in struct:google_breakpad::SourceLineResolverBase::Line
122 // Does NOT take ownership of memory_buffer (the caller, source line resolver,
  /external/harfbuzz_ng/src/
test-buffer-serialize.cc 103 char line[BUFSIZ], out[BUFSIZ]; local
104 while (fgets (line, sizeof(line), stdin) != 0)
108 const char *p = line;
  /external/harfbuzz_ng/util/
view-cairo.hh 82 helper_cairo_line_t &line = g_array_index (lines, helper_cairo_line_t, i); local
83 line.finish ();
  /external/jarjar/src/main/com/tonicsystems/jarjar/
RulesFileParser.java 45 String line; local
46 while ((line = br.readLine()) != null) {
47 line = stripComment(line);
48 if (line.isEmpty())
50 String[] parts = line.split("\\s+");
78 private static void error(int line, String[] parts) {
79 throw new IllegalArgumentException("Error on line " + line + ": " + Arrays.asList(parts));
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
Token.java 9 private int line; field in class:Token
24 return this.line;
27 public void setLine(@SuppressWarnings("hiding") int line)
29 this.line = line;
  /external/libpcap/Win32/Src/
getnetent.c 28 static char line[BUFSIZ+1]; variable
66 p = fgets(line, BUFSIZ, netf);
  /external/libvncserver/examples/
camera.c 80 int line=0; local
102 * draw a simple black line that moves down the screen. The faster the
106 line = now.tv_usec / (1000000/HEIGHT);
107 if (line>HEIGHT) line=HEIGHT-1;
108 memset(&buffer[(WIDTH * BPP) * line], 0, (WIDTH * BPP));
112 if (last_line > line) {
116 last_line = line;
117 fprintf(stderr,"%03d/%03d Picture (%03d fps)\r", line, HEIGHT, fps);
  /external/linux-tools-perf/src/tools/perf/util/
vdso.c 22 char line[128]; local
31 while (!found && fgets(line, sizeof(line), maps)) {
35 if (2 != sscanf(line, "%p-%p r-xp %*x %*x:%*x %*u %n",
41 if (!strncmp(&line[m], VDSO__MAP_NAME,
  /external/llvm/lib/Support/
ErrorHandling.cpp 107 unsigned line) {
115 dbgs() << " at " << file << ":" << line; local
145 // I'd rather not double the line count of the following.
  /external/mesa3d/src/gallium/auxiliary/draw/
draw_pipe.h 41 * Basic info for a point/line/triangle primitive.
68 void (*line)( struct draw_stage *, member in struct:draw_stage
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_ap.cpp 108 CPVT_Line line; local
109 pIterator->GetLine(line);
110 ptNew = CPDF_Point(line.ptLine.x + ptOffset.x, line.ptLine.y + ptOffset.y);
210 CPVT_Line line; local
211 if (pIterator->GetWord(word) && pIterator->GetLine(line))
213 //CPDF_Rect rcWordSel = CPDF_Rect(word.ptWord.x,line.ptLine.y + line.fLineDescent,
214 // word.ptWord.x+word.fWidth,line.ptLine.y + line.fLineAscent)
    [all...]
  /external/ppp/pppd/plugins/pppoatm/
text2atm.c 196 char line[MAX_ATM_NAME_LEN+1]; local
200 while (fgets(line,MAX_ATM_NAME_LEN,file)) {
201 if (!strtok(line,"\t\n ")) continue;
204 here = strtok(line,"\t\n ");
  /external/proguard/src/proguard/
GPL.java 70 String line = reader.readLine(); local
71 if (line == null)
76 line = line.trim();
77 if (line.startsWith("at "))
79 line = line.substring(2).trim();
80 line = trimSuffix(line, '(');
81 line = trimSuffix(line, '.')
    [all...]
  /external/proguard/src/proguard/obfuscate/
MappingReader.java 59 String line = reader.readLine(); local
61 if (line == null)
66 line = line.trim();
70 if (line.endsWith(":"))
74 className = processClassMapping(line, mappingProcessor);
80 processClassMemberMapping(className, line, mappingProcessor);
103 * Parses the given line with a class mapping and processes the
107 private String processClassMapping(String line,
113 int arrowIndex = line.indexOf("->")
    [all...]
  /external/skia/src/core/
SkUtilsArm.cpp 84 // Now, find a line that starts with "Features", i.e. look for
89 char* line = (char*) memmem(buffer, buffer_end - buffer, local
91 if (line == NULL) { // Weird, no Features line, bad kernel?
92 SkDebugf("Could not find a line starting with 'Features'"
97 line += features_len; // Skip the "\nFeatures\t" prefix
99 // Find the end of the current line
100 char* line_end = (char*) memchr(line, '\n', buffer_end - line);
109 const char* flag = (const char*) memmem(line, line_end - line
    [all...]
  /external/slf4j/slf4j-migrator/src/main/java/org/slf4j/migrator/line/
Log4jRuleSet.java 25 package org.slf4j.migrator.line;
MultiGroupConversionRule.java 25 package org.slf4j.migrator.line;
  /external/smali/util/src/main/java/org/jf/util/
ConsoleUtil.java 92 String line; local
94 while ((line = reader.readLine()) != null) {
99 buffer.append(line);
  /external/toybox/toys/other/
makedevs.c 20 Each line of of the device table has the fields:
45 char *line = NULL; local
55 for (line_no = 0; (line = get_line(fd)); free(line)) {
56 char type=0, user[64], group[64], *node, *ptr = line;
74 // type order here needs to line up with actions[] order.
77 error_msg("line %d: bad type %c", line_no, type);
99 perror_msg("line %d: file '%s' does not exist", line_no, ptr);
103 perror_msg("line %d: can't create node '%s'", line_no, ptr);
108 perror_msg("line %d: can't chown/chmod '%s'", line_no, ptr)
    [all...]
sysctl.c 128 char *line = 0, *key, *val; local
130 if (-1 == (len = getline(&line, &len, fp))) break;
131 key = line;
134 while (len && isspace(line[len-1])) line[--len] = 0;
135 if (!(val = split_key(line))) {
136 error_msg("'%s' not key=value", line);
141 len = (val-line)-1;
142 while (len && isspace(line[len-1])) line[--len] = 0
    [all...]
  /external/toybox/toys/posix/
cal.c 23 // Write calendar into buffer: each line is 20 chars wide, end indicated
29 int wday, mday, start, len, line; local
52 for (mday=line=0;line<6;line++) {
75 // Worst case scenario toybuf usage: sizeof(struct tm) plus 21 bytes/line

Completed in 616 milliseconds

1 2 3 4 5 67 8 91011>>