HomeSort by relevance Sort by last modified time
    Searched full:line (Results 26 - 50 of 19614) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/chromium_org/content/test/data/accessibility/
br-expected-win.txt 3 ROLE_SYSTEM_TEXT name='Text line 1 ' READONLY
4 ROLE_SYSTEM_TEXT name='Text line 2' READONLY
  /external/markdown/tests/misc/
two-spaces.txt 1 This line has two spaces at the end
3 but this line has three
4 and this is the second from last line
9 This line has three.
10 This line has none.
11 And this line two.
13 This line has none.
15 * This line has none.
multi-paragraph-block-quote.html 2 <p>This is line one of paragraph one
3 This is line two of paragraph one</p>
4 <p>This is line one of paragraph two</p>
two-spaces.html 1 <p>This line has two spaces at the end<br />
3 but this line has three <br />
4 and this is the second from last line
11 This line has three. <br />
12 This line has none.
13 And this line two.<br />
15 <p>This line has none.</p>
18 <p>This line has none.</p>
  /external/chromium_org/third_party/mesa/src/src/mesa/swrast/
s_aalinetemp.h 27 * Antialiased line template.
32 * Function to render each fragment in the AA line.
37 NAME(plot)(struct gl_context *ctx, struct LineInfo *line, int ix, int iy)
42 const GLfloat coverage = compute_coveragef(line, ix, iy);
43 const GLuint i = line->span.end;
50 line->span.end++;
51 line->span.array->coverage[i] = coverage;
52 line->span.array->x[i] = ix;
53 line->span.array->y[i] = iy;
60 line->span.array->z[i] = (GLuint) solve_plane(fx, fy, line->zPlane)
106 NAME(line)(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1) function
114 struct LineInfo line; local
    [all...]
  /external/mesa3d/src/mesa/swrast/
s_aalinetemp.h 27 * Antialiased line template.
32 * Function to render each fragment in the AA line.
37 NAME(plot)(struct gl_context *ctx, struct LineInfo *line, int ix, int iy)
42 const GLfloat coverage = compute_coveragef(line, ix, iy);
43 const GLuint i = line->span.end;
50 line->span.end++;
51 line->span.array->coverage[i] = coverage;
52 line->span.array->x[i] = ix;
53 line->span.array->y[i] = iy;
60 line->span.array->z[i] = (GLuint) solve_plane(fx, fy, line->zPlane)
106 NAME(line)(struct gl_context *ctx, const SWvertex *v0, const SWvertex *v1) function
114 struct LineInfo line; local
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/bin/
gas-comment.asm 7 .byte 0 /* at end of line? */
9 .byte 0 /* at end of line,
10 multi-line? */
12 /* start of line? */ .byte 0
15 a multi-line
16 comment? -- at start of line?
21 # Illegal; 1 seen on next line
  /external/llvm/test/FileCheck/
dos-style-eol.txt 1 // Test for using FileCheck on DOS style end-of-line
2 // This test was deliberately committed with DOS style end of line.
3 // Don't change line endings!
7 LINE 1
8 ; CHECK: {{^}}LINE 1{{$}}
10 LINE 2
11 ; CHECK: {{^}}LINE 2{{$}
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
inspect_fodder2.py 0 # line 1
7 # line 7
13 # line 13
19 # line 19
24 # line 24
27 # line 27
32 # line 32
36 # line 36
39 # line 39
43 # line 4
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
inspect_fodder2.py 0 # line 1
7 # line 7
13 # line 13
19 # line 19
24 # line 24
27 # line 27
32 # line 32
36 # line 36
39 # line 39
43 # line 4
    [all...]
  /external/chromium_org/tools/valgrind/memcheck/
PRESUBMIT.py 19 # - False: don't skip the next line.
20 # - 'skip_suppression_name': the next line is a suppression name, skip.
21 # - 'skip_param': the next line is a system call parameter error, skip.
25 for line, line_num in zip(f.NewContents(),
27 line = line.lstrip()
28 if line.startswith('#') or not line:
33 if 'insert_a_suppression_name_here' in line:
36 if suppressions.has_key(line)
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/
gas-line-err.asm 4 .line 600
6 .line 200
gas-line2-err.asm 2 .line 600
  /external/llvm/test/MC/AsmParser/
directive_line.s 4 .line
5 .line 1
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/pem/
PemReader.java 25 String line = readLine(); local
27 while (line != null && !line.startsWith(BEGIN))
29 line = readLine();
32 if (line != null)
34 line = line.substring(BEGIN.length());
35 int index = line.indexOf('-');
36 String type = line.substring(0, index);
50 String line; local
    [all...]
  /external/chromium_org/chrome/tools/convert_dict/
hunspell_reader.cc 15 // Shortcut for trimming whitespace from both ends of the line.
16 void TrimLine(std::string* line) {
17 if (line->size() > 3 &&
18 static_cast<unsigned char>((*line)[0]) == 0xef &&
19 static_cast<unsigned char>((*line)[1]) == 0xbb &&
20 static_cast<unsigned char>((*line)[2]) == 0xbf)
21 *line = line->substr(3);
26 TrimWhitespace(*line, TRIM_ALL, line);
30 const char* line = fgets(line_buffer, kLineBufferLen - 1, file); local
    [all...]
  /external/chromium/base/data/file_util_unittest/
blank_line.txt 1 The next line is blank.
blank_line_crlf.txt 1 The next line is blank.
  /external/chromium_org/base/test/data/file_util/
blank_line.txt 1 The next line is blank.
blank_line_crlf.txt 1 The next line is blank.
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/tests/
elfabssect.asm 1 %line 1+1 elfabssect.asm
3 %line 1+0 elfabssect.asm
5 %line 2+1 elfabssect.asm
8 %line 3+0 elfabssect.asm
  /external/markdown/MarkdownTest/Tests_2007/
Links, shortcut references.text 7 This one has a [line
10 This one has a [line
11 break] with a line-ending space.
13 [line break]: /foo
  /external/valgrind/main/none/tests/
shell_valid1 3 # This is a valid script with a #! line
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitperl/VCSUtils_unittest/
parseFirstEOL.pl 34 $title = "parseFirstEOL: Line without a line ending character";
35 ok(!defined(firstEOLInString("This line doesn't have a line ending character.")), $title);
38 $title = "parseFirstEOL: Line with Windows line ending.";
39 ok(firstEOLInString("This line ends with a Windows line ending.\r\n") eq "\r\n", $title);
42 $title = "parseFirstEOL: Line with Unix line ending."
    [all...]
  /external/chromium_org/third_party/jemalloc/chromium/
build-crt.py 12 line = proc.stdout.readline() variable
13 if line == '':
15 line = line.rstrip() variable
17 if line == "NMAKE : fatal error U1052: file 'makefile.sub' not found" or line == "Stop.":
19 print line

Completed in 283 milliseconds

12 3 4 5 6 7 8 91011>>