/external/webkit/JavaScriptCore/tests/mozilla/ecma/LexicalConventions/ |
7.5-3-n.js | 61 testcases[tc].reason += ( testcases[tc].passed ) ? "" : " ignored chars after line terminator of single-line comment";
|
7.5-4-n.js | 61 testcases[tc].reason += ( testcases[tc].passed ) ? "" : " ignored chars after line terminator of single-line comment";
|
7.5-5-n.js | 61 testcases[tc].reason += ( testcases[tc].passed ) ? "" : " ignored chars after line terminator of single-line comment";
|
7.5-6.js | 61 testcases[tc].reason += ( testcases[tc].passed ) ? "" : " ignored chars after line terminator of single-line comment";
|
7.5-7.js | 61 testcases[tc].reason += ( testcases[tc].passed ) ? "" : " ignored chars after line terminator of single-line comment";
|
7.5-8-n.js | 61 testcases[tc].reason += ( testcases[tc].passed ) ? "" : " ignored chars after line terminator of single-line comment";
|
7.5-9-n.js | 66 testcases[tc].reason += ( testcases[tc].passed ) ? "" : " ignored chars after line terminator of single-line comment";
|
/external/webkit/WebCore/css/ |
CSSPropertyNames.in | 74 line-height 118 text-line-through 119 text-line-through-color 120 text-line-through-mode 121 text-line-through-style 122 text-line-through-width 203 -webkit-line-break 204 -webkit-line-clamp
|
quirks.css | 32 /* Tables reset both line-height and white-space in quirks mode. */ 36 line-height: normal;
|
/external/webkit/WebCore/manual-tests/ |
print-with-height-transition-in-screen-stylesheet.html | 20 <div>B: When printing you should be able to see one line below.</div> 22 <div>C: When printing you should be able to see one line below</div>
|
/frameworks/base/awt/java/awt/ |
GradientPaint.java | 33 * corresponding color, and on the line segment connecting the two points, the 35 * same line which are not between the two specified points (outside of the 37 * the mode is cyclic, then the rest of the line repeats the color pattern of 39 * not, the mode is acyclic which means that all points on the line outside the 40 * connecting line segment are given the same color as the closest of the two 43 * The color of points that are not on the line connecting the two specified 45 * perpendicular to the connecting line and for each one, the whole line is
|
/frameworks/base/core/java/android/text/method/ |
TransformationMethod.java | 26 * from causing line breaks in single-line text fields.
|
/frameworks/base/telephony/java/com/android/internal/telephony/ |
PhoneSubInfoProxy.java | 64 * Retrieves the phone number string for line 1. 71 * Retrieves the alpha identifier for line 1.
|
/cts/tools/host/src/com/android/cts/ |
CommandParser.java | 28 * CommandParser is responsible for parsing command line arguments. To get 98 * Parse the command line into array of argument. 100 * @param line The original command line. 103 public static CommandParser parse(final String line) 108 Matcher m = p.matcher(line);
|
/development/pdk/docs/porting/ |
source_setup_guide.jd | 46 <p>This snippet includes an artificial line break to maintain a print-friendly document.</p> 58 # Line commented out by installer because it failed to verify: 60 # Line commented out by installer because it failed to verify: 62 # Line commented out by installer because it failed to verify: 64 # Line commented out by installer because it failed to verify: 72 This snippet includes an artificial line break to maintain a print-friendly document.
|
/external/bluetooth/glib/gio/xdgmime/ |
xdgmimeparent.c | 129 char line[255]; local 142 while (fgets (line, 255, file) != NULL) 145 if (line[0] == '#') 148 sep = strchr (line, ' '); 156 if (strcmp (list->parents[i].mime, line) == 0) 171 list->parents[list->n_mimes].mime = strdup (line);
|
/external/iproute2/ip/ |
ip.c | 96 char *line = NULL; local 114 while (getcmdline(&line, &len, stdin) != -1) { 118 largc = makeargs(line, largv, 100); 120 continue; /* blank line */ 129 if (line) 130 free(line);
|
/external/proguard/docs/manual/retrace/ |
usage.html | 75 <td>matches a line number inside a method (e.g. 85 of the restored stack trace depends on the presence of line number tables in 89 <li>If all line numbers have been preserved while obfuscating the application, 93 <li>If the line numbers have been removed, mapping obfuscated method names 95 possible original method names for each line in the stack trace. The user 102 Preserving line number tables is explained in detail in this <a
|
/external/qemu/android/tools/ |
gen-hw-config.py | 83 for line in open(sourceFile): 84 line = line.strip() variable 86 if len(line) == 0 or line[0] in ";#": 88 key, value = line.split('=')
|
/external/v8/test/message/ |
testcfg.py | 52 for line in f: 53 if (not line.startswith('#')) and (not line.strip()): 58 for line in f: 59 if not line.strip(): 61 pattern = re.escape(line.rstrip() % env)
|
/external/webkit/JavaScriptCore/tests/mozilla/ecma/SourceText/ |
6-2.js | 45 sequence \u000A, for example, occurs within a single-line comment, it is 46 interpreted as a line terminator (Unicode character 000A is line feed) and 49 program, it is likewise interpreted as a line terminator, which is not 51 cause a line feed to be part of the string value of a string literal. In 56 the literal and is never interpreted as a line terminator or as a quote mark
|
/external/webkit/WebCore/editing/ |
InsertLineBreakCommand.cpp | 169 // Apply the typing style to the inserted line break, so that if the selection 171 // FIXME: We shouldn't always apply the typing style to the line break here, 176 // will either (a) select the line break we inserted, or it will (b) be a caret just 177 // before the line break (if the line break is at the end of a block it isn't selectable). 178 // So, this next call sets the endingSelection() to a caret just after the line break
|
/external/webkit/WebCore/rendering/ |
RootInlineBox.h | 136 // Where this line ended. The exact object and the position within that object are stored so that 137 // we can create an InlineIterator beginning just after the end of this line. 145 // Floats hanging off the line are pushed into this vector during layout. It is only 146 // good for as long as the line has not been marked dirty. 149 // The height of the block at the end of this line. This is where the next line starts.
|
/external/webkit/WebKit/chromium/src/js/ |
InspectorControllerImpl.js | 105 devtools.InspectorBackendImpl.prototype.addBreakpoint = function(sourceID, line, condition) 107 devtools.tools.getDebuggerAgent().addBreakpoint(sourceID, line, condition); 111 devtools.InspectorBackendImpl.prototype.removeBreakpoint = function(sourceID, line) 113 devtools.tools.getDebuggerAgent().removeBreakpoint(sourceID, line); 116 devtools.InspectorBackendImpl.prototype.updateBreakpoint = function(sourceID, line, condition) 118 devtools.tools.getDebuggerAgent().updateBreakpoint(sourceID, line, condition);
|
/external/webkit/WebKitTools/Scripts/ |
detect-mismatched-virtual-const | 104 my $line = $_; 105 chomp($line); 106 if ($line =~ m/ [tT] WebCore::(.+)$/) { 115 # print "line: $line\nclass: $class\nmethod: $method\nsignature: $signature\nconst: $const\n\n"; 125 print "unmatched line $method\n\n"
|