Searched refs:line (Results 376 - 400 of 3772) sorted by relevance

<<11121314151617181920>>

/external/valgrind/main/gdbserver_tests/
H A Dmcclean_after_fork.stdoutB.exp1 Breakpoint 1 at 0x........: file clean_after_fork.c, line 9.
2 Breakpoint 2 at 0x........: file clean_after_fork.c, line 20.
3 Breakpoint 3 at 0x........: file clean_after_fork.c, line 22.
/external/chromium_org/chrome/browser/web_dev_style/
H A Dcss_checker.py72 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...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/cm/
H A Dmatchbrackets.js20 var line = cm.getLineHandle(where.line), pos = where.ch - 1;
21 var match = (pos >= 0 && matching[line.text.charAt(pos)]) || matching[line.text.charAt(++pos)];
25 var style = cm.getTokenTypeAt(Pos(where.line, pos + 1));
27 var found = scanForBracket(cm, Pos(where.line, pos + (dir > 0 ? 1 : 0)), dir, style || null, config);
29 return {from: Pos(where.line, pos), to: found && found.pos,
46 var lineEnd = dir > 0 ? Math.min(where.line + maxScanLines, cm.lastLine() + 1)
47 : Math.max(cm.firstLine() - 1, where.line - maxScanLines);
48 for (var lineNo = where.line; lineN
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/tools/genperf/
H A Dgenperf.c48 unsigned int line; member in struct:keyword
177 final.line = buf2;
181 final.line[i] = buf[i];
220 fprintf(out, "#line %u \"%s\"\n", kw->line, filename);
237 fprintf(out, "%s", final.line[i]);
255 static char line[1024], tmp[1024]; local
300 while (fgets(line, 1024, in)) {
301 /* Comments start with # as the first thing on a line */
302 if (line[
[all...]
/external/chromium_org/tools/valgrind/
H A Dsuppressions.py12 # optional one-line comments anywhere in the suppressions file.
24 If ran from the command line, suppressions.py does a self-test
92 """Generator of (line_no, line) pairs that strips comments and whitespace."""
93 for (line_no, line) in enumerate(lines):
94 line = line.strip() # Drop \n
95 if line.startswith('#'):
98 # suppression. Add one to the line number as well, since most editors use
100 yield (line_no + 1, line)
117 defined_at: file:line identifyin
[all...]
/external/chromium_org/native_client_sdk/src/build_tools/
H A Deasy_template.py21 for line in template.splitlines(1): # 1 => keep line ends
22 m = statement_re.match(line)
31 while line and line[-1] in '\\"\n\r':
32 line_ending = line[-1] + line_ending
33 line = line[:-1]
35 ms = list(expr_re.finditer(line))
41 new_line += line[star
[all...]
/external/lldb/source/Symbol/
H A DLineEntry.cpp20 line(0),
46 line(_line),
61 line = 0;
74 return range.GetBaseAddress().IsValid() && line != 0;
88 if (line)
92 if (line)
93 s->Printf ("%u", line);
128 if (line)
129 s->Printf(", line = %u", line);
[all...]
/external/bison/src/
H A Dscan-gram.c0 #line 2 "scan-gram.c"
3 #line 4 "scan-gram.c"
292 /* Whether we're considered to be at the beginning of a line.
298 int yy_bs_lineno; /**< The line count. */
946 #line 1 "scan-gram.l"
966 #line 24 "scan-gram.l"
1051 #line 1052 "scan-gram.c"
1307 #line 120 "scan-gram.l"
1334 #line 1335 "scan-gram.c"
1424 fprintf( stderr, "--accepting rule at line
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/cipher/
H A Daead_test.c28 * After a number of key-value lines, a blank line or EOF indicates the end of
43 /* These are the different types of line that are found in the input file. */
81 fprintf(stderr, "Failed to init AEAD on line %u\n", line_no);
88 fprintf(stderr, "Failed to run AEAD on line %u\n", line_no);
93 fprintf(stderr, "Bad output length on line %u: %u vs %u\n", line_no,
99 fprintf(stderr, "Bad output on line %u\n", line_no);
104 fprintf(stderr, "Bad tag on line %u\n", line_no);
113 fprintf(stderr, "Failed to init AEAD on line %u\n", line_no);
120 fprintf(stderr, "Failed to decrypt on line %u\n", line_no);
125 fprintf(stderr, "Bad decrypt on line
194 char line[4096]; local
[all...]
/external/chromium_org/third_party/cld/base/
H A Ddynamic_annotations.h269 extern "C" void AnnotateRWLockCreate(const char *file, int line,
271 extern "C" void AnnotateRWLockDestroy(const char *file, int line,
273 extern "C" void AnnotateRWLockAcquired(const char *file, int line,
275 extern "C" void AnnotateRWLockReleased(const char *file, int line,
277 extern "C" void AnnotateCondVarWait(const char *file, int line,
280 extern "C" void AnnotateCondVarSignal(const char *file, int line,
282 extern "C" void AnnotateCondVarSignalAll(const char *file, int line,
284 extern "C" void AnnotatePublishMemoryRange(const char *file, int line,
287 extern "C" void AnnotatePCQCreate(const char *file, int line,
289 extern "C" void AnnotatePCQDestroy(const char *file, int line,
[all...]
/external/chromium_org/chrome/tools/build/win/
H A Dsln_deps.py38 line = sln.readline().strip()
39 if not line:
42 if line.startswith('Project("{'):
43 # Project definition line looks like
45 items = line.split('"')
54 if line == "ProjectSection(ProjectDependencies) = postProject":
55 line = sln.readline().strip()
57 while line and line != "EndProjectSection":
58 project.deps.append(line[
[all...]
/external/chromium_org/gpu/gles2_conform_support/
H A Dgenerate_gles2_embedded_data.py86 for line in lines:
87 line = line.replace("\n", "")
88 line = line.replace("\r", "")
89 line = line.replace("\\", "\\\\")
90 line = line.replace("\"", "\\\"")
92 self.files_data_c.write('"%s\\n"\n' % line)
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
H A DVTTParser.cpp126 String line; local
127 while (m_lineReader.getLine(line)) {
131 if (!hasRequiredFileIdentifier(line)) {
141 // Steps 10 - 14 - Allow a header (comment area) under the WEBVTT line.
142 collectMetadataHeader(line);
144 if (line.isEmpty()) {
152 // Step 15 - Break out of header loop if the line could be a timestamp line.
153 if (line.contains("-->"))
154 m_state = recoverCue(line);
203 hasRequiredFileIdentifier(const String& line) argument
216 collectMetadataHeader(const String& line) argument
242 collectCueId(const String& line) argument
250 collectTimingsAndSettings(const String& line) argument
278 collectCueText(const String& line) argument
300 recoverCue(const String& line) argument
309 ignoreBadCue(const String& line) argument
409 collectTimeStamp(const String& line, double& timeStamp) argument
[all...]
/external/chromium_org/third_party/skia/platform_tools/android/bin/
H A Dadb_list_devices.py66 for line in data:
68 longest_len, prop in zip(column_widths, line)]
69 for line in data:
70 for prop, width in zip(line, column_widths):
122 device. If any arguments are supplied on the command line, print the serial
140 for line in proc.stdout:
141 line = line.rstrip()
142 if line != 'List of devices attached' and line !
[all...]
/external/chromium_org/tools/android/ps_ext/
H A Dps_ext.c44 char line[256]; local
50 fgets(line, sizeof(line), f);
52 /* Skip the total 'cpu ' line and the other irrelevant ones. */
53 if (strncmp(line, "cpu", 3) != 0 || line[3] == ' ')
55 if (sscanf(line, "%s %lu %lu %lu %lu",
78 char line[256]; local
82 fgets(line, sizeof(line),
[all...]
/external/clang/bindings/python/tests/cindex/
H A Dtest_diagnostics.py10 assert tu.diagnostics[0].location.line == 1
20 assert tu.diagnostics[0].location.line == 2
24 # assert tu.diagnostics[1].location.line == 1
32 assert tu.diagnostics[0].location.line == 1
36 assert tu.diagnostics[0].fixits[0].range.start.line == 1
38 assert tu.diagnostics[0].fixits[0].range.end.line == 1
46 assert tu.diagnostics[0].location.line == 1
51 assert tu.diagnostics[0].ranges[0].start.line == 1
53 assert tu.diagnostics[0].ranges[0].end.line == 1
56 tu.diagnostics[0].ranges[1].start.line
[all...]
/external/skia/platform_tools/android/bin/
H A Dadb_list_devices.py66 for line in data:
68 longest_len, prop in zip(column_widths, line)]
69 for line in data:
70 for prop, width in zip(line, column_widths):
122 device. If any arguments are supplied on the command line, print the serial
140 for line in proc.stdout:
141 line = line.rstrip()
142 if line != 'List of devices attached' and line !
[all...]
/external/libvorbis/vq/
H A Ddistribution.c25 /* command line:
42 char *line; local
163 line=setup_line(in);
164 while(line){
172 while(!flag && sscanf(line,"%f",&code)==1){
173 line=strchr(line,',');
178 while(line && sscanf(line,"%f",&code)==1){
179 line
[all...]
/external/chromium_org/v8/test/mjsunit/
H A Ddebug-sourceinfo.js29 // 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
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DrevisionHistory.css66 .outline-disclosure.revision-history-drawer .revision-history-line {
71 .revision-history-drawer .webkit-line-number {
80 .revision-history-line-added {
84 .revision-history-line-removed {
88 .revision-history-line-separator .webkit-line-number {
92 .revision-history-line {
/external/chromium_org/third_party/icu/source/tools/gensprep/
H A DfilterRFC3454.pl92 while(defined ($line=<$inFH>)){
93 next unless $line=~ /Start\sTable/;
94 if($line =~ /A.1/){
97 if($line =~ /B.1/ && defined $b1){
100 if($line =~ /B.2/ && defined $b2){
103 if($line =~ /B.3/ && defined $b3){
106 if($line =~ /C.1.1/ && defined $c11 ){
107 createProhibitedTable($inFH,$outfile,$line);
109 if($line =~ /C.1.2/ && defined $c12 ){
110 createProhibitedTable($inFH,$outfile,$line);
[all...]
/external/icu/icu4c/source/tools/gensprep/
H A DfilterRFC3454.pl92 while(defined ($line=<$inFH>)){
93 next unless $line=~ /Start\sTable/;
94 if($line =~ /A.1/){
97 if($line =~ /B.1/ && defined $b1){
100 if($line =~ /B.2/ && defined $b2){
103 if($line =~ /B.3/ && defined $b3){
106 if($line =~ /C.1.1/ && defined $c11 ){
107 createProhibitedTable($inFH,$outfile,$line);
109 if($line =~ /C.1.2/ && defined $c12 ){
110 createProhibitedTable($inFH,$outfile,$line);
[all...]
/external/oprofile/daemon/liblegacy/
H A Dopd_parse_proc.c31 * @param line 0-terminated ASCII string
34 * Attempt to parse the string @line for map information
43 static int opd_add_ascii_map(struct opd_proc * proc, char const * line, argument
48 char const * cp = line;
59 if (sscanf(line, "%lx-%lx", &start, &end) != 2)
96 char * line; local
120 line = op_get_line(fp);
121 if (!line)
124 opd_add_ascii_map(proc, line, image_name);
125 free(line);
168 char * line; local
[all...]
/external/chromium_org/third_party/boringssl/src/crypto/perlasm/
H A Dx86_64-xlate.pl22 # - can't use multiple ops per line;
107 local *line = shift;
110 if ($line =~ /^([a-z][a-z0-9]*)/i) {
113 $line = substr($line,@+[0]); $line =~ s/^\s+//;
125 } elsif ($self->{op} =~ /movq/ && $line =~ /%xmm/) {
186 local *line = shift;
189 if ($line =~ /^\$([^,]+)/) {
192 $line
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/test/functional/lexer/
H A Dproperties.rb24 @properties << [$text, $type, $line, $pos, $index, $channel, $start, $stop]
35 text, type, line, pos, index, channel, start, stop = lexer.properties[ 0 ]
38 line.should == 1
45 text, type, line, pos, index, channel, start, stop = lexer.properties[ 1 ]
48 line.should == 1
56 text, type, line, pos, index, channel, start, stop = lexer.properties[ 2 ]
59 line.should == 2

Completed in 1345 milliseconds

<<11121314151617181920>>