HomeSort by relevance Sort by last modified time
    Searched full:line (Results 326 - 350 of 6501) sorted by null

<<11121314151617181920>>

  /external/oprofile/libpopt/
poptparse.c 126 * 2== line to long
131 char line[999]; local
138 size_t maxlinelen = sizeof(line);
155 while (fgets(line, (int)maxlinelen, fp) != NULL) {
157 p = line;
165 return POPT_ERROR_OVERFLOW; /* XXX line too long */
167 if (*p == '\0' || *p == '\n') continue; /* line is empty */
168 if (*p == '#') continue; /* comment line */
181 /* single command line option (ie, no name=val, just name) */
194 continue; /* XXX for now, silently ignore bogus line */
    [all...]
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
symbol-table.cpp 29 // Maximum line length in textual symbols file.
46 char line[kLineLen]; local
47 while (strm.getline(line, kLineLen)) {
50 SplitToVector(line, "\n\t ", &col, true);
51 if (col.size() == 0) // empty line
55 << "file = " << filename << ", line = " << nline;
65 << "file = " << filename << ", line = " << nline;
148 char line[kLineLen]; local
149 snprintf(line, kLineLen, "%s\t%lld\n", symbols_[i], Find(symbols_[i]));
150 strm.write(line, strlen(line))
    [all...]
  /frameworks/base/libs/ui/
KeyLayoutMap.cpp 27 next_token(char const** p, int *line)
34 (*line)++;
114 int line = 1; local
118 String8 token = next_token(&p, &line);
128 LOGE("%s:%d: expected key, got '%s'\n", filename, line,
138 filename, line, token.string());
141 //LOGI("%s:%d: got scancode %d\n", filename, line, scancode );
146 //LOGI("%s:%d: got keycode %d for %s\n", filename, line, keycode, token.string() );
149 filename, line, token.string());
169 //LOGI("%s:%d: got flags %x for %s\n", filename, line, tmp, token.string() )
    [all...]
  /sdk/jarutils/src/com/android/jarutils/
KeystoreHelper.java 79 // create the command line to call key tool to build the key with no user input.
104 // launch the command line process
109 // create the command line as one string
162 String line = errReader.readLine();
163 if (line != null) {
165 output.err(line);
167 System.err.println(line);
187 String line = outReader.readLine();
188 if (line != null) {
190 output.out(line);
    [all...]
  /external/wpa_supplicant/
config.c 37 int line, const char *value);
89 int line, const char *value)
104 wpa_printf(MSG_ERROR, "Line %d: failed to parse %s '%s'.",
105 line, data->name,
119 wpa_printf(MSG_ERROR, "Line %d: too short %s (len=%lu "
120 "min_len=%ld)", line, data->name,
127 wpa_printf(MSG_ERROR, "Line %d: too long %s (len=%lu "
128 "max_len=%ld)", line, data->name,
239 int line, const char *value)
248 wpa_printf(MSG_ERROR, "Line %d: too small %s (value=%d
    [all...]
  /build/tools/
event_log_tags.py 63 for self.linenum, line in enumerate(file_object):
66 line = line.strip()
67 if not line or line[0] == '#': continue
68 parts = re.split(r"\s+", line, 2)
71 self.AddError("failed to parse \"%s\"" % (line,))
  /development/testrunner/
android_mk.py 44 def _ProcessMKLine(self, line):
50 line: line of text from makefile
52 m = self._RE_INCLUDE.match(line)
56 parts = line.split(self._VAR_DELIMITER)
94 for line in mk:
95 self._ProcessMKLine(line)
  /external/elfutils/libdw/
dwarf_getsrclines.c 1 /* Return line number information of CU.
34 Dwarf_Line line; member in struct:linelist
39 /* Adds a new line to the matrix. We cannot definte a function because
43 /* Add the new line. */ \
46 /* Set the line information. */ \
47 new_line->line.addr = address; \
48 new_line->line.file = file; \
49 new_line->line.line = line; \
298 size_t line = 1; local
    [all...]
  /external/guava/src/com/google/common/io/
LineReader.java 43 @Override protected void handleLine(String line, String end) {
44 lines.add(line);
59 * Reads a line of text. A line is considered to be terminated by any
60 * one of a line feed ({@code '\n'}), a carriage return
64 * @return a {@code String} containing the contents of the line, not
65 * including any line-termination characters, or {@code null} if the
  /external/v8/src/
checks.cc 38 extern "C" void V8_Fatal(const char* file, int line, const char* format, ...) {
44 i::OS::PrintError("\n\n#\n# Fatal error in %s, line %d\n# ", file, line);
63 int line,
71 V8_Fatal(file, line,
79 int line,
86 V8_Fatal(file, line, "CHECK_NE(%s, %s) failed\n# Value: %s",
  /frameworks/base/common/tools/
make-iana-tld-pattern.py 90 def add(self, line):
91 length = len(line)
93 if line.startswith('#') or (length == 0):
97 self.letters.append(line[1:2])
99 self.words.append(line)
101 def getBucket(buckets, line):
102 letter = line[0]
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
AudioSystem.java 98 public static Line.Info[] getSourceLineInfo(Line.Info info) {
99 List<Line.Info> result = new ArrayList<Line.Info>();
107 Line.Info[] linfos = mix.getSourceLineInfo(info);
108 for (Line.Info linfo : linfos) {
114 Line.Info[] temp = new Line.Info[result.size()];
118 public static Line.Info[] getTargetLineInfo(Line.Info info)
291 SourceDataLine line = (SourceDataLine) getLine(new Line.Info( local
300 SourceDataLine line = (SourceDataLine) getMixer(mixerinfo).getLine( local
308 TargetDataLine line = (TargetDataLine) getLine(new Line.Info( local
317 TargetDataLine line = (TargetDataLine) getMixer(mixerinfo).getLine( local
    [all...]
  /external/webkit/WebCore/inspector/front-end/
TextEditorModel.js 75 line: function(lineNumber)
140 var line = lines[i];
141 var index = line.indexOf("\t");
143 line = line.substring(0, index) + spaces[index % 4] + line.substring(index + 1);
144 index = line.indexOf("\t", index + 1);
146 lines[i] = line;
187 var line = this._lines[lineNumber];
188 var prefix = line.substring(0, column).split("").reverse().join("")
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.2.1/info/
cppinternals.info 61 * Line Numbering:: Tracking location within files.
104 returns preprocessing tokens individually, not a line at a time.
130 (*note Lexing a line::).
134 important for correct diagnostic positioning. Unless a specific line
136 `line' and `col' values of the token just before the location that
140 right. If whitespace (other than a new line) precedes a token, it sets
141 the `PREV_WHITE' bit in the token's flags. Each token has its `line'
142 and `col' variables set to the line and column of the first character
143 of the token. This line number is the line number in the translatio
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.3.1/info/
cppinternals.info 62 * Line Numbering:: Tracking location within files.
105 returns preprocessing tokens individually, not a line at a time.
131 (*note Lexing a line::).
135 important for correct diagnostic positioning. Unless a specific line
137 `line' and `col' values of the token just before the location that
141 right. If whitespace (other than a new line) precedes a token, it sets
142 the `PREV_WHITE' bit in the token's flags. Each token has its `line'
143 and `col' variables set to the line and column of the first character
144 of the token. This line number is the line number in the translatio
    [all...]
bfd.info 253 linker has command line switches to allow users to throw it away.
277 mapping between symbols, source line numbers, and addresses in the
279 symbol information. Each symbol with an associated list of line
281 of a line number list consists of a pointer to the symbol, which
282 allows finding out the address of the function whose line number
284 offsets into the section and line numbers. Any format which can
804 #define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
806 (abfd, sec, syms, off, file, func, line))
808 #define bfd_find_line(abfd, syms, sym, file, line) \
810 (abfd, syms, sym, file, line))
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/info/
cppinternals.info 62 * Line Numbering:: Tracking location within files.
105 returns preprocessing tokens individually, not a line at a time.
131 (*note Lexing a line::).
135 important for correct diagnostic positioning. Unless a specific line
137 `line' and `col' values of the token just before the location that
141 right. If whitespace (other than a new line) precedes a token, it sets
142 the `PREV_WHITE' bit in the token's flags. Each token has its `line'
143 and `col' variables set to the line and column of the first character
144 of the token. This line number is the line number in the translatio
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.2.1/info/
cppinternals.info 61 * Line Numbering:: Tracking location within files.
104 returns preprocessing tokens individually, not a line at a time.
130 (*note Lexing a line::).
134 important for correct diagnostic positioning. Unless a specific line
136 `line' and `col' values of the token just before the location that
140 right. If whitespace (other than a new line) precedes a token, it sets
141 the `PREV_WHITE' bit in the token's flags. Each token has its `line'
142 and `col' variables set to the line and column of the first character
143 of the token. This line number is the line number in the translatio
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.3.1/info/
cppinternals.info 62 * Line Numbering:: Tracking location within files.
105 returns preprocessing tokens individually, not a line at a time.
131 (*note Lexing a line::).
135 important for correct diagnostic positioning. Unless a specific line
137 `line' and `col' values of the token just before the location that
141 right. If whitespace (other than a new line) precedes a token, it sets
142 the `PREV_WHITE' bit in the token's flags. Each token has its `line'
143 and `col' variables set to the line and column of the first character
144 of the token. This line number is the line number in the translatio
    [all...]
bfd.info 253 linker has command line switches to allow users to throw it away.
277 mapping between symbols, source line numbers, and addresses in the
279 symbol information. Each symbol with an associated list of line
281 of a line number list consists of a pointer to the symbol, which
282 allows finding out the address of the function whose line number
284 offsets into the section and line numbers. Any format which can
804 #define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
806 (abfd, sec, syms, off, file, func, line))
808 #define bfd_find_line(abfd, syms, sym, file, line) \
810 (abfd, syms, sym, file, line))
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/info/
cppinternals.info 62 * Line Numbering:: Tracking location within files.
105 returns preprocessing tokens individually, not a line at a time.
131 (*note Lexing a line::).
135 important for correct diagnostic positioning. Unless a specific line
137 `line' and `col' values of the token just before the location that
141 right. If whitespace (other than a new line) precedes a token, it sets
142 the `PREV_WHITE' bit in the token's flags. Each token has its `line'
143 and `col' variables set to the line and column of the first character
144 of the token. This line number is the line number in the translatio
    [all...]
  /prebuilt/linux-x86/toolchain/i686-unknown-linux-gnu-4.2.1/info/
cppinternals.info 61 * Line Numbering:: Tracking location within files.
104 returns preprocessing tokens individually, not a line at a time.
130 (*note Lexing a line::).
134 important for correct diagnostic positioning. Unless a specific line
136 `line' and `col' values of the token just before the location that
140 right. If whitespace (other than a new line) precedes a token, it sets
141 the `PREV_WHITE' bit in the token's flags. Each token has its `line'
142 and `col' variables set to the line and column of the first character
143 of the token. This line number is the line number in the translatio
    [all...]
bfd.info 253 linker has command line switches to allow users to throw it away.
277 mapping between symbols, source line numbers, and addresses in the
279 symbol information. Each symbol with an associated list of line
281 of a line number list consists of a pointer to the symbol, which
282 allows finding out the address of the function whose line number
284 offsets into the section and line numbers. Any format which can
804 #define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
806 (abfd, sec, syms, off, file, func, line))
808 #define bfd_find_line(abfd, syms, sym, file, line) \
810 (abfd, syms, sym, file, line))
    [all...]
  /prebuilt/darwin-x86/toolchain/arm-eabi-4.4.0/share/info/
bfd.info 253 linker has command line switches to allow users to throw it away.
277 mapping between symbols, source line numbers, and addresses in the
279 symbol information. Each symbol with an associated list of line
281 of a line number list consists of a pointer to the symbol, which
282 allows finding out the address of the function whose line number
284 offsets into the section and line numbers. Any format which can
804 #define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
806 (abfd, sec, syms, off, file, func, line))
808 #define bfd_find_line(abfd, syms, sym, file, line) \
810 (abfd, syms, sym, file, line))
    [all...]
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.0/share/info/
bfd.info 253 linker has command line switches to allow users to throw it away.
277 mapping between symbols, source line numbers, and addresses in the
279 symbol information. Each symbol with an associated list of line
281 of a line number list consists of a pointer to the symbol, which
282 allows finding out the address of the function whose line number
284 offsets into the section and line numbers. Any format which can
804 #define bfd_find_nearest_line(abfd, sec, syms, off, file, func, line) \
806 (abfd, sec, syms, off, file, func, line))
808 #define bfd_find_line(abfd, syms, sym, file, line) \
810 (abfd, syms, sym, file, line))
    [all...]

Completed in 107 milliseconds

<<11121314151617181920>>