/libcore/luni/src/main/java/java/io/ |
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 * <p>The line number count is incremented if a line terminator is encountered [all...] |
/external/bison/build-aux/ |
gitlog-to-changelog | 65 --append-dot append a dot to the first line of each commit message if 80 this includes the "cherry picked from commit ..." line, 93 at the beginning of a log message line. They are not copied to the output. 107 a line) referring to a commit in the current project, and CODE refers to one 109 more blank line. 150 # (alone on a line) referring to a commit in the current project, and 152 # Pairs must be separated by one or more blank line. 164 while (defined (my $line = <F>)) 166 $line =~ /^\#/ 168 chomp $line; [all...] |
/external/chromium_org/chrome/browser/resources/inspect/ |
inspect.js | 374 var line = event.target.parentNode; 375 if (!line.classList.contains('fresh') || 376 line.classList.contains('empty')) 379 commitFreshLineIfValid(true /* select new line */); 431 var line = lines[i]; 432 var portInput = line.querySelector('.port:not(.invalid)'); 433 var locationInput = line.querySelector('.location:not(.invalid)'); 452 var line = document.createElement('div'); 453 line.className = 'port-forwarding-pair'; 456 line.appendChild(portInput) [all...] |
/external/chromium_org/chrome/browser/resources/web_dev_style/ |
css_checker.py | 72 def braces_have_space_before_and_nothing_after(line): 76 $ # must be at the end of a line""", 78 return brace_space_reg.search(line) 80 def classes_use_dashes(line): 87 m = class_reg.search(line) 93 def close_brace_on_new_line(line): 101 return ('}' in line and re.search(r'[^ }]', line) and 102 not frame_reg.match(line)) 104 def colons_have_space_after(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/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
t038lexerRuleLabel.g | 10 print $WS.line
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t034tokenLabelPropertyRef.g | 10 print $t.line
|
t038lexerRuleLabel.g | 10 print $WS.line
|
/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);
|
/external/bluetooth/bluedroid/stack/include/ |
wcassert.h | 38 extern "C" wc_assert(char *message, char *file, UINT32 line); 40 void wc_assert(char *message, char *file, UINT32 line); 43 #define WC_ASSERT(_x) if ( !(_x) ) wc_assert("ASSERT at %s line %d\n", __FILE__, __LINE__); 44 #define WC_ASSERT_ALWAYS() wc_assert("ASSERT! at %s line %d\n", __FILE__, __LINE__);
|
/external/chromium/chrome/browser/debugger/manual_tests/ |
debugger-step-on-for-in-statements.html | 14 /* place breakpoint on next line and click continue */ debugger; 24 Click the button and when the debugger breaks, set a breakpoint on the first line in the loop 32 TEST 2: Click 'Step over'. Debugger should step inside the loop to the next statement line.<br> 34 TEST 4: 'Step over' to the statement line and then 'Step over' again. Debugger should pause on
|
/external/chromium/chrome/browser/importer/ |
mork_reader.cc | 121 std::string line; 122 if (!ReadLine(&line) || 123 line.compare("// <!-- <mdb:mork:z v=\"1.4\"/> -->") != 0) 127 while (ReadLine(&line)) { 130 size_t len = line.size(); 131 while (idx < len && line[idx] == ' ') 136 // Look at the line to figure out what section type this is 137 if (StartsWithASCII(&line[idx], "< <(a=c)>", true)) { 140 ParseMap(line, idx, &column_name_map); 155 } else if (StartsWithASCII(&line[idx], "<(", true)) [all...] |
/external/chromium/net/base/ |
net_switches.h | 5 // Defines all the "net" command-line switches.
|
/external/chromium/net/data/proxy_resolver_v8_unittest/ |
ends_with_comment.js | 7 // would append some functions to the script; the first line of
|
/external/chromium-libpac/test/js-unittest/ |
ends_with_comment.js | 7 // would append some functions to the script; the first line of
|
/external/chromium-trace/trace-viewer/src/tracing/importer/v8/ |
log_reader.js | 33 * Parses a line of CSV-encoded values. Returns an array of fields. 35 * @param {string} line Input line. 37 CsvParser.prototype.parseLine = function(line) { 41 var endPos = line.length; 45 var fieldMatch = fieldRe.exec(line.substr(pos)); 77 * Current line. 111 * Processes a line of V8 profiler event log. 113 * @param {string} line A line of log [all...] |
/external/chromium_org/chrome/app/resources/platform_locale_settings/ |
locale_settings_cros_ko.xtb | 4 <!-- TODO(jungshik): remove this line once we fix bug 14691 -->
|
/external/chromium_org/net/data/proxy_resolver_v8_unittest/ |
ends_with_comment.js | 7 // would append some functions to the script; the first line of
|
/external/chromium_org/third_party/WebKit/ManualTests/inspector/ |
debugger-step-on-do-while-statements.html | 5 /* place breakpoint on next line and click continue */ debugger; 17 Click the button and when the debugger breaks, set a breakpoint on the first line in the loop 25 TEST 2: Click 'Step over'. Debugger should step inside the loop to the next statement line. 26 'Step over' until the debugger reaches the 'while' line. Click 'Step into' - the debugger should
|
debugger-step-on-for-in-statements.html | 14 /* place breakpoint on next line and click continue */ debugger; 24 Click the button and when the debugger breaks, set a breakpoint on the first line in the loop 32 TEST 2: Click 'Step over'. Debugger should step inside the loop to the next statement line.<br> 34 TEST 4: 'Step over' to the statement line and then 'Step over' again. Debugger should pause on
|
/external/chromium_org/third_party/skia/src/svg/ |
SkSVGLine.h | 16 DECLARE_SVG_INFO(Line);
|
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/dbgfmts/dwarf2/tests/pass32/ |
dwarf32-err.errwarn | 5 -:6: error: line number required 6 -:7: error: line number required 7 -:8: error: line number required 8 -:11: error: line number required
|