/external/chromium_org/chrome/browser/resources/print_preview/previewarea/ |
margin_control.html | 2 <div class="margin-control-line"></div>
|
/external/chromium_org/chrome/tools/convert_dict/ |
hunspell_reader.h | 13 // Reads one line and returns it. Whitespace will be trimmed. 18 void TrimLine(std::string* line); 20 // Strips any comments for the given line. 21 void StripComment(std::string* line);
|
/external/chromium_org/content/test/data/accessibility/ |
hr-expected-android.txt | 3 android.view.View clickable name='Dividing line'
|
/external/chromium_org/third_party/WebKit/ManualTests/resources/ |
load-deferrer-script-element.js | 4 setTimeout(function() { if (runningModal) log("Error: This line should not show up!"); }, 3000);
|
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/ |
markselection.js | 39 return pos1.line - pos2.line || pos1.ch - pos2.ch; 46 for (var line = from.line;;) { 47 var start = line == from.line ? from : Pos(line, 0); 48 var endLine = line + CHUNK_SIZE, atEnd = endLine >= to.line; 54 line = endLine [all...] |
/external/chromium_org/third_party/angle_dx11/tests/preprocessor_tests/ |
PreprocessorTest.cpp | 14 int line = 1; local 20 for (; line < token.location.line; ++line)
|
/external/chromium_org/v8/test/mjsunit/ |
debug-sourceinfo.js | 29 // For this test to work this file MUST have CR LF line endings.
68 // This is the last line of entire file (note: starting at 0).
70 // This is the last column of last line (note: starting at 0 and +2, due
74 // This magic number is the length or the first line comment (actually number
82 // The position of the first line of d(), i.e. "x = 1 ;".
84 // The line # of the first line of d() (note: starting at 0).
102 // Test that when running through source positions the position, line and
105 var line;
variable 111 if (line == location.line) { [all...] |
/external/clang/test/CodeGen/ |
2010-07-08-DeclDebugLineNo.c | 2 // Insure that dbg.declare lines for locals refer to correct line number records. 5 int l = 0; // line #4: CHECK: {{call.*llvm.dbg.declare.*%l.*\!dbg }}[[variable_l:![0-9]+]] 6 int p = 0; // line #5: CHECK: {{call.*llvm.dbg.declare.*%p.*\!dbg }}[[variable_p:![0-9]+]] 8 // Now match the line number records:
|
/external/clang/test/CodeGenObjC/ |
debug-info-ivars.m | 21 // CHECK: {{.*}} [ DW_TAG_member ] [i] [line 10, size 32, align 32, offset 0] [protected] [from int] 22 // CHECK: {{.*}} [ DW_TAG_member ] [flag_1] [line 11, size 9, align 32, offset 0] [protected] [from unsigned int] 23 // CHECK: {{.*}} [ DW_TAG_member ] [flag_2] [line 12, size 9, align 32, offset 1] [protected] [from unsigned int] 24 // CHECK: {{.*}} [ DW_TAG_member ] [flag_3] [line 14, size 9, align 32, offset 3] [protected] [from unsigned int]
|
/external/clang/test/FixIt/ |
fixit-cxx11-attributes.cpp | 40 // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:26-[[@LINE-1]]:26}:"[{{\[}}a]]" 41 // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:33-[[@LINE-2]]:39}:"" 43 // CHECK: fix-it:"{{.*}}":{[[@LINE-4]]:26-[[@LINE-4]]:26}:"[{{\[}}b]]" 44 // CHECK: fix-it:"{{.*}}":{[[@LINE-2]]:34-[[@LINE-2]]:40}:"" 46 // CHECK: fix-it:"{{.*}}":{[[@LINE-1]]:26-[[@LINE-1]]:26}:"[{{\[}}c]] [all...] |
/external/clang/test/Index/ |
annotate-comments-property-accessor.m | 16 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-property-accessor.m" line="[[@LINE-1]]" column="51"><Name>MyProperty</Name><USR>c:objc(cs)AppDelegate(py)MyProperty</USR><Declaration>- (int)ReadonlyGetter;</Declaration><Abstract><Para> This is ReadonlyProperty</Para></Abstract></Function>] 22 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-property-accessor.m" line="[[@LINE-1]]" column="15"><Name>GeneralProperty</Name><USR>c:objc(cs)AppDelegate(py)GeneralProperty</USR><Declaration>- (int)GeneralProperty;</Declaration><Abstract><Para> This is GeneralProperty</Para></Abstract></Function>] 23 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-property-accessor.m" line="[[@LINE-2]]" column="15"><Name>GeneralProperty</Name><USR>c:objc(cs)AppDelegate(py)GeneralProperty</USR><Declaration>- (void)setGeneralProperty:(int)GeneralProperty;</Declaration><Abstract><Para> This is GeneralProperty</Para></Abstract></Function>] 32 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-property-accessor.m" line="[[@LINE-4]]" column="32"><Name>PropertyInPrimaryClass</Name><USR>c:objc(cs)AppDelegate(py)PropertyInPrimaryClass</USR><Declaration>- (id)PropertyInPrimaryClass;</Declaration><Abstract><Para> This is PropertyInPrimaryClass</Para></Abstract></Function>] 33 // CHECK: FullCommentAsXML=[<Function isInstanceMethod="1" file="{{[^"]+}}annotate-comments-property-accessor.m" line="[[@LINE-5]]" column="32"><Name>PropertyInPrimaryClass</Name><USR>c:objc(cs)AppDelegate(py)PropertyInPrimar (…) [all...] |
/external/mdnsresponder/mDNSPosix/ |
Services.txt | 7 # backslash to distinguish if from a comment line. 9 # Note that any line beginning with white space is considered a blank line. 16 # <zero or more strings for the text record, one string per line>
|
/external/opencv/cv/src/ |
cvcalcimagehomography.cpp | 51 cvCalcImageHomography( float* line, CvPoint3D32f* _center, 60 CvMat rx = cvMat( 1, 3, CV_32F, line ); 74 if( !line || !_center || !_intrinsic || !_homography ) 77 norm_xy = cvSqrt( line[0] * line[0] + line[1] * line[1] ); 78 xy_cosa = line[0] / norm_xy; 79 xy_sina = line[1] / norm_xy; 81 norm_xz = cvSqrt( line[0] * line[0] + line[2] * line[2] ) [all...] |
/external/openssh/contrib/cygwin/ |
sshd-inetd | 2 # To do so, the line below should be uncommented.
|
/external/skia/tests/ |
PathOpsCubicLineIntersectionTest.cpp | 16 SkDLine line; member in struct:lineCubic 37 const SkDLine& line = lineCubicTests[iIndex].line; local 38 SkASSERT(ValidLine(line)); 43 int order2 = reduce2.reduce(line); 49 SkDebugf("[%d] line order=%d\n", iIndex, order2); 54 int roots = i.intersect(cubic, line); 59 SkDPoint xy2 = line.ptAtT(tt2); 81 const SkDLine& line = lineCubicTests[iIndex].line; local [all...] |
/external/v8/test/mjsunit/ |
debug-sourceinfo.js | 29 // For this test to work this file MUST have CR LF line endings.
68 // This is the last line of entire file (note: starting at 0).
70 // This is the last column of last line (note: starting at 0 and +2, due
74 // This magic number is the length or the first line comment (actually number
82 // The position of the first line of d(), i.e. "x = 1 ;".
84 // The line # of the first line of d() (note: starting at 0).
102 // Test that when running through source positions the position, line and
105 var line;
variable 111 if (line == location.line) { [all...] |
/external/valgrind/main/drd/tests/ |
fp_race_xml.stderr.exp | 9 <line>...</line> 10 <line>...</line> 11 <line>...</line> 12 <line>...</line> 48 <line>...</line> [all...] |
/external/valgrind/main/memcheck/tests/ |
badjump2.stderr.exp-kfail | 1 Jump to the invalid address stated on the next line
|
/ndk/sources/host-tools/sed-4.2.1/testsuite/ |
numsub.sed | 5 # The second line should be deleted. ssed 3.55-3.58 do not.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/tracedmodules/ |
__init__.py | 3 takes the real line numbers into account.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/tracedmodules/ |
__init__.py | 3 takes the real line numbers into account.
|
/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...] |
/build/tools/ |
check_radio_versions.py | 30 for line in f: 31 line = line.strip() variable 32 if line.startswith("require"): 33 key, value = line.split()[1].split("=", 1) 59 for line in f: 60 line = line.strip() variable 61 if not line or line.startswith("#"): continu [all...] |
/external/bison/examples/calc++/ |
calc++-parser.yy | 0 #line 10196 "../../doc/bison.texi" 6 #line 10214 "../../doc/bison.texi" 11 #line 10227 "../../doc/bison.texi" 15 #line 10240 "../../doc/bison.texi" 22 #line 10255 "../../doc/bison.texi" 25 #line 10265 "../../doc/bison.texi" 32 #line 10280 "../../doc/bison.texi" 36 #line 10295 "../../doc/bison.texi" 42 #line 10309 "../../doc/bison.texi" 47 #line 10320 "../../doc/bison.texi [all...] |
/external/chromium_org/third_party/sqlite/src/tool/ |
split-sqlite3c.tcl | 21 while {[gets $in line]} { 22 if {[regexp $BEGIN $line]} break 23 puts $out1 $line 36 while {[gets $in line]>=0} { 38 append buf $line\n 39 if {[regexp $end $line]} break 62 while {[regexp $BEGIN $line]} { 65 gather_one_file $line buf n 73 while {[gets $in line]>=0} { 74 if {[regexp $BEGIN $line]} brea [all...] |