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

<<11121314151617181920>>

  /external/apache-xml/src/main/java/org/apache/xml/serializer/
CharInfo.java 265 String line = reader.readLine(); local
267 while (line != null) {
268 if (line.length() == 0 || line.charAt(0) == '#') {
269 line = reader.readLine();
274 int index = line.indexOf(' ');
277 String name = line.substring(0, index);
281 if (index < line.length()) {
282 String value = line.substring(index);
297 line = reader.readLine()
    [all...]
  /external/boringssl/src/tool/
digest.cc 184 // PrintFileSum hashes |source| with |md| and prints a line to stdout in the
215 // Check reads lines from |source| where each line is in the format of the
217 // file named in the line.
246 char line[EVP_MAX_MD_SIZE * 2 + 2 /* spaces */ + PATH_MAX + 1 /* newline */ + local
259 if (fgets(line, sizeof(line), file) == nullptr) {
267 size_t len = strlen(line);
270 if (line[len - 1] == '\n') {
276 const bool overlong = line[len - 1] != '\n' && !feof(file);
279 line[hex_size] != ' ' |
    [all...]
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/exceptions/
collector.py 126 the line of the error
153 ``line``:
154 the line of source being executed (for interpreters, like ZPT)
245 for name in ('object', 'source_url', 'line', 'column',
333 # The next line provides a way to detect recursion.
447 line = None variable in class:SupplementaryData
457 context in the call stack, typically represented by a line
466 # Line number
493 Return the source of the current line of this frame. You
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer.h 40 int line; member in struct:__sanitizer::AddressInfo
107 // does the actual file/line info fetching. Specific sanitizers may need this
  /external/compiler-rt/lib/tsan/go/
tsan_go.cc 47 uptr line; member in struct:__tsan::SymbolizeContext
66 info.line = ctx.line;
  /external/deqp/framework/qphelper/
qpCrashHandler.c 70 int line; member in struct:qpCrashInfo_s
78 info->line = 0;
81 static void qpCrashInfo_set (qpCrashInfo* info, qpCrashType type, const char* message, const char* file, int line)
86 info->line = line;
105 info->line);
224 static void assertFailureCallback (const char* expr, const char* file, int line)
237 qpCrashInfo_set(&g_crashHandler->crashInfo, QP_CRASHTYPE_ASSERT, expr, file, line);
416 static void assertFailureCallback (const char* expr, const char* file, int line)
419 qpCrashInfo_set(&g_crashHandler->crashInfo, QP_CRASHTYPE_ASSERT, expr, file, line);
    [all...]
  /external/dhcpcd/
if-options.c 762 parse_config_line(struct if_options *ifo, const char *opt, char *line)
771 if (cf_options[i].has_arg == required_argument && !line) {
778 return parse_option(ifo, cf_options[i].val, line);
791 char *line, *option, *p, *platform; local
838 while ((line = get_line(f))) {
839 option = strsep(&line, " \t");
841 if (line && *line) {
842 p = line + strlen(line) - 1
    [all...]
  /external/doclava/src/com/google/doclava/
DocFile.java 27 public static final Pattern LINE = Pattern.compile("(.*)[\r]?\n", Pattern.MULTILINE);
78 // The document is properties up until the line "@jd:body".
82 Matcher lines = LINE.matcher(filedata);
83 String line = null; local
85 line = lines.group(1);
86 if (line.length() > 0) {
87 if (line.equals("@jd:body")) {
91 Matcher prop = PROP.matcher(line);
104 if (line != null) {
105 System.err.println(docfile + ":" + lineno + ":" + line);
128 String line = null; local
    [all...]
SampleTagInfo.java 34 * and reducing the indent level of the text to the indent level of the first non-whitespace line.
99 static String getTrimString(String line) {
101 int len = line.length();
103 char c = line.charAt(i);
111 return line.substring(0, i);
115 static String addLineNumber(String line, String num) {
118 numberedLine.append("<span class=\"code-line\" id=\"l" + num + "\">" + line + "</span>");
140 String line = lines.readLine(); local
141 if (line == null)
224 String line = lines.readLine(); local
    [all...]
  /external/e2fsprogs/lib/blkid/
devname.c 367 char line[100]; local
375 while (fgets(line, sizeof(line), procpt)) {
376 if (sscanf (line, " %d %d %d %*s %*s %[^\n ]",
397 char line[1024]; local
427 while (fgets(line, sizeof(line), proc)) {
432 if (sscanf(line, " %d %d %llu %128[^\n ]",
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
UnpackUpdateJars.java 136 String line = null; local
137 while ((line = br.readLine()) != null)
138 System.out.println(type + ">" + line);
  /external/elfutils/src/libdwfl/
linux-proc-maps.c 200 char *line = NULL; local
203 while ((len = getline (&line, &linesz, f)) > 0)
205 if (line[len - 1] == '\n')
206 line[len - 1] = '\0';
212 if (sscanf (line, "%" PRIx64 "-%" PRIx64 " %*s %" PRIx64
217 free (line);
228 free (line);
239 char *file = line + nread + strspn (line + nread, " \t");
241 /* This line doesn't indicate a file mapping. *
    [all...]
  /external/elfutils/src/src/
findtextrel.c 514 Dwarf_Line *line; local
521 && (line = dwarf_getsrc_die (die, addr)) != NULL
522 && (src = dwarf_linesrc (line, NULL, NULL)) != NULL)
  /external/emma/core/java12/com/vladium/emma/data/
MethodDescriptor.java 53 // line metadata is available: blockMap must not be null or empty
123 public IntObjectMap /* line no->int[](blockIDs) */ getLineMap ()
130 // construct reverse line->block ID mapping:
144 final int line = lines [l]; local
145 IntSet blockIDs = (IntSet) lineMap.get (line);
150 lineMap.put (line, blockIDs);
161 final int line = lines [l]; local
162 final int [] blockIDs = ((IntSet) lineMap.get (line)).values ();
163 if ($assert.ENABLED) $assert.ASSERT (blockIDs != null && blockIDs.length > 0, "wrong line mapping for line #" + line)
    [all...]
  /external/f2fs-tools/tools/
f2fs_io_parse.c 210 char line[300]; local
214 while (fgets(line, sizeof(line), file) != NULL) {
215 ptr = strtok(line, ":");
  /external/freetype/src/base/
ftbitmap.c 203 FT_Byte* line = bitmap->buffer + ( bit_last >> 3 ); local
210 for ( ; count > 0; count--, line += pitch, end += pitch )
212 FT_Byte* write = line;
578 FT_Int val = ss[0]; /* avoid a byte->int cast on each line */
  /external/google-breakpad/src/client/windows/tests/crash_generation_app/
crash_generation_app.cc 58 // Maximum length of a line in the edit box.
143 TCHAR line[kMaximumLineLength]; local
144 int result = swprintf_s(line,
167 (LPARAM)line);
202 TCHAR* line = new TCHAR[kMaximumLineLength]; local
203 line[0] = _T('\0');
204 int result = swprintf_s(line,
210 delete[] line;
214 QueueUserWorkItem(AppendTextWorker, line, WT_EXECUTEDEFAULT);
220 TCHAR* line = new TCHAR[kMaximumLineLength] local
264 TCHAR* line = new TCHAR[kMaximumLineLength]; local
    [all...]
  /external/google-breakpad/src/processor/
basic_source_line_resolver.cc 77 BPLOG(ERROR) << "Line " << line_number << ": " << message;
150 // Clear cur_func: public symbols don't contain line number information.
169 LogParseError("Found source line data without a function",
172 Line *line = ParseLine(buffer); local
173 if (!line) {
176 cur_func->lines.StoreRange(line->address, line->size,
177 linked_ptr<Line>(line));
210 linked_ptr<Line> line; local
    [all...]
microdump.cc 180 string line; local
186 while (std::getline(stream, line)) {
187 if (line.find(kGoogleBreakpadKey) == string::npos) {
190 if (line.find(kMicrodumpBegin) != string::npos) {
194 if (line.find(kMicrodumpEnd) != string::npos) {
203 if ((pos = line.find(kOsKey)) != string::npos) {
204 string os_str(line, pos + strlen(kOsKey));
232 // OS line also contains release and version for future use.
233 } else if ((pos = line.find(kStackKey)) != string::npos) {
234 if (line.find(kStackFirstLineKey) != string::npos)
    [all...]
  /external/google-breakpad/src/testing/gtest/include/gtest/internal/
gtest-death-test-internal.h 80 const char* file, int line, DeathTest** test);
144 const char* file, int line, DeathTest** test) = 0;
151 const char* file, int line, DeathTest** test);
249 int line() const { return line_; } function in class:testing::internal::InternalRunDeathTestFlag
  /external/gptfdisk/
gptpart.cc 426 string line; local
439 line = ReadString();
440 if ((line[0] == 'L') || (line[0] == 'l')) {
443 if (line.length() == 0)
446 tempType = line;
support.cc 53 char line[255]; local
58 cin.getline(line, 255);
61 num = sscanf(line, "%d", &response);
79 string line; local
86 line = ReadString();
87 response = toupper(line[0]);
103 char line[255]; local
107 cin.getline(line, 255);
110 response = IeeeToInt(line, sSize, low, high, def);
  /external/gtest/include/gtest/internal/
gtest-death-test-internal.h 80 const char* file, int line, DeathTest** test);
144 const char* file, int line, DeathTest** test) = 0;
151 const char* file, int line, DeathTest** test);
249 int line() const { return line_; } function in class:testing::internal::InternalRunDeathTestFlag
  /external/guava/guava/src/com/google/common/io/
CharStreams.java 246 * Reads the first line from a {@link Readable} & {@link Closeable} object
247 * supplied by a factory. The line does not include line-termination
251 * @return the first line, or null if the reader is empty
264 * supplied by a factory. The lines do not include line-termination
290 * not include line-termination characters, but do include other
304 String line; local
305 while ((line = lineReader.readLine()) != null) {
306 result.add(line);
327 String line; local
    [all...]
  /external/icu/icu4c/source/samples/layout/
paragraph.cpp 94 fLines = LE_NEW_ARRAY(const ParagraphLayout::Line *, fLinesMax);
162 for (le_int32 line = 0; line < fLineCount; line += 1) {
163 delete /*(LineInfo *)*/ fLines[line];
171 void Paragraph::addLine(const ParagraphLayout::Line *line)
174 fLines = (const ParagraphLayout::Line **) LE_GROW_ARRAY(fLines, fLinesMax + fLinesGrow);
178 fLines[fLineCount++] = line;
193 const ParagraphLayout::Line *line local
224 const ParagraphLayout::Line *line = fLines[li]; local
    [all...]

Completed in 1256 milliseconds

<<11121314151617181920>>