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

1 23 4 5 6 7 8 91011>>

  /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/clang/test/
make_test_dirs.pl 9 while ($line = <STDIN>) {
10 $line =~ /^\s*/;
12 if ($line =~ /\[([^\]]*)\]/) {
  /external/compiler-rt/lib/
int_util.c 28 void compilerrt_abort_impl(const char *file, int line, const char *function) {
29 panic("%s:%d: abort in %s", file, line, function);
36 int line, const char * message) __attribute__((noreturn));
40 void compilerrt_abort_impl(const char *file, int line, const char *function) {
41 __assert_rtn(function, file, line, "libcompiler_rt abort");
52 void compilerrt_abort_impl(const char *file, int line, const char *function) {
eprintf.c 27 const char* line, const char* file)
29 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/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/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/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/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/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);
  /external/webkit/Source/WebKit/chromium/src/
WebCommon.cpp 38 void failedAssertion(const char* file, int line, const char* function, const char* assertion)
40 WTFReportAssertionFailure(file, line, function, assertion);
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
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/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CharStreamState.cs 39 * line, etc...) so that we can rewind the state after scanning ahead.
50 /** <summary>What line number is the scanner at before processing buffer[p]?</summary> */
51 public int line; field in class:Antlr.Runtime.CharStreamState
53 /** <summary>What char position 0..n-1 in line is scanner before processing buffer[p]?</summary> */
  /external/clang/test/Misc/
diag-presumed.c 4 #line 100
  /external/srec/srec/include/
errhndl.h 32 int line,
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
link-warning.h 13 # define GL_LINK_WARNING1(file, line, message) \
14 GL_LINK_WARNING2 (file, line, message) /* macroexpand file and line */
15 # define GL_LINK_WARNING2(file, line, message) \
16 GL_LINK_WARNING3 (file ":" #line ": warning: " message)
  /external/qemu/
gen-charmap.py 69 def match_char_or_hex(line):
70 m = re_char.match(line)
72 m = re_hex.match(line)
82 def process_line(line,result):
83 m = re_start.match(line)
85 print "bad bad line: " + line
88 line = m.group(2)
89 m = match_char_or_hex(line)
91 print "character expected in: " + line
    [all...]
hxtool 22 line=1
29 echo "line $line: syntax error: expected ETEXI, found $str" >&2
36 echo "line $line: syntax error: expected STEXI, found $str" >&2
43 echo "line $line: syntax error: expected ETEXI, found $str" >&2
54 line=$((line+1))
62 line=
    [all...]
  /external/clang/test/Frontend/
verify.c 8 // expected-error@7 1 {{missing or invalid line number}}
11 // expected-error@10 {{missing or invalid line number}}
14 // expected-error@13 {{missing or invalid line number}}
29 #line 90
32 #line 60
35 // expected-error@+2 {{file not found}} check that multi-line handled correctly: \
43 #line -2 // expected-error {{line_error}}
52 // CHECK2-NEXT: Line 41: define_error
53 // CHECK2-NEXT: Line 43: line_error
55 // CHECK2-NEXT: Line 43: #line directive requires a positive integer argumen
    [all...]
  /external/elfutils/libdwfl/
dwfl_line_comp_dir.c 1 /* Get information from a source line record returned by libdwfl.
54 dwfl_line_comp_dir (Dwfl_Line *line)
56 if (line == NULL)
59 struct dwfl_cu *cu = dwfl_linecu (line);
  /external/mockito/src/org/mockito/internal/debugging/
MockitoDebuggerImpl.java 24 out += line("********************************");
25 out += line("*** Mockito interactions log ***");
26 out += line("********************************");
28 out += line(i.toString());
29 out += line(" invoked: " + i.getLocation());
31 out += line(" stubbed: " + i.stubInfo().stubbedAt().toString());
39 out += line("********************************");
40 out += line("*** Unused stubs ***");
41 out += line("********************************");
44 out += line(i.toString());
50 private String line(String text) { method in class:MockitoDebuggerImpl
    [all...]
  /external/webkit/Tools/iExploder/iexploder-1.3.2/tools/
osx_last_crash.rb 16 File.open(filename).readlines.each { |line|
17 #puts line
19 if line =~ /^Date.*(200.*)/
23 if line =~ /^Thread \d+ Crashed/
30 stackTrace << line
42 stackTrace.each { |line|
43 puts line

Completed in 2316 milliseconds

1 23 4 5 6 7 8 91011>>