HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 176 - 200 of 2868) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/libpcap/
scanner.c 2 #line 3 "<stdout>"
210 /* Whether we're considered to be at the beginning of a line.
216 int yy_bs_lineno; /**< The line count. */
    [all...]
  /external/webkit/Tools/Scripts/
run-leaks 133 # We treat every line except for Process 00000: and Leak: as optional
135 # Newer versions of the leaks output have a header section at the top, with the first line describing the version of the output format.
151 for my $line (@$leaksOutput) {
152 next if $line =~ /^Process/;
153 next if $line =~ /^node buffer added/;
155 if ($line =~ /^Leak: /) {
156 my ($address) = ($line =~ /Leak: ([[:xdigit:]x]+)/);
162 my ($size) = ($line =~ /size=([[:digit:]]+)/);
168 my ($type) = ($line =~ /'([^']+)'/); #'
178 "leaksOutput" => $line
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/JavaExtensions/
ExceptionExtensions.cs 44 foreach ( string line in trace.Split( '\n', '\r' ) )
46 if ( !string.IsNullOrEmpty( line ) )
47 writer.WriteLine( " " + line );
  /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/jdiff/src/jdiff/
StreamReader.java 26 String line = null; local
27 while((line = br.readLine()) != null)
28 System.out.println(line);
  /external/webkit/Source/WebCore/WebCore.gyp/scripts/
action_cssvaluekeywords.py 126 for line in inFile:
127 line = line.rstrip()
128 if line.startswith('#'):
129 line = ''
130 if line == '':
132 line = line.lower()
133 if line in lineDict:
134 raise KeyError, 'Duplicate value %s' % line
    [all...]
  /external/doclava/src/com/google/doclava/
SampleTagInfo.java 34 * and reducing the indent level of the text to the indent level of the first non-whitespace line.
93 static String getTrimString(String line) {
95 int len = line.length();
97 char c = line.charAt(i);
105 return line.substring(0, i);
127 String line = lines.readLine(); local
128 if (line == null) {
133 if (line.indexOf(begin) >= 0) {
138 if (line.indexOf(end) >= 0) {
141 boolean empty = "".equals(line.trim())
209 String line = lines.readLine(); local
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/common/checkout/
changelog.py 109 # The first line should be a date line.
116 for line in changelog_file:
118 if date_line_regexp.match(line) or rolled_over_regexp.match(line):
121 entry_lines.append(line)
122 return None # We never found a date line!
135 def _wrap_line(self, line):
136 return textwrap.fill(line,
147 lines = [self._wrap_line(line) for line in message.splitlines()
    [all...]
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/
VisualDiffUtils.java 31 * Preprocesses the list of diffs so that new line characters appear only at the end of
36 * LinkedList of diffs where new line character appears only on the end of
69 String line = ""; local
79 line = processDiff(diff, lineNums, lines, line, i, delSpan, isLastDiff);
80 if (line.equals("")) {
86 // If the line is currently empty and this insertion is the entire line, the
87 // expected line is absent, so it has no line number
110 String line = ""; local
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
SysinfoPanel.java 325 String line = br.readLine(); local
326 if (line == null) {
327 Log.d("DDMS", "Service not found " + line);
330 if ((line.startsWith("DUMP OF SERVICE ") || line.startsWith("-----")) &&
331 line.indexOf(BUGREPORT_SECTION[mMode]) > 0) {
385 String line = br.readLine(); local
386 if (line == null || line.startsWith("DUMP OF SERVICE")) {
390 if (line.startsWith("Current Battery Usage Statistics"))
423 String line = br.readLine(); local
449 String line = br.readLine(); local
501 String line = br.readLine(); local
536 String line = br.readLine(); local
572 String line = br.readLine(); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
CharStream.java 47 /** ANTLR tracks the line information automatically */
50 /** Because this stream can rewind, we need to be able to reset the line */
51 void setLine(int line);
55 /** The index of the character relative to the beginning of the line 0..n-1 */
  /external/chromium/chrome/browser/autocomplete/
autocomplete_popup_view.h 28 // Invalidates one line of the autocomplete popup.
29 virtual void InvalidateLine(size_t line) = 0;
  /external/clang/test/Misc/
emit-html.c 4 #line 42 "foo.c"
  /external/harfbuzz/src/
harfbuzz-debug.h 18 void Android_Debug(const char* file, int line, const char* function, const char* format, ...)
  /external/icu4c/common/unicode/
parseerr.h 34 * <p>The line, offset, and context fields are optional; parsing
59 * The line on which the error occured. If the parser uses this
60 * field, it sets it to the line number of the source text line on
62 * parse does not support line numbers, the value will be <= 0.
65 int32_t line; member in struct:UParseError
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
  /external/libvpx/examples/
gen_example_text.sh 61 while IFS=$'\n' read -r line; do
62 case "$line" in
71 block_name=${line##~* }
74 *) echo "$line"
  /external/llvm/include/llvm/Support/
Valgrind.h 27 LLVM_ATTRIBUTE_WEAK void AnnotateHappensAfter(const char *file, int line,
29 LLVM_ATTRIBUTE_WEAK void AnnotateHappensBefore(const char *file, int line,
31 LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesBegin(const char *file, int line);
32 LLVM_ATTRIBUTE_WEAK void AnnotateIgnoreWritesEnd(const char *file, int line);
  /external/openssh/
fixpaths 15 die $0: error in command line arguments.
  /external/v8/tools/
run-valgrind.py 44 # Compute the command line.
63 for line in errors:
64 if LEAK_LINE_MATCHER.search(line):
65 leaks.append(line)
66 if not LEAK_OKAY_MATCHER.search(line):
  /external/webkit/Source/JavaScriptCore/icu/unicode/
parseerr.h 30 * <p>The line, offset, and context fields are optional; parsing
55 * The line on which the error occured. If the parser uses this
56 * field, it sets it to the line number of the source text line on
58 * parse does not support line numbers, the value will be <= 0.
61 int32_t line; member in struct:UParseError
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/
InfoSink.cpp 35 int string = 0, line = 0; local
36 DecodeSourceLoc(loc, &string, &line);
39 if (line)
40 stream << string << ":" << line; local
  /external/webkit/Source/WebCore/icu/unicode/
parseerr.h 30 * <p>The line, offset, and context fields are optional; parsing
55 * The line on which the error occured. If the parser uses this
56 * field, it sets it to the line number of the source text line on
58 * parse does not support line numbers, the value will be <= 0.
61 int32_t line; member in struct:UParseError
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
  /external/webkit/Source/WebKit/mac/icu/unicode/
parseerr.h 30 * <p>The line, offset, and context fields are optional; parsing
55 * The line on which the error occured. If the parser uses this
56 * field, it sets it to the line number of the source text line on
58 * parse does not support line numbers, the value will be <= 0.
61 int32_t line; member in struct:UParseError
64 * The character offset to the error. If the line field is >= 1,
65 * then this is the offset from the start of the line. Otherwise,
  /external/webkit/Tools/iExploder/iexploder-1.3.2/tools/
lasthit.rb 20 file.readlines.each { |line|
21 if (line =~ /^(.*?) .*iexploder.*?test=(\d+).* HTTP.* \"(.*?)\"$/)
34 if line =~ /subtest=(\d+)/
  /frameworks/av/libvideoeditor/osal/src/
M4PSW_Trace.c 39 * void M4OSA_Trace(M4OSA_Int32 line, M4OSA_Char* file ,M4OSA_Int32 level,
52 M4OSAL_TRACE_EXPORT_TYPE void M4OSA_Trace(M4OSA_Int32 line, M4OSA_Char* file ,
69 (char *)message, line, file);
74 M4OSAL_TRACE_EXPORT_TYPE M4OSA_Void M4OSA_TRACE_traceFunction(M4OSA_UInt32 line,
94 (char *)message, line, (char*)file);

Completed in 387 milliseconds

1 2 3 4 5 6 78 91011>>