HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 201 - 225 of 3501) sorted by null

1 2 3 4 5 6 7 891011>>

  /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/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/clang/tools/libclang/
CXSourceLocation.cpp 123 unsigned line,
132 SourceLocation SLoc = CXXUnit->getLocation(File, line, column);
136 File->getName(), line, column);
143 *Log << llvm::format("(\"%s\", %d, %d) = ", File->getName(), line, column)
173 static void createNullLocation(CXFile *file, unsigned *line,
177 if (line)
178 *line = 0;
186 static void createNullLocation(CXString *filename, unsigned *line,
190 if (line)
191 *line = 0
    [all...]
  /external/chromium-trace/trace-viewer/third_party/web_dev_style/web_dev_style/
css_checker.py 61 def braces_have_space_before_and_nothing_after(line):
62 return re.search(r'(?:^|\S){|{\s*\S+\s*$', line)
64 def classes_use_dashes(line):
67 m = re.search(r'\.(-?[_a-zA-Z0-9-]+).*[,{]\s*$', line)
73 def close_brace_on_new_line(line):
74 return (line.find('}') >= 0 and re.search(r'[^ }]', line) and
75 not re.match(frame_reg, line))
77 def colons_have_space_after(line):
78 return re.search(r'(?<!data):(?!//)\S[^;]+;\s*', line)
    [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...]
  /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/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);
  /frameworks/rs/driver/linkloader/utils/
rsl_assert.h 25 unsigned line,
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.h 45 /* Parses a line from the ADB log output.
49 * line - ADB log output line to parse. The line must be zero-terminated, and
52 * 0 If the line has been part of the crash dump.
53 * 1 If the line has not been part of the crash dump.
54 * -1 If there was an error when parsing the line.
57 int ParseLine(NdkCrashParser* parser, const char* line);

Completed in 559 milliseconds

1 2 3 4 5 6 7 891011>>