HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 51 - 75 of 5407) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
BufferedLineReaderTest.cpp 48 String line; local
49 ASSERT_FALSE(reader.getLine(line));
55 String line; local
56 ASSERT_FALSE(reader.getLine(line));
58 // No input observed, so still no line.
59 ASSERT_FALSE(reader.getLine(line));
67 String line; local
68 ASSERT_TRUE(reader.getLine(line));
69 ASSERT_EQ(line, "A");
77 String line; local
90 String line; local
103 String line; local
115 String line; local
126 String line; local
138 String line; local
149 String line; local
161 String line; local
214 String line; local
247 String line; local
261 String line; local
272 String line; local
287 String line; local
    [all...]
  /build/core/
filter_symbols.sh 15 $NM -g -fp $1 | while read -a line
17 type=${line[1]}
20 echo "$PREFIX${line[0]}$SUFFIX # ${line[1]}"
  /external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/
gUnitTestInput.java 34 public int line; // line number in the script field in class:gUnitTestInput
36 public gUnitTestInput(String input, boolean isFile, int line) {
39 this.line = line;
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
CharStreamState.java 32 * line, etc...) so that we can rewind the state after scanning ahead.
40 /** What line number is the scanner at before processing buffer[p]? */
41 int line; field in class:CharStreamState
43 /** What char position 0..n-1 in line is scanner before processing buffer[p]? */
  /external/chromium_org/native_client_sdk/src/libraries/xray/
parsesymbols.c 18 const char* line) {
24 if (2 != sscanf(line, "%x %1023s", &uiaddr, symbol_text))
28 fprintf(stderr, "%s\n", line);
35 parsed_symbol = strstr(line, symbol_text);
47 char line[XRAY_LINE_SIZE]; local
60 while (NULL != fgets(line, XRAY_LINE_SIZE, f)) {
61 if (line == strstr(line, " .text ")) {
65 if (line == strstr(line, " .gnu.linkonce.t."))
    [all...]
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/tests/
gas-line-err.asm 4 .line 600
6 .line 200
  /external/chromium_org/tools/git/
git-diff-ide.py 7 Invokes git diff [args...] and inserts file:line in front of each line of diff
11 with file:line to open and jump to that point in the file.
42 """Outputs git diff extra_args with file:line inserted into relevant lines."""
46 for line in lines:
51 if (line.startswith('diff ') or
52 line.startswith('index ') or
53 line.startswith('--- ')):
54 print line
57 # Get the filename from the +++ line
    [all...]
  /external/iptables/include/iptables/
internal.h 11 extern int line;
  /external/llvm/test/MC/ARM/
full_line_comment.s 2 # this is a full line comment starting at column 1
8 # .long 1 this line is commented out
  /external/llvm/test/MC/AsmParser/
directive_line.s 4 .line
5 .line 1
  /frameworks/wilhelm/src/
assert.c 24 void __assert(const char *file, int line, const char *failedexpr)
26 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d", failedexpr, file, line);
30 void __assert2(const char *file, int line, const char *func, const char *failedexpr)
32 LOG_ALWAYS_FATAL("assertion \"%s\" failed: file \"%s\", line %d, function \"%s\"",
33 failedexpr, file, line, func);
  /system/core/liblinenoise/
linenoise.h 1 /* linenoise.h -- guerrilla line editing library against the idea that a
2 * line editing lib needs to be 20,000 lines of C code.
38 int linenoiseHistoryAdd(const char *line);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
SpacingHeuristics.pm 59 my $line = shift;
60 my $isOnlyWhiteSpace = ($line =~ m/^\s+$/);
61 $pendingEmptyLines .= $line if ($isOnlyWhiteSpace);
67 my ($out, $line) = @_;
69 printPendingEmptyLines($out, $line);
71 print $out $line;
76 my $line = shift;
77 $previousAllowedLine = $line;
83 my $line = shift;
85 if (!($pendingEmptyLines eq "") && !($previousAllowedLine =~ m/{\s*$/) && !($line =~ m/^\s*}/))
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/common/checkout/scm/
commitmessage.py 35 for line in lines[index:]:
36 if re.match("^\s*$", line):
50 lines = [line.lstrip() for line in lines]
54 line = self.message_lines[0]
56 line = line.lstrip()
58 line = re.sub("^(\s*)<.+> ", "\1", line)
59 return line
    [all...]
  /external/chromium_org/tools/grit/grit/tool/
toolbar_preprocess.py 38 for line in rclines:
40 if self._LINE_FEED_PH.search(line):
41 # Replace "$lf;" placeholder comments by an empty line.
43 if self._PH_COMMENT.search(line):
44 mm = self._COMMENT.search(line)
46 line = '%s//' % mm.group(1)
50 line = self._LINE_FEED_PH.sub(r'\\n', line)
53 mo = self._IDS_COMMAND_MACRO.search(line)
55 line = '%s_%s_%s%s' % (mo.group(1), mo.group(2), mo.group(3), mo.group(4)
    [all...]
  /external/chromium_org/net/data/websocket/
close-code-and-reason_wsh.py 15 line = request.ws_stream.receive_message()
16 if line is None:
18 if line == '-':
20 elif line == '--':
23 code, reason = line.split(' ', 1)
  /external/chromium_org/third_party/angle/src/compiler/preprocessor/
SourceLocation.h 15 SourceLocation() : file(0), line(0) { }
16 SourceLocation(int f, int l) : file(f), line(l) { }
20 return (file == other.file) && (line == other.line);
24 int line; member in struct:pp::SourceLocation
  /hardware/ti/omap3/omx/system/src/openmax_il/perf/src/
perf_config.c 32 static int assign_string_if_matches(char const *line, char const *argument,
35 static int assign_long_if_matches(char const *line, char const *argument,
37 static void read_line(PERF_Config *sConfig, char const *line, char const *tag);
38 static char const *get_value_if_matches(char const *line, char const *argument);
103 * Arg2 configuration line (trimmed of trailing white
116 void read_line(PERF_Config *cfg, char const *line, char const *tag)
121 while (*line && isspace(*line)) line++;
124 if (!*line || *line == '#') return
179 char line[PERF_CONFIG_LINELENGTH]; local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
conv.py 69 for line in f:
71 mo = re.match(r"^#define\s+(\w+)\s+(\d+)$", line)
72 if not mo and line.strip():
74 line.strip())
121 lineno, line = lineno+1, f.next()
122 assert line == '#include "pgenheaders.h"\n', (lineno, line)
123 lineno, line = lineno+1, f.next()
124 assert line == '#include "grammar.h"\n', (lineno, line)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/pgen2/
conv.py 69 for line in f:
71 mo = re.match(r"^#define\s+(\w+)\s+(\d+)$", line)
72 if not mo and line.strip():
74 line.strip())
121 lineno, line = lineno+1, f.next()
122 assert line == '#include "pgenheaders.h"\n', (lineno, line)
123 lineno, line = lineno+1, f.next()
124 assert line == '#include "grammar.h"\n', (lineno, line)
    [all...]
  /external/chromium_org/base/third_party/dynamic_annotations/
dynamic_annotations.c 74 const char *file, int line, const volatile void *lock)
78 const char *file, int line, const volatile void *lock)
82 const char *file, int line, const volatile void *lock, long is_w)
86 const char *file, int line, const volatile void *lock, long is_w)
90 const char *file, int line, const volatile void *barrier, long count,
95 const char *file, int line, const volatile void *barrier)
99 const char *file, int line, const volatile void *barrier)
103 const char *file, int line, const volatile void *barrier)
107 const char *file, int line, const volatile void *cv,
112 const char *file, int line, const volatile void *cv
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
mimify.py 59 line = self.file.readline()
60 if not line:
61 return line
63 if line == self.boundary + '\n':
64 self.peek = line
66 if line == self.boundary + '--\n':
67 self.peek = line
69 return line
78 line = self.peek
81 line = self.file.readline(
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
mimify.py 59 line = self.file.readline()
60 if not line:
61 return line
63 if line == self.boundary + '\n':
64 self.peek = line
66 if line == self.boundary + '--\n':
67 self.peek = line
69 return line
78 line = self.peek
81 line = self.file.readline(
    [all...]
  /external/proguard/src/proguard/obfuscate/
MappingReader.java 59 String line = reader.readLine(); local
61 if (line == null)
66 line = line.trim();
70 if (line.endsWith(":"))
74 className = processClassMapping(line, mappingProcessor);
80 processClassMemberMapping(className, line, mappingProcessor);
103 * Parses the given line with a class mapping and processes the
107 private String processClassMapping(String line,
113 int arrowIndex = line.indexOf("->")
    [all...]
  /external/v8/tools/
utils.py 36 for line in open(name):
37 if '#' in line:
38 line = line[:line.find('#')]
39 line = line.strip()
40 if len(line) == 0:
42 list.append(line)

Completed in 1037 milliseconds

1 23 4 5 6 7 8 91011>>