HomeSort by relevance Sort by last modified time
    Searched defs:line (Results 1 - 25 of 1421) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
CharStreamState.as 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 public var line:int; variable
43 /** What char position 0..n-1 in line is scanner before processing buffer[p]? */
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRCharStreamState.h 37 NSInteger line; variable
42 @property (getter=getLine,setter=setLine:) NSInteger line; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
ANTLRCharStreamState.h 37 NSInteger line; variable
42 @property (getter=getLine,setter=setLine:) NSInteger line; variable
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRCharStreamState.h 37 NSInteger line; variable
42 @property (getter=getLine,setter=setLine:) NSInteger line; variable
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRCharStreamState.h 37 NSUInteger line; variable
42 @property (assign) NSUInteger line; variable
ANTLRStringStreamState.h 36 NSUInteger line; variable
55 @property (assign) NSUInteger line; variable
  /frameworks/base/tools/aapt/
SourcePos.h 13 int line; member in class:SourcePos
  /external/chromium_org/third_party/angle_dx11/tests/preprocessor_tests/
PreprocessorTest.cpp 14 int line = 1; local
20 for (; line < token.location.line; ++line)
  /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/oprofile/libutil/
op_cpufreq.c 21 char * line = NULL; local
28 line = op_get_line(fp);
30 if (!line)
33 if (line[0] == '\0') {
34 free(line);
39 if (sscanf(line, "cpu MHz : %lf", &fval) == 1)
42 if (sscanf(line, "clock : %lfMHz", &fval) == 1)
45 if (sscanf(line, "cycle frequency [Hz] : %lu", &uval) == 1) {
50 if (sscanf(line, "Cpu0ClkTck : %lx", &uval) == 1) {
55 if (sscanf(line, "BogoMIPS : %lu", &uval) == 1)
    [all...]
  /external/guava/guava/src/com/google/common/io/
LineBuffer.java 22 * Package-protected abstract class that implements the line reading
23 * algorithm used by {@link LineReader}. Line separators are per {@link
24 * java.io.BufferedReader}: line feed, carriage return, or carriage
34 /** Holds partial line contents. */
35 private StringBuilder line = new StringBuilder(); field in class:LineBuffer
36 /** Whether a line ending with a CR is pending processing. */
40 * Process additional characters from the stream. When a line separator
41 * is found the contents of the line and the line separator itself
53 // Last call to add ended with a CR; we can handle the line now
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
CharStreamState.cs 43 /// need to record the state of the input stream (char index, line,
51 /// <summary>What line number is the scanner at before processing buffer[p]? </summary>
52 internal int line; field in class:Antlr.Runtime.CharStreamState
54 /// <summary>What char position 0..n-1 in line is scanner before processing buffer[p]? </summary>
  /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/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/third_party/libjingle/source/talk/examples/login/
login_main.cc 57 std::string line; local
58 while (std::getline(std::cin, line)) {
59 if (line == "quit")
  /external/chromium_org/chrome/browser/translate/
translate_event_details.h 23 // The source line in |filename| where this event was created.
24 int line; member in struct:TranslateEventDetails
  /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_org/third_party/angle_dx11/src/compiler/
InfoSink.cpp 34 void TInfoSinkBase::location(int file, int line) {
36 if (line)
37 stream << file << ":" << line; local
  /external/chromium_org/third_party/icu/source/common/unicode/
parseerr.h 34 * <p>The line, offset, and context fields are optional; parsing
59 * The line on which the error occured. If the parser uses this
60 * field, it sets it to the line number of the source text line on
62 * parse does not support line numbers, the value will be <= 0.
65 int32_t line; member in struct:UParseError
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
  /external/chromium_org/third_party/libjingle/source/talk/examples/login/
login_main.cc 60 std::string line; local
61 while (std::getline(std::cin, line)) {
62 if (line == "quit")
  /external/chromium_org/third_party/yasm/source/patched-yasm/tools/re2c/
token.h 8 unsigned int line; member in struct:Token
18 r->line = l;
26 r->line = l;
  /external/icu4c/common/unicode/
parseerr.h 34 * <p>The line, offset, and context fields are optional; parsing
59 * The line on which the error occured. If the parser uses this
60 * field, it sets it to the line number of the source text line on
62 * parse does not support line numbers, the value will be <= 0.
65 int32_t line; member in struct:UParseError
68 * The character offset to the error. If the line field is >= 1,
69 * then this is the offset from the start of the line. Otherwise,
  /external/srec/config/en.us/dictionary/
cmu2nuance.cpp 42 char line[200]; local
46 for (int lineno = 1; NULL != fgets(line, sizeof(line), stdin); lineno++)
48 if (line[0] == '#') continue;
49 if (line[0] == 0) continue;
50 if (!isalnum(line[0])) {
51 fprintf(stderr, "warning: ignoring line %d - %s", lineno, line);
55 const char* p = line;
60 fprintf(stderr, "can't read name at line %d\n", lineno)
    [all...]
  /build/tools/
check_radio_versions.py 30 for line in f:
31 line = line.strip() variable
32 if line.startswith("require"):
33 key, value = line.split()[1].split("=", 1)
59 for line in f:
60 line = line.strip() variable
61 if not line or line.startswith("#"): continu
    [all...]
  /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;

Completed in 1402 milliseconds

1 2 3 4 5 6 7 8 91011>>