/external/kernel-headers/original/asm-x86/ |
cache.h | 4 /* L1 cache line size */
|
/external/proguard/src/proguard/ |
GPL.java | 69 String line = reader.readLine(); local 70 if (line == null) 75 line = line.trim(); 76 if (line.startsWith("at ")) 78 line = line.substring(2).trim(); 79 line = trimSuffix(line, '('); 80 line = trimSuffix(line, '.') [all...] |
/external/webkit/JavaScriptCore/tests/mozilla/ecma_2/Exceptions/ |
lexical-001.js | 4 ECMA Section: 7.2 Line Terminators 13 \u000A line feed <LF> \n 16 this test uses onerror to capture line numbers. because 24 var TITLE = "Line Terminators";
|
lexical-002.js | 4 ECMA Section: 7.2 Line Terminators 13 \u000A line feed <LF> \n 16 this test uses onerror to capture line numbers. because 24 var TITLE = "Line Terminators";
|
/external/webkit/LayoutTests/platform/android-jsc/http/tests/appcache/ |
local-content-expected.txt | 1 CONSOLE MESSAGE: line 0: Not allowed to load local resource: file:///usr/include/stdio.h
|
/external/webkit/LayoutTests/platform/android-v8/http/tests/appcache/ |
local-content-expected.txt | 1 CONSOLE MESSAGE: line 0: Not allowed to load local resource: file:///usr/include/stdio.h
|
/external/webkit/WebCore/manual-tests/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/webkit/WebKitTools/android/flex-2.5.4a/MISC/VMS/ |
mkskel.tpu | 7 ! to backslash quote (\"). For each line, insert space+space+quote 29 MOVE_VERTICAL(1); POSITION(LINE_BEGIN); !go to next line 32 POSITION(BEGINNING_OF(skelfile)); !insert five line prologue 39 POSITION(END_OF(skelfile)); !append two line epilogue
|
/frameworks/base/core/java/android/text/method/ |
ScrollingMovementMethod.java | 98 int line = layout.getLineForVertical(areatop); local 99 int linetop = layout.getLineTop(line); 101 // If the top line is partially visible, bring it all the way 102 // into view; otherwise, bring the previous line into view. 104 line--; 106 if (line >= 0) { 108 widget.getScrollX(), layout.getLineTop(line)); 125 int line = layout.getLineForVertical(areabot); local 127 if (layout.getLineTop(line+1) < areabot + 1) { 128 // Less than a pixel of this line is out of view 224 int line = layout.getLineCount() - 1; local [all...] |
/frameworks/base/core/tests/coretests/res/raw/ |
v21_winmo_65.vcf | 6 AGENT:Invalid line which must be handled correctly.
|
/frameworks/base/tools/localize/ |
SourcePos.h | 12 int line; member in class:SourcePos
|
/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...] |
logreader.js | 81 * Current line. 151 * Processes a line of V8 profiler event log. 153 * @param {string} line A line of log. 155 devtools.profiler.LogReader.prototype.processLogLine = function(line) { 156 this.processLog_([line]); 237 * Decompresses a line if it was backreference-compressed. 239 * @param {string} line Possibly compressed line. 240 * @return {string} Decompressed line [all...] |
/external/webkit/WebKit/win/WebKit.vcproj/ |
FixMIDLHeaders.pl | 57 foreach my $line (@contents) { 58 if ($line =~ /^\/\* header files for imported files \*\//) { 60 } elsif ($line =~ /^#include "oaidl\.h"/) { 63 } elsif ($line =~ /^#include "ocidl\.h"/) { 66 } elsif ($line =~ /^#include "IGEN_DOM/ && $state == 3) { 68 } elsif ($line =~ /^#include "(IGEN_DOM.*)\.h"/ && $state == 4) { 72 print OUT $line;
|
/external/webkit/WebKitTools/Scripts/webkitpy/style/processors/ |
common.py | 36 def check_no_carriage_return(line, line_number, error): 37 """Check that a line does not end with a carriage return. 39 Returns true if the check is successful (i.e. if the line does not 43 line: A string that is the line to check. 44 line_number: The line number. 49 if line.endswith("\r"):
|
/external/icu4c/layoutex/layout/ |
playout.h | 37 * The opaque type for a line in a paragraph layout. 44 * The opaque type for a visual run in a line. 208 * Reset line breaking to start from the beginning of the paragraph. 218 * Return a <code>pl_line</code> object which represents next line 219 * in the paragraph. The width of the line is specified each time so that it can 223 * @param width is the width of the line. If <code>width</code> is less than or equal 224 * to zero, a <code>ParagraphLayout::Line</code> object representing the 227 * @return a <code>ParagraphLayout::Line</code> object which represents the line. The caller 239 * Close the given line object. Line objects are create [all...] |
/external/icu4c/test/intltest/ |
textfile.cpp | 76 UBool TextFile::readLine(UnicodeString& line, UErrorCode& ec) { 102 // Remove BOM in first line, if present 107 line = str.unescape(); 111 UBool TextFile::readLineSkippingComments(UnicodeString& line, UErrorCode& ec, 114 if (!readLine(line, ec)) return FALSE; 117 ICU_Utility::skipWhitespace(line, pos, TRUE); 119 if (pos == line.length() || line.charAt(pos) == 0x23/*'#'*/) { 122 // Process line 123 if (trim) line.remove(0, pos) [all...] |
tokiter.h | 32 * line, beginning with the first unquoted '#', are recognized. 46 * Return the one-based line number of the line of the last token 53 * Return a string description of the position of the last line 64 UnicodeString line; member in class:TokenIterator
|
/external/icu4c/tools/toolutil/ |
uparse.h | 46 * This function opens the file and reads it line by line. It skips empty lines 50 * a line does not need to be terminated with a delimiter. 52 * For each line, after segmenting it, a line function is called. 54 * passed into this parser and filled by it for each line. 55 * For each field i of the line, the start pointer in fields[i][0] 57 * points behind the field, i.e., to the delimiter or the line end. 59 * The context parameter of the line function is 62 * The line function may modify the contents of the fields including th [all...] |
/external/ppp/pppd/plugins/radius/ |
radrealms.c | 48 int line = 0; local 75 line++; 87 option_error("%s: invalid line %d: %s", radrealms_config, 88 line, buffer); 101 option_error("%s: realm name missing on line %d: %s", 102 radrealms_config, line, buffer); 111 option_error("%s: server address missing on line %d: %s", 112 radrealms_config, line, buffer); 119 option_error("%s: server port missing on line %d: %s", 120 radrealms_config, line, buffer) [all...] |
/frameworks/base/core/java/android/bluetooth/ |
AtCommandResult.java | 25 * This class can represent the final response to an AT command line, and also 27 * line.<p> 30 * line are stored in a string array. The final response is stored as an 33 * line.<p> 46 private StringBuilder mResponse; // Response with CRLF line breaks 60 * single line response. 61 * @param response The single line response. 73 * Add another line to the response. 81 * Used to combine results from multiple commands in a single command line 109 * CRLF. Used to create multi-line AT command replie [all...] |
/external/bison/src/ |
location.c | 38 loc.start.line, loc.start.column); 43 loc.end.line, loc.end.column - 1); 44 else if (loc.start.line < loc.end.line) 45 fprintf (out, "-%d.%d", loc.end.line, loc.end.column - 1);
|
location.h | 32 /* The (origin-1) line that contains the boundary. 33 If this is INT_MAX, the line number has overflowed. */ 34 int line; member in struct:__anon832 48 && a.line == b.line
|
/external/jpeg/ |
ansi2knr.1 | 15 character on the line, and with a left brace as the first token on the 16 following line (ignoring possible intervening comments). It will recognize a 17 multi-line header provided that no intervening line ends with a left or right 19 that the function name must be the first thing on the line.
|