HomeSort by relevance Sort by last modified time
    Searched full:line (Results 126 - 150 of 6501) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/webkit/LayoutTests/platform/android-v8/storage/
transaction-error-callback-expected.txt 1 CONSOLE MESSAGE: line 63: Uncaught #<an Object>
2 CONSOLE MESSAGE: line 63: Uncaught #<an Object>
  /external/webkit/LayoutTests/storage/
transaction-error-callback-expected.txt 1 CONSOLE MESSAGE: line 63: [object Object]
2 CONSOLE MESSAGE: line 63: [object Object]
  /external/webkit/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/WebCore/manual-tests/inspector/
highlight-source-line.html 2 <p>To test, open the Inspector and reload this page. Then open the Inspector's Console and click the link for the markup error. You should see the line containing the error briefly highlighted in the source view.</p>
4 <p>This line contains a markup error</i>.</p>
  /external/webkit/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,
  /frameworks/base/tools/aidl/
options.h 15 // This struct is the parsed version of the command line options
30 // takes the inputs from the command line and fills in the Options struct
  /frameworks/base/awt/java/awt/geom/
Line2D.java 31 * The Class Line2D represents a line whose data is given in high-precision
140 * Sets the data values that define the line.
308 * The x coordinate of the start line point.
313 * The y coordinate of the start line point.
318 * The x coordinate of the end line point.
323 * The y coordinate of the end line point.
338 * Constructs a new Line2D.Iterator for given line and transformation.
458 * Sets the line's endpoints.
472 * Sets the line's endpoints.
484 * Sets the line's endpoints by copying the data from another Line2D
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
SysinfoPanel.java 312 String line = br.readLine(); local
313 if (line == null) {
314 Log.d("DDMS", "Service not found " + line);
317 if ((line.startsWith("DUMP OF SERVICE ") || line.startsWith("-----")) &&
318 line.indexOf(BUGREPORT_SECTION[mMode]) > 0) {
372 String line = br.readLine(); local
373 if (line == null || line.startsWith("DUMP OF SERVICE")) {
377 if (line.startsWith("Current Battery Usage Statistics"))
410 String line = br.readLine(); local
436 String line = br.readLine(); local
488 String line = br.readLine(); local
523 String line = br.readLine(); local
559 String line = br.readLine(); local
    [all...]
  /external/openssl/crypto/perlasm/
x86_64-xlate.pl 22 # - can't use multiple ops per line;
79 local *line = shift;
82 if ($line =~ /^([a-z][a-z0-9]*)/i) {
85 $line = substr($line,@+[0]); $line =~ s/^\s+//;
135 local *line = shift;
138 if ($line =~ /^\$([^,]+)/) {
141 $line = substr($line,@+[0]); $line =~ s/^\s+//
    [all...]
  /dalvik/libcore/luni/src/main/java/java/io/
LineNumberInputStream.java 23 * Wraps an existing {@link InputStream} and counts the line terminators
24 * encountered while reading the data. Line numbering starts at 0. Recognized
25 * line terminator sequences are {@code '\r'}, {@code '\n'} and {@code "\r\n"}.
26 * When using {@code read}, line terminator sequences are always translated into
44 * {@code in}. Line numbers are counted for all data read from this stream.
47 * The non-null input stream to count line numbers.
67 * Returns the current line number for this stream. Numbering starts at 0.
69 * @return the current line number.
80 * The line number count will also be reset to the last marked
81 * line number count
    [all...]
LineNumberReader.java 21 * Wraps an existing {@link Reader} and counts the line terminators encountered
22 * while reading the data. The line number starts at 0 and is incremented any
63 * Returns the current line number for this reader. Numbering starts at 0.
65 * @return the current line number.
78 * line number associated with this marked position is also stored so that
103 * The line number count is incremented if a line terminator is encountered.
104 * Recognized line terminator sequences are {@code '\r'}, {@code '\n'} and
105 * {@code "\r\n"}. Line terminator sequences are always translated into
140 * The line number count is incremented if a line terminator is encountered
    [all...]
  /dalvik/libcore-disabled/sound/src/main/java/javax/sound/sampled/
AudioInputStream.java 37 private TargetDataLine line; field in class:AudioInputStream
50 public AudioInputStream(TargetDataLine line) {
51 this.line = line;
52 this.format = line.getFormat();
82 if (line.read(oneByte, 0, 1) == 0) {
85 framePos = line.getLongFramePosition();
109 res = line.read(b, off, l);
113 framePos = line.getLongFramePosition();
145 return line.available()
    [all...]
  /external/dbus/dbus/
dbus-auth-script.c 227 DBusString line; local
245 if (!_dbus_string_init (&line))
254 _dbus_string_free (&line);
269 while (_dbus_string_pop_line (&file, &line))
273 _dbus_string_delete_leading_blanks (&line);
292 if (_dbus_string_get_length (&line) == 0)
294 /* empty line */
297 else if (_dbus_string_starts_with_c_str (&line,
303 else if (_dbus_string_starts_with_c_str (&line,
328 else if (_dbus_string_starts_with_c_str (&line,
    [all...]
  /external/webkit/WebKitTools/Scripts/
SpacingHeuristics.pm 59 my $line = shift;
60 my $isOnlyWhiteSpace = ($line =~ m/^\s+$/);
61 $pendingEmptyLines .= $line if ($isOnlyWhiteSpace);
67 my ($out, $line) = @_;
69 printPendingEmptyLines($out, $line);
71 print $out $line;
76 my $line = shift;
77 $previousAllowedLine = $line;
83 my $line = shift;
85 if (!($pendingEmptyLines eq "") && !($previousAllowedLine =~ m/{\s*$/) && !($line =~ m/^\s*}/))
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/testrunner/
InstrumentationResultParser.java 187 for (String line : lines) {
188 parse(line);
190 Log.v(LOG_TAG, line);
195 * Parse an individual output line. Expects a line that is one of:
198 * The start of a new status line (starts with Prefixes.STATUS or Prefixes.STATUS_CODE),
204 * to the next line).
206 * <li> A line reporting a fatal error in the test run (Prefixes.STATUS_FAILED) </li>
207 * <li> A line reporting the total elapsed time of the test run. (Prefixes.TIME_REPORT) </li>
210 * @param line Text output lin
    [all...]
  /external/icu4c/test/intltest/
ucaconf.cpp 158 int32_t line = 0; local
175 line++;
193 errln("Compare result not symmetrical on line %i", line);
197 errln("Difference between ucol_strcoll and sortkey compare on line %i", line);
198 logln("Data line %s", lineB);
202 errln("Line %i is not greater or equal than previous line", line);
    [all...]
  /external/webkit/WebCore/loader/appcache/
ManifestParser.cpp 66 // Skip to the end of the line.
80 // Find the end of the line
93 String line(lineStart, tmp - lineStart + 1);
95 if (line == "CACHE:")
97 else if (line == "FALLBACK:")
99 else if (line == "NETWORK:")
101 else if (line.endsWith(":"))
106 const UChar* p = line.characters();
107 const UChar* lineEnd = p + line.length();
113 if (mode == OnlineWhitelist && p - line.characters() == 1 && *line.characters() == '*')
    [all...]
  /packages/apps/Email/src/org/apache/commons/io/
LineIterator.java 39 * String line = it.nextLine();
40 * /// do something with line
57 /** The current line. */
96 String line = bufferedReader.readLine(); local
97 if (line == null) {
100 } else if (isValidLine(line)) {
101 cachedLine = line;
113 * Overridable method to validate each line that is returned.
115 * @param line the line that is to be validated
    [all...]
  /external/iptables/
ip6tables-restore.c 117 line = 0;
172 line++;
193 DEBUGP("line %u, table '%s'\n", line, table);
196 "%s: line %u table name invalid\n",
197 program_name, line);
227 DEBUGP("line %u, chain '%s'\n", line, chain);
230 "%s: line %u chain name invalid\n",
231 program_name, line);
    [all...]
iptables-restore.c 120 line = 0;
175 line++;
196 DEBUGP("line %u, table '%s'\n", line, table);
199 "%s: line %u table name invalid\n",
200 program_name, line);
230 DEBUGP("line %u, chain '%s'\n", line, chain);
233 "%s: line %u chain name invalid\n",
234 program_name, line);
    [all...]
  /dalvik/hit/src/com/android/hit/
StackFrame.java 33 int serial, int line) {
39 mLineNumber = line;
44 case NO_LINE_NUMBER: return "No line number";
45 case UNKNOWN_LOCATION: return "Unknown line number";
  /dalvik/vm/compiler/template/armv5te-vfp/
fbinop.S 2 * Generic 32-bit floating point operation. Provide an "instr" line that
fbinopWide.S 2 * Generic 64-bit floating point operation. Provide an "instr" line that
  /external/apache-http/src/org/apache/http/message/
LineParser.java 45 * There are individual methods for parsing a request line, a
46 * status line, or a header line.
81 * Checks whether there likely is a protocol version in a line.
87 * or status line.
89 * @param buffer a buffer holding the line to inspect
91 * negative for "end of line". Whether the check tolerates
105 * Parses a request line.
107 * @param buffer a buffer holding the line to parse
111 * @return the parsed request line
    [all...]
  /external/blktrace/
verify_blkparse.c 12 char line[256], last_line[256], *p; local
35 while ((p = fgets(line, sizeof(line), f)) != NULL) {
59 strcpy(last_line, line);

Completed in 226 milliseconds

1 2 3 4 56 7 8 91011>>