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

1 2 3 4 5 67 8 91011>>

  /external/chromium_org/tools/gn/
standard_out.cc 124 void PrintShortHelp(const std::string& line) {
125 size_t colon_offset = line.find(':');
128 OutputString(" " + line.substr(0, colon_offset), DECORATION_YELLOW);
134 line.size() > first_normal + 2 &&
135 line[first_normal + 1] == ' ' && line[first_normal + 2] == '[') {
138 first_normal = line.find(']', begin_bracket);
140 first_normal = line.size();
143 OutputString(line.substr(begin_bracket, first_normal - begin_bracket),
147 OutputString(line.substr(first_normal) + "\n")
155 const std::string& line = lines[i]; local
    [all...]
  /external/clang/tools/libclang/
CXLoadedDiagnostic.h 66 /// \brief Decode the CXSourceLocation into file, line, column, and offset.
69 unsigned *line,
75 unsigned line; member in struct:clang::CXLoadedDiagnostic::Location
79 Location() : line(0), column(0), offset(0) {}
  /external/doclava/src/com/google/doclava/
SourcePositionInfo.java 22 public SourcePositionInfo(String file, int line, int column) {
24 this.line = line;
30 this.line = that.line;
44 int line = that.line; local
49 line++;
53 return new SourcePositionInfo(that.file, line, 0);
60 int line = that.line - 1; // -1 because, well, it seems to wor local
101 public int line; field in class:SourcePositionInfo
    [all...]
  /external/elfutils/libdw/
dwarf_getsrc_file.c 1 /* Find line information for given file/line/column triple.
87 /* Get the line number information for this file. */
93 /* Search through all the line number records for a matching
94 file and line/column number. If any of the numbers is zero,
100 Dwarf_Line *line = &lines->info[cnt]; local
102 if (lastfile != line->file)
104 lastfile = line->file;
105 if (lastfile >= line->files->nfiles)
112 const char *fname2 = line->files->info[lastfile].name
    [all...]
  /external/elfutils/libdwfl/
dwfl_module_getsrc_file.c 81 inline const char *INTUSE(dwarf_line_file) (const Dwarf_Line *line)
83 return line->files->info[line->file].name;
85 inline Dwarf_Line *dwfl_line (const Dwfl_Line *line)
87 return &dwfl_linecu (line)->die.cu->lines->info[line->idx];
89 inline const char *dwfl_line_file (const Dwfl_Line *line)
91 return INTUSE(dwarf_line_file) (dwfl_line (line));
94 /* Search through all the line number records for a matching
95 file and line/column number. If any of the numbers is zero
101 Dwarf_Line *line = &cu->die.cu->lines->info[cnt]; local
    [all...]
  /external/elfutils/tests/
line2addr.c 72 int line; member in struct:args
87 if (dwfl_module_getsrc_file (mod, a->file, a->line, 0, &lines, &nlines) == 0)
92 int line = a->line, col = 0; local
93 const char *file = dwfl_lineinfo (lines[inner], &addr, &line, &col,
101 if (strcmp (file, a->file) || line != a->line || col != 0)
103 file, line);
107 || strcmp (file, a->file) || line != a->line || col != 0
    [all...]
  /external/ganymed-ssh2/examples/
Basic.java 62 String line = br.readLine(); local
63 if (line == null)
65 System.out.println(line);
PublicKeyAuthentication.java 56 String line = br.readLine(); local
57 if (line == null)
59 System.out.println(line);
StdoutAndStderr.java 55 String line = stdoutReader.readLine(); local
56 if (line == null)
58 System.out.println(line);
65 String line = stderrReader.readLine(); local
66 if (line == null)
68 System.out.println(line);
UsingKnownHosts.java 63 String line = br.readLine(); local
64 if (line == null)
66 System.out.println(line);
  /external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/
SCPInputStream.java 45 String line = client.receiveLine(session.getStdout()); local
55 throw new IOException("Remote SCP error: " + line);
60 lnp = client.parseCLine(line);
64 throw new IOException("Remote SCP error: " + ((char) c) + line);
  /external/harfbuzz_ng/src/
test-buffer-serialize.cc 100 char line[BUFSIZ], out[BUFSIZ]; local
101 while (fgets (line, sizeof(line), stdin) != 0)
105 const char *p = line;
  /external/harfbuzz_ng/util/
view-cairo.hh 79 helper_cairo_line_t &line = g_array_index (lines, helper_cairo_line_t, i); local
80 line.finish ();
  /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/linux-tools-perf/util/
util.c 33 char *line = NULL; local
44 while (getline(&line, &n, from_fp) > 0)
45 if (fputs(line, to_fp) == EOF)
50 free(line);
  /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/okhttp/src/test/java/com/squareup/okhttp/internal/
StrictLineReaderTest.java 36 String line = lineReader.readLine(); local
37 if (!refLine.equals(line)) {
38 fail("line (\"" + line + "\") differs from expected (\"" + refLine + "\").");
41 fail("line reader threw EOFException too early.");
46 fail("line reader didn't throw the expected EOFException.");
60 "12 byte line\n18 byte line......\n" +
70 "line ending with CRLF\r\n" +
71 "this is a long line with embedded CR \r ending with CRLF and having more than "
    [all...]
  /external/oprofile/daemon/
opd_kernel.c 133 * each line is in the format:
142 char * line; local
168 line = op_get_line(fp);
170 if (!line)
173 if (line[0] == '\0') {
174 free(line);
178 ret = sscanf(line, "%256s %u %32s %4096s %32s %llx",
182 printf("bad /proc/modules entry: %s\n", line);
183 free(line);
193 free(line);
    [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 69 String line = reader.readLine(); local
70 if (line == null)
75 line = line.trim();
76 if (line.startsWith("at "))
78 line = line.substring(2).trim();
79 line = trimSuffix(line, '(');
80 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/qemu/
keymaps.c 75 char line[1024]; local
105 if (fgets(line, 1024, f) == NULL)
107 len = strlen(line);
108 if (len > 0 && line[len - 1] == '\n')
109 line[len - 1] = '\0';
110 if (line[0] == '#')
112 if (!strncmp(line, "map ", 4))
114 if (!strncmp(line, "include ", 8)) {
115 parse_keyboard_layout(table, line + 8, k);
117 char *end_of_keysym = line;
    [all...]
  /external/skia/src/utils/
SkPathUtils.cpp 40 static void Line2path_pixel(SkPath* path, const char* line,
44 if (GetBit(line,i)) {
51 static void Line2path_pixelCircle(SkPath* path, const char* line,
55 if (GetBit(line,i)) {
64 static void Line2path_span(SkPath* path, const char* line,
70 int curPixel = GetBit(line,i);
87 if ( GetBit(line,width-1) ) ++end;
91 } else if ( GetBit(line, width - 1) ) { // if last pixel on add
101 // loop for every line in bitmap
103 // fn ptr handles each line separatel
119 const char* line = &bitmap[y * stride]; local
    [all...]
  /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);
  /hardware/broadcom/libbt/src/
conf.c 99 char line[CONF_MAX_LINE_LEN+1]; /* add 1 for \0 char */ local
105 /* read line by line */
106 while (fgets(line, CONF_MAX_LINE_LEN+1, p_file) != NULL)
108 if (line[0] == CONF_COMMENT)
111 p_name = strtok(line, CONF_DELIMITERS);

Completed in 1568 milliseconds

1 2 3 4 5 67 8 91011>>