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

1 2 34 5 6 7 8 91011>>

  /external/qemu/
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/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
  /external/webkit/Tools/iExploder/iexploder-1.7.2/tools/
osx_last_crash.rb 31 File.open(filename).readlines.each { |line|
32 #puts line
34 if line =~ /^Date.*(200.*)/
38 if line =~ /^Thread \d+ Crashed/
45 stackTrace << line
57 stackTrace.each { |line|
58 puts line
  /frameworks/compile/linkloader/utils/
rsl_assert.cpp 29 unsigned line,
33 llvm::errs() << "rslAssert [" << file << ":" << line << "] " << expr << "\n";
37 ALOGE("rslAssert [%s:%d] %s\n", file, line, expr);
  /bootable/recovery/tools/ota/
add-property-tag.c 30 // Return nonzero if the tag should be added to this line.
31 int should_tag(const char *line, const char *propname) {
32 const char *prop = strstr(line, propname);
37 for (ptr = line; ptr < prop && isspace(*ptr); ++ptr) ;
38 if (ptr != prop) return 0; // Must be at the beginning of the line
44 // Remove existing tags from the line, return the following number (if any)
45 int remove_tag(char *line, const char *tag) {
46 char *pos = strstr(line, tag);
55 // Write line to output with the tag added, adding a number (if >0)
56 void write_tagged(FILE *out, const char *line, const char *tag, int number)
109 char line[4096]; local
    [all...]
  /external/chromium/chrome/browser/chromeos/
plugin_selection_policy.cc 67 string line; local
72 while (std::getline(input_stream, line)) {
74 string::size_type pos = line.find("#");
76 line = line.substr(0, pos);
78 TrimWhitespaceASCII(line, TRIM_ALL, &line);
79 if (line.find("allow") == 0) {
86 line = line.substr(5)
    [all...]
  /external/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
77 first_diff_line: The first filename line of a diff file.
78 If this line is git formatted, we'll return a
96 If deleted_line_number is zero, it means this line is newly added
    [all...]
  /external/elfutils/libdw/
dwarf_decl_line.c 1 /* Get line number of beginning of given function.
72 Dwarf_Sword line; local
75 &attr_mem), &line);
78 assert (line >= 0 && line <= INT_MAX);
79 *linep = line;
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
Token.java 9 private int line; field in class:Token
24 return this.line;
27 public void setLine(@SuppressWarnings("hiding") int line)
29 this.line = line;
  /external/openssh/
mdoc2man.awk 39 line=""
54 line=line "\n"
55 line=line str
82 if(length(line)&&!(match(line," $")||prenl))
104 sub(" $","",line)
107 sub(" $","",line)
135 if(!nospace&&length(line)&&!(match(line," $")||prenl)
    [all...]
  /external/webkit/Tools/android/flex-2.5.4a/MISC/
debflex.awk 1 # Clarify the flex debug trace by substituting first line of each rule.
31 line = 0;
37 line++;
54 rules[line] = $0;
60 line = 0;
85 if (0 != line) {
88 if (rules[line]) {
94 source, line, text, rules[line]);
98 printf "%s:%d: *** No such rule.\n", source, line;
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/lexer/
Lexer.java 15 private int line; field in class:Lexer
61 int start_line = this.line;
88 this.line++;
93 this.line++;
149 accept_line = this.line;
166 this.line = accept_line;
181 this.line = accept_line;
195 this.line = accept_line;
209 this.line = accept_line;
223 this.line = accept_line
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/log/event/
BugReportImporter.java 40 String line; local
41 while ((line = reader.readLine()) != null) {
42 if (TAG_HEADER.equals(line)) {
67 String line; local
70 while ((line = reader.readLine()) != null) {
71 if (LOG_HEADER.equals(line)) {
76 content.add(line);
82 String line; local
85 while ((line = reader.readLine()) != null) {
86 if (line.startsWith(HEADER_TAG) == false)
    [all...]
  /external/elfutils/libdwfl/
dwfl_module_getsrc_file.c 81 inline const char *INTUSE(dwarf_line_file) (const Dwarf_Line *line)
83 return line->files->info[line->file].name;
85 inline Dwarf_Line *dwfl_line (const Dwfl_Line *line)
87 return &dwfl_linecu (line)->die.cu->lines->info[line->idx];
89 inline const char *dwfl_line_file (const Dwfl_Line *line)
91 return INTUSE(dwarf_line_file) (dwfl_line (line));
94 /* Search through all the line number records for a matching
95 file and line/column number. If any of the numbers is zero
101 Dwarf_Line *line = &cu->die.cu->lines->info[cnt]; local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/android/rendering/
GLExtras.cpp 101 SkIRect line; local
105 line.fLeft = r.fLeft - borderWidth;
106 line.fRight = r.fRight + borderWidth;
107 line.fTop = r.fTop - borderWidth;
108 line.fBottom = r.fBottom + borderWidth;
109 if (clip.intersects(line)) {
110 clip.op(line, SkRegion::kReverseDifference_Op);
113 line = clip.getBounds();
114 if (SkIRect::Intersects(startRect, line)) {
118 line = clip.getBounds()
    [all...]
  /external/oprofile/libpopt/
poptconfig.c 14 static void configLine(poptContext con, char * line)
30 if (strncmp(line, con->appName, nameLength)) return;
32 line += nameLength;
33 if (*line == '\0' || !isspace(*line)) return;
35 while (*line != '\0' && isspace(*line)) line++;
36 entryType = line;
37 while (*line == '\0' || !isspace(*line)) line++
    [all...]
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
tst-pcre.c 38 char *line = NULL; local
66 if ((len = getline (&line, &line_len, f)) <= 0
67 || strncmp (line, "# PCRE", 6) != 0)
71 free (line);
77 while ((len = getline (&line, &line_len, f)) > 0)
84 if (line[len - 1] == '\n')
85 line[--len] = '\0';
87 if (line[0] == '#')
90 if (line[0] == '\0')
99 if (line[0] == '/'
    [all...]
  /external/valgrind/main/memcheck/tests/
xml1.stderr.exp 9 <line>...</line>
10 <line>...</line>
11 <line>...</line>
12 <line>...</line>
43 <line>...</line>
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
DefaultHdfParser.java 43 String line; local
44 while ((line = lineReader.readLine()) != null) {
45 parseLine(line, output, context, lineReader, dataFileName, errorHandler);
49 private void parseLine(String line, Data output, List<String> context,
52 line = stripComment(line);
55 if ((split = split(line, "=")) != null) {
58 } else if ((split = split(line, "<<")) != null) {
64 } else if ((split = split(line, "{")) != null) {
68 } else if (split(line, "}") != null)
78 errorHandler.error(lineReader.getLineNumber(), line, dataFileName, "Bad HDF syntax"); local
98 String line; local
    [all...]
  /external/v8/tools/
jsmin.py 93 declarations. (These last two must be on one line including the opening
194 The compressed version hopefully does the same thing. Line breaks are
204 for line in re.split(r"\n", text):
205 line = line.replace("\t", " ")
207 m = re.search(r"\*/", line)
209 line = line[m.end():]
216 line = re.sub(r"/\*.*?\*/", " ", line)
    [all...]
  /external/openssl/crypto/perlasm/
ppc-xlate.pl 74 my $line = join(",",@_);
75 if ($line =~ /^"(.*)"$/)
126 while($line=<>) {
128 $line =~ s|[#!;].*$||; # get rid of asm-style comments...
129 $line =~ s|/\*.*\*/||; # ... and C-style comments...
130 $line =~ s|^\s+||; # ... and skip white spaces in beginning...
131 $line =~ s|\s+$||; # ... and at the end
134 $line =~ s|\b\.L(\w+)|L$1|g; # common denominator for Locallabel
135 $line =~ s|\bL(\w+)|\.L$1|g if ($dotinlocallabels);
139 $line =~ s|(^[\.\w]+)\:\s*||
    [all...]
  /external/valgrind/main/exp-sgcheck/tests/
hsg.stderr.exp 9 <line>...</line>
10 <line>...</line>
11 <line>...</line>
12 <line>...</line>
13 <line>...</line>
    [all...]
  /system/core/sh/
mkbuiltins 82 while read line
84 set -- $line
88 echo $line >&3
89 echo $line >&4
93 l1="${line###}"
94 [ "$l1" != "$line" ] && continue
  /external/valgrind/tsan/
suppressions.cc 77 void PutBackSkipComments(string line);
78 bool ParseSuppressionToolsLine(Suppression* supp, string line);
79 bool IsExtraLine(string line);
80 bool ParseStackTraceLine(StackTraceTemplate* trace, string line);
123 string line(first, next_ - first);
128 return line;
132 string line; local
134 line = put_back_stack_.top();
136 return line;
139 line = NextLine()
265 string line = NextLineSkipComments(); local
288 string line; local
    [all...]
  /external/clang/www/
builtins.py 150 for line in fileinput.input(inplace=1):
152 if builtin in line:
153 line = line.replace(builtin, repl)
156 if unh in line:
158 sys.stdout.write(line)

Completed in 1863 milliseconds

1 2 34 5 6 7 8 91011>>