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

1 2 3 45 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
CharStreamState.cs 39 * line, etc...) so that we can rewind the state after scanning ahead.
50 /** <summary>What line number is the scanner at before processing buffer[p]?</summary> */
51 public int line; field in class:Antlr.Runtime.CharStreamState
53 /** <summary>What char position 0..n-1 in line is scanner before processing buffer[p]?</summary> */
  /external/chromium_org/third_party/angle/tests/preprocessor_tests/
PreprocessorTest.cpp 14 int line = 1; local
20 for (; line < token.location.line; ++line)
  /external/clang/test/Misc/
diag-presumed.c 4 #line 100
  /external/srec/srec/include/
errhndl.h 32 int line,
  /ndk/sources/host-tools/sed-4.2.1/build-aux/
link-warning.h 13 # define GL_LINK_WARNING1(file, line, message) \
14 GL_LINK_WARNING2 (file, line, message) /* macroexpand file and line */
15 # define GL_LINK_WARNING2(file, line, message) \
16 GL_LINK_WARNING3 (file ":" #line ": warning: " message)
  /external/qemu/
gen-charmap.py 69 def match_char_or_hex(line):
70 m = re_char.match(line)
72 m = re_hex.match(line)
82 def process_line(line,result):
83 m = re_start.match(line)
85 print "bad bad line: " + line
88 line = m.group(2)
89 m = match_char_or_hex(line)
91 print "character expected in: " + line
    [all...]
hxtool 22 line=1
29 echo "line $line: syntax error: expected ETEXI, found $str" >&2
36 echo "line $line: syntax error: expected STEXI, found $str" >&2
43 echo "line $line: syntax error: expected ETEXI, found $str" >&2
54 line=$((line+1))
62 line=
    [all...]
  /external/clang/test/Frontend/
verify.c 8 // expected-error@7 1 {{missing or invalid line number}}
11 // expected-error@10 {{missing or invalid line number}}
14 // expected-error@13 {{missing or invalid line number}}
29 #line 90
32 #line 60
35 // expected-error@+2 {{file not found}} check that multi-line handled correctly: \
43 #line -2 // expected-error {{line_error}}
52 // CHECK2-NEXT: Line 41: define_error
53 // CHECK2-NEXT: Line 43: line_error
55 // CHECK2-NEXT: Line 43: #line directive requires a positive integer argumen
    [all...]
  /external/elfutils/libdwfl/
dwfl_line_comp_dir.c 1 /* Get information from a source line record returned by libdwfl.
54 dwfl_line_comp_dir (Dwfl_Line *line)
56 if (line == NULL)
59 struct dwfl_cu *cu = dwfl_linecu (line);
  /external/mockito/src/org/mockito/internal/debugging/
MockitoDebuggerImpl.java 24 out += line("********************************");
25 out += line("*** Mockito interactions log ***");
26 out += line("********************************");
28 out += line(i.toString());
29 out += line(" invoked: " + i.getLocation());
31 out += line(" stubbed: " + i.stubInfo().stubbedAt().toString());
39 out += line("********************************");
40 out += line("*** Unused stubs ***");
41 out += line("********************************");
44 out += line(i.toString());
50 private String line(String text) { method in class:MockitoDebuggerImpl
    [all...]
  /frameworks/rs/cpu_ref/linkloader/utils/
rsl_assert.cpp 29 unsigned line,
33 llvm::errs() << "rslAssert [" << file << ":" << line << "] " << expr << "\n";
37 ALOGE("rslAssert [%s:%d] %s\n", file, line, expr);
  /bootable/recovery/tools/ota/
add-property-tag.c 30 // Return nonzero if the tag should be added to this line.
31 int should_tag(const char *line, const char *propname) {
32 const char *prop = strstr(line, propname);
37 for (ptr = line; ptr < prop && isspace(*ptr); ++ptr) ;
38 if (ptr != prop) return 0; // Must be at the beginning of the line
44 // Remove existing tags from the line, return the following number (if any)
45 int remove_tag(char *line, const char *tag) {
46 char *pos = strstr(line, tag);
55 // Write line to output with the tag added, adding a number (if >0)
56 void write_tagged(FILE *out, const char *line, const char *tag, int number)
109 char line[4096]; local
    [all...]
  /external/chromium_org/third_party/mesa/src/scons/
source_list.py 7 line continuation
58 def _parse_definition(self, line):
59 """Parse a variable definition line."""
60 op_pos = line.find('=')
66 if line[op_pos - 1] in [':', '+', '?']:
72 op = line[op_pos:op_end]
73 sym = line[:op_pos].strip()
74 val = self._expand_value(line[op_end:].lstrip())
84 def _parse_line(self, line):
85 """Parse a source list line.""
    [all...]
  /external/mesa3d/scons/
source_list.py 7 line continuation
58 def _parse_definition(self, line):
59 """Parse a variable definition line."""
60 op_pos = line.find('=')
66 if line[op_pos - 1] in [':', '+', '?']:
72 op = line[op_pos:op_end]
73 sym = line[:op_pos].strip()
74 val = self._expand_value(line[op_end:].lstrip())
84 def _parse_line(self, line):
85 """Parse a source list line.""
    [all...]
  /external/icu4c/test/depstest/
dependencies.py 61 def _RemoveComment(line):
64 index = line.find("#") # Remove trailing comment.
65 if index >= 0: line = line[:index]
66 return line.rstrip() # Remove trailing newlines etc.
70 line = _RemoveComment(f.next())
71 if line: return line
77 line = _ReadLine(deps_file)
78 if not line: continu
    [all...]
  /external/chromium/chrome/browser/chromeos/
plugin_selection_policy.cc 67 string line; local
72 while (std::getline(input_stream, line)) {
74 string::size_type pos = line.find("#");
76 line = line.substr(0, pos);
78 TrimWhitespaceASCII(line, TRIM_ALL, &line);
79 if (line.find("allow") == 0) {
86 line = line.substr(5)
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/distutils/
text_file.py 16 line-by-line syntax: strip comments (as long as "#" is your
18 escaping the newline (ie. backslash at end of line), strip
23 report physical line number, even if the logical line in question
25 implementing line-at-a-time lookahead.
41 strip from "#" to end-of-line, as well as any whitespace
44 strip leading whitespace from each line before returning it
46 strip trailing whitespace (including line terminator!) from
47 each line before returning i
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/distutils/
text_file.py 16 line-by-line syntax: strip comments (as long as "#" is your
18 escaping the newline (ie. backslash at end of line), strip
23 report physical line number, even if the logical line in question
25 implementing line-at-a-time lookahead.
41 strip from "#" to end-of-line, as well as any whitespace
44 strip leading whitespace from each line before returning it
46 strip trailing whitespace (including line terminator!) from
47 each line before returning i
    [all...]
  /external/chromium_org/components/test/data/autofill/merge/tools/
reserialize_profiles_from_query.py 27 for line in serialized_profiles:
29 if line[-1] == '\n':
30 line = line[:-1]
32 values = line.split("|")
  /external/chromium_org/third_party/harfbuzz-ng/src/
hb-ot-shape-complex-sea-machine.hh 2 #line 1 "hb-ot-shape-complex-sea-machine.rl"
35 #line 36 "hb-ot-shape-complex-sea-machine.hh.tmp"
92 #line 36 "hb-ot-shape-complex-sea-machine.rl"
96 #line 67 "hb-ot-shape-complex-sea-machine.rl"
116 #line 117 "hb-ot-shape-complex-sea-machine.hh.tmp"
124 #line 88 "hb-ot-shape-complex-sea-machine.rl"
133 #line 134 "hb-ot-shape-complex-sea-machine.hh.tmp"
144 #line 1 "NONE"
147 #line 148 "hb-ot-shape-complex-sea-machine.hh.tmp"
166 #line 1 "NONE
    [all...]
  /external/elfutils/libdw/
dwarf_decl_line.c 1 /* Get line number of beginning of given function.
72 Dwarf_Sword line; local
75 &attr_mem), &line);
78 assert (line >= 0 && line <= INT_MAX);
79 *linep = line;
  /external/harfbuzz_ng/src/
hb-ot-shape-complex-sea-machine.hh 2 #line 1 "hb-ot-shape-complex-sea-machine.rl"
35 #line 36 "hb-ot-shape-complex-sea-machine.hh.tmp"
92 #line 36 "hb-ot-shape-complex-sea-machine.rl"
96 #line 67 "hb-ot-shape-complex-sea-machine.rl"
116 #line 117 "hb-ot-shape-complex-sea-machine.hh.tmp"
124 #line 88 "hb-ot-shape-complex-sea-machine.rl"
133 #line 134 "hb-ot-shape-complex-sea-machine.hh.tmp"
144 #line 1 "NONE"
147 #line 148 "hb-ot-shape-complex-sea-machine.hh.tmp"
166 #line 1 "NONE
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
Token.java 9 private int line; field in class:Token
24 return this.line;
27 public void setLine(@SuppressWarnings("hiding") int line)
29 this.line = line;
  /external/openssh/
mdoc2man.awk 39 line=""
54 line=line "\n"
55 line=line str
82 if(length(line)&&!(match(line," $")||prenl))
104 sub(" $","",line)
107 sub(" $","",line)
135 if(!nospace&&length(line)&&!(match(line," $")||prenl)
    [all...]
  /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...]

Completed in 267 milliseconds

1 2 3 45 6 7 8 91011>>