HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 76 - 100 of 5407) sorted by null

1 2 34 5 6 7 8 91011>>

  /external/valgrind/main/memcheck/tests/
long_namespace_xml.stderr.exp 9 <line>...</line>
10 <line>...</line>
11 <line>...</line>
12 <line>...</line>
43 <line>...</line>
    [all...]
  /bionic/libc/tools/
genserv.py 43 for line in f.xreadlines():
44 if len(line) > 0 and line[-1] == "\n":
45 line = line[:-1]
46 if len(line) > 0 and line[-1] == "\r":
47 line = line[:-1]
49 line = string.strip(line
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CharStream.as 45 /** ANTLR tracks the line information automatically */
46 function get line():int;
48 /** Because this stream can rewind, we need to be able to reset the line */
49 function set line(line:int):void;
53 /** The index of the character relative to the beginning of the line 0..n-1 */
CharStreamState.as 32 * line, etc...) so that we can rewind the state after scanning ahead.
40 /** What line number is the scanner at before processing buffer[p]? */
41 public var line:int; variable
43 /** What char position 0..n-1 in line is scanner before processing buffer[p]? */
  /external/chromium-trace/trace-viewer/third_party/closure_linter/closure_linter/common/
erroroutput.py 26 """Get a output line for an error in UNIX format."""
28 line = ''
31 line = '%d' % error.token.line_number
36 return '%s:%s:(%s) %s' % (filename, line, error_code, error.message)
40 """Get a output line for an error in regular format."""
42 line = ''
44 line = 'Line %d, ' % error.token.line_number
52 return '%s%s: %s' % (line, code, error.message)
  /external/chromium_org/gpu/command_buffer/service/
error_state_mock.h 23 const char* filename, int line,
26 const char* filename, int line,
30 int line,
36 const char* file, int line, const char* filename));
38 const char* file, int line, const char* filename));
40 const char* file, int line, const char* filename));
  /external/chromium_org/native_client_sdk/src/tools/
fix_deps.py 26 def ParseLine(line, new_target):
27 """Parse one line of a GCC-generated deps file.
29 Each line contains an optional target and then a list
35 if new_target and ':' in line:
36 line = line.split(':', 1)[1]
38 line = line.strip()
39 line = line.rstrip('\\'
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/clipboard/
ClipboardUtilities.cpp 49 // Line separator is \r\n per RFC 2483 - however, for compatibility
53 // be found, return an empty string. This is in line with the HTML5 spec.
55 String& line = items[i]; local
56 line = line.stripWhiteSpace();
57 if (line.isEmpty())
59 if (line[0] == '#')
61 KURL url = KURL(ParsedURLString, line);
  /external/chromium_org/third_party/closure_linter/closure_linter/common/
erroroutput.py 26 """Get a output line for an error in UNIX format."""
28 line = ''
31 line = '%d' % error.token.line_number
36 return '%s:%s:(%s) %s' % (filename, line, error_code, error.message)
40 """Get a output line for an error in regular format."""
42 line = ''
44 line = 'Line %d, ' % error.token.line_number
52 return '%s%s: %s' % (line, code, error.message)
  /external/chromium_org/tools/memory_watcher/scripts/
finditem.pl 21 my $line = $_;
22 if ($line =~ m/([0-9]*) bytes, ([0-9]*) allocs/) {
28 elsif ($line =~ m/$search/) {
31 elsif ($line =~ m/=============/) {
32 $save .= $line;
43 $save .= $line;
51 # Get the command line argument
  /external/clang/test/
make_test_dirs.pl 9 while ($line = <STDIN>) {
10 $line =~ /^\s*/;
12 if ($line =~ /\[([^\]]*)\]/) {
  /external/compiler-rt/lib/
int_util.c 30 void compilerrt_abort_impl(const char *file, int line, const char *function) {
31 panic("%s:%d: abort in %s", file, line, function);
38 int line, const char * message) __attribute__((noreturn));
44 void compilerrt_abort_impl(const char *file, int line, const char *function) {
45 __assert_rtn(function, file, line, "libcompiler_rt abort");
58 void compilerrt_abort_impl(const char *file, int line, const char *function) {
eprintf.c 29 const char* line, const char* file)
31 fprintf(stderr, format, assertion_expression, line, file);
  /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/chromium_org/chrome/browser/resources/
test_presubmit.py 33 def GetHighlight(self, line, error):
34 """Returns the substring of |line| that is highlighted in |error|."""
36 highlight = error_lines[error_lines.index(line) + 1]
37 return ''.join(ch1 for (ch1, ch2) in zip(line, highlight) if ch2 == '^')
39 def ShouldFailConstCheck(self, line):
40 """Checks that the 'const' checker flags |line| as a style error."""
41 error = self.checker.ConstCheck(1, line)
43 'Should be flagged as style error: ' + line)
44 self.assertEqual(self.GetHighlight(line, error), 'const')
46 def ShouldPassConstCheck(self, line)
    [all...]
  /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...]
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
SourcePosition.java 24 * line number and original bytecode address.
41 * {@code >= -1;} the line number, or {@code -1} if that
44 private final int line; field in class:SourcePosition
53 * @param line {@code >= -1;} original line number or {@code -1} if
56 public SourcePosition(CstUtf8 sourceFile, int address, int line) {
61 if (line < -1) {
62 throw new IllegalArgumentException("line < -1");
67 this.line = line;
    [all...]
  /dalvik/dx/src/com/android/dx/rop/code/
SourcePosition.java 24 * line number and original bytecode address.
41 * {@code >= -1;} the line number, or {@code -1} if that
44 private final int line; field in class:SourcePosition
53 * @param line {@code >= -1;} original line number or {@code -1} if
56 public SourcePosition(CstString sourceFile, int address, int line) {
61 if (line < -1) {
62 throw new IllegalArgumentException("line < -1");
67 this.line = line;
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
split-file-by-class 41 $filename =~ m/^(\w+)\.h$/ or die "Command line args must be .h files.\n";
51 while (my $line = <OLDFILE>) {
53 $classDefs{$currentClassName} .= $line;
54 if ($line =~ /^$classIndent};\s*$/) {
58 if ($line =~ /^(\s*)class\s+(\w+)\s+[^;]*$/) {
61 $classDefs{$currentClassName} .= $line;
64 $fileContent .= $line;
96 foreach my $line (@lines) {
97 if ($line =~ /^###CLASS###(\w+)/) {
102 print NEWHEADER $line . "\n"
    [all...]
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
SourcePosition.java 24 * line number and original bytecode address.
41 * {@code >= -1;} the line number, or {@code -1} if that
44 private final int line; field in class:SourcePosition
53 * @param line {@code >= -1;} original line number or {@code -1} if
56 public SourcePosition(CstString sourceFile, int address, int line) {
61 if (line < -1) {
62 throw new IllegalArgumentException("line < -1");
67 this.line = line;
    [all...]
  /external/chromium/net/ftp/
ftp_ctrl_response_buffer.cc 30 ParsedLine line = lines_.front(); local
34 if (!line.is_complete || line.status_code != response_buf_.status_code) {
35 line_buf_.append(line.raw_text);
41 line_buf_ = line.status_text;
42 DCHECK_EQ(line.status_code, response_buf_.status_code);
44 if (!line.is_multiline) {
54 if (!line.is_complete)
57 response_buf_.status_code = line.status_code;
58 if (line.is_multiline)
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/
diff_parser.py 51 def git_diff_to_svn_diff(line):
52 """Converts a git formatted diff line to a svn formatted line.
55 line: A string representing a line of the diff.
66 matched = match(pattern, line)
69 return line
73 def svn_diff_to_svn_diff(line):
74 return line
83 If this line is git formatted, we'll return
    [all...]
  /external/chromium_org/chrome/tools/convert_dict/
hunspell_reader.h 13 // Reads one line and returns it. Whitespace will be trimmed.
18 void TrimLine(std::string* line);
20 // Strips any comments for the given line.
21 void StripComment(std::string* line);
  /external/harfbuzz/contrib/tables/
mirroring-parse.py 13 for line in infile:
14 line = line[:-1]
15 if len(line) == 0 or line[0] == '#':
17 if '#' in line:
18 (data, _) = line.split('#', 1)
20 data = line
  /external/libffi/src/
debug.c 41 void ffi_assert(char *expr, char *file, int line)
43 fprintf(stderr, "ASSERTION FAILURE: %s at %s:%d\n", expr, file, line);
50 void ffi_type_test(ffi_type *a, char *file, int line)
52 FFI_ASSERT_AT(a != NULL, file, line);
54 FFI_ASSERT_AT(a->type <= FFI_TYPE_LAST, file, line);
55 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->size > 0, file, line);
56 FFI_ASSERT_AT(a->type == FFI_TYPE_VOID || a->alignment > 0, file, line);
57 FFI_ASSERT_AT(a->type != FFI_TYPE_STRUCT || a->elements != NULL, file, line);

Completed in 1173 milliseconds

1 2 34 5 6 7 8 91011>>