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

12 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
RecognitionException.as 56 * knows its state (such as current input symbol and line info) that
59 * perhaps print an entire line of input not just a single token, for example.
84 /** Track the line at which the error occurred in case this is
86 * unexpected char doesn't carry the line info.
88 public var line:int; variable
93 * imaginary nodes w/o line/col info. We now search backwards looking
94 * for most recent token with line/col info, but notify getErrorHeader()
107 this.line = token.line;
115 this.line = CharStream(input).line
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRRecognitionException.h 40 NSInteger line; variable
47 @property (getter=getLine, setter=setLine:) NSInteger line; variable
ANTLRStringStream.h 37 NSInteger line; variable
49 @property (getter=getLine,setter=setLine:) NSInteger line; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRRecognitionException.h 40 NSInteger line; variable
47 @property (getter=getLine, setter=setLine:) NSInteger line; variable
ANTLRStringStream.h 37 NSInteger line; variable
49 @property (getter=getLine,setter=setLine:) NSInteger line; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRRecognitionException.h 40 NSInteger line; variable
47 @property (getter=getLine, setter=setLine:) NSInteger line; variable
ANTLRStringStream.h 37 NSInteger line; variable
49 @property (getter=getLine,setter=setLine:) NSInteger line; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRRecognitionException.h 40 NSUInteger line; variable
49 @property (assign) NSUInteger line; variable
ANTLRStringStream.h 37 NSUInteger line; variable
101 @property (assign) NSUInteger line; variable
  /external/bison/etc/
bench.pl.in 186 line
187 | input line
190 line: label
  /external/chromium_org/net/tools/quic/
quic_client_bin.cc 6 // on --port and requests URLs specified on the command line.
28 CommandLine* line = CommandLine::ForCurrentProcess(); local
29 if (line->HasSwitch("h") || line->HasSwitch("help")) {
41 if (line->HasSwitch("port")) {
43 if (base::StringToInt(line->GetSwitchValueASCII("port"), &port)) {
47 if (line->HasSwitch("address")) {
48 FLAGS_address = line->GetSwitchValueASCII("address");
50 if (line->HasSwitch("hostname")) {
51 FLAGS_hostname = line->GetSwitchValueASCII("hostname")
    [all...]
quic_server_bin.cc 24 CommandLine* line = CommandLine::ForCurrentProcess(); local
25 if (line->HasSwitch("h") || line->HasSwitch("help")) {
38 if (line->HasSwitch("quic_in_memory_cache_dir")) {
40 line->GetSwitchValueASCII("quic_in_memory_cache_dir");
43 if (line->HasSwitch("port")) {
45 if (base::StringToInt(line->GetSwitchValueASCII("port"), &port)) {
  /external/chromium_org/third_party/WebKit/Source/platform/clipboard/
ClipboardUtilities.cpp 49 // Line separator is \r\n per RFC 2483 - however, for compatibility
53 // be found, return an empty string. This is in line with the HTML5 spec.
55 String& line = items[i]; local
56 line = line.stripWhiteSpace();
57 if (line.isEmpty())
59 if (line[0] == '#')
61 KURL url = KURL(ParsedURLString, line);
  /external/chromium_org/third_party/WebKit/Tools/Scripts/
export-w3c-performance-wg-tests 76 for line in in_file:
78 line = line.replace(to_find, replace_with) variable
79 out_file.write(line)
import-w3c-performance-wg-tests 82 for line in in_file:
85 line = line.replace(to_find, replace_with).rstrip() + '\n' variable
86 assert 'w3c-test.org' not in line, 'Imported test must not depend on live site. Bad line: "%s"' % line
87 out_file.write(line)
  /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
  /external/chromium_org/third_party/icu/source/test/intltest/
tokiter.h 32 * line, beginning with the first unquoted '#', are recognized.
46 * Return the one-based line number of the line of the last token
53 * Return a string description of the position of the last line
64 UnicodeString line; member in class:TokenIterator
  /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
  /external/chromium_org/third_party/jemalloc/vendor/
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
  /external/chromium_org/third_party/libjingle/source/talk/base/
unittest_main.cc 27 unsigned int line,
31 << std::endl << line; local
  /external/chromium_org/third_party/skia/src/pathops/
SkPathOpsLine.h 24 SkDLine line; local
25 line.set(a);
26 return line.subDivide(t1, t2);
  /external/chromium_org/third_party/yasm/source/patched-yasm/modules/parsers/gas/
gas-parse-intel.c 51 unsigned char *line; local
70 if (&stok[length] == slim && parser_gas->line) {
71 line = yasm_xmalloc(length + parser_gas->lineleft + 1);
72 memcpy(line, parser_gas->s.tok, length);
73 memcpy(line + length, parser_gas->linepos, parser_gas->lineleft);
75 if (line[length - 1] == '\n') length--;
77 line = yasm_xmalloc(length + 1);
78 memcpy(line, parser_gas->s.tok, length);
80 line[length] = '\0';
82 bc = gas_intel_syntax_parse_instr(&parser_nasm, line);
    [all...]
  /external/clang/test/Analysis/
taint-tester.cpp 18 char *line = 0; local
23 while ((read = T.getline(&line, &len, stdin)) != -1) {
24 printf("%s", line); // no warning
26 free(line);
  /external/doclava/src/com/google/doclava/apicheck/
ApiParseException.java 21 public int line; field in class:ApiParseException
33 this.line = ((ApiParseException)cause).line;
37 public ApiParseException(String message, int line) {
39 this.line = line;
43 if (line > 0) {
44 return super.getMessage() + " line " + line;
  /external/embunit/src/
TestCase.c 79 void addFailure(const char *msg, long line, const char *file)
81 TestResult_addFailure(result_, (Test*)self_, (char*)msg, line, (char*)file); local

Completed in 3290 milliseconds

12 3 4 5 6 7 8 91011>>