HomeSort by relevance Sort by last modified time
    Searched defs:line (Results 1 - 25 of 3546) 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/valgrind/helgrind/tests/
filter_xml 6 # The script works line-by-line and is generally unaware of XML structure
13 # TOOL_FILES or in the list of files given on the command line
15 # a line <frame>...</frame> will be inserted.
23 # A list of files specific to the tool at hand. Line numbers in
72 line: label
74 my $line = $_;
75 chomp($line);
80 if ($line =~ $ignore_sections{$tag}) {
83 next line;
    [all...]
  /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
  /external/hyphenation-patterns/de/
create_chr.py 24 for line in pat_file:
25 line = line.strip() variable
26 all_chars |= set(line)
  /frameworks/base/tools/aapt/
SourcePos.h 13 int line; member in class:SourcePos
  /external/deqp/framework/delibs/decpp/
deDefs.cpp 32 void throwRuntimeError (const char* message, const char* expr, const char* file, int line)
38 msg << " at " << file << ":" << line; local
  /external/elfutils/libdw/
dwarf_decl_line.c 1 /* Get line number of beginning of given function.
53 Dwarf_Word line; local
57 &line);
60 if (line > INT_MAX)
66 *linep = line;
  /external/libgdx/backends/gdx-backend-lwjgl/src/com/badlogic/gdx/backends/lwjgl/audio/
JavaSoundAudioRecorder.java 29 private TargetDataLine line; field in class:JavaSoundAudioRecorder
36 line = AudioSystem.getTargetDataLine(format);
37 line.open(format, buffer.length);
38 line.start();
50 read += line.read(buffer, read, toRead - read);
57 line.close();
  /external/libgdx/backends/gdx-backend-lwjgl3/src/com/badlogic/gdx/backends/lwjgl3/audio/
JavaSoundAudioRecorder.java 29 private TargetDataLine line; field in class:JavaSoundAudioRecorder
36 line = AudioSystem.getTargetDataLine(format);
37 line.open(format, buffer.length);
38 line.start();
50 read += line.read(buffer, read, toRead - read);
57 line.close();
  /external/slf4j/slf4j-migrator/src/test/java/org/slf4j/migrator/line/
PackageTest.java 25 package org.slf4j.migrator.line;
  /external/v8/test/mjsunit/regress/
regress-crbug-424142.js 29 var line = 14; variable
30 var line_start = Debug.findScriptSourcePosition(script, line, 0);
31 var line_end = Debug.findScriptSourcePosition(script, line + 1, 0) - 1;
34 // Make sure the actual break position is within the line where we set
  /frameworks/native/cmds/installd/
file_parsing.h 35 // Read the next line.
36 std::string line; local
37 getline(input_stream, line);
39 // Is the line empty? Simplifies the next check.
40 if (line.empty()) {
45 if (line[0] == '#') {
49 if (!parse(line)) {
  /hardware/bsp/intel/peripheral/libmraa/src/arm/
arm.c 41 char* line = malloc(len); local
45 while (getline(&line, &len, fh) != -1) {
46 if (strncmp(line, "Hardware", 8) == 0) {
47 if (strstr(line, "BCM2708")) {
50 if (strstr(line, "BCM2709")) {
53 if (strstr(line, "Generic AM33XX")) {
56 if (strstr(line, "HiKey Development Board")) {
59 if (strstr(line, "sun7i")) {
76 free(line);
  /hardware/bsp/intel/peripheral/libmraa/src/x86/
x86.c 45 char* line = NULL; local
46 // let getline allocate memory for *line
50 if (getline(&line, &len, fh) != -1) {
51 if (strncmp(line, "GalileoGen2", 11) == 0) {
54 } else if (strncmp(line, "BODEGA BAY", 10) == 0) {
57 } else if (strncmp(line, "SALT BAY", 8) == 0) {
60 } else if (strncmp(line, "DE3815", 6) == 0) {
63 } else if (strncmp(line, "NUC5i5MYBE", 10) == 0 || strncmp(line, "NUC5i3MYBE", 10) == 0) {
66 } else if (strncmp(line, "NOTEBOOK", 8) == 0)
    [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/autotest/client/profilers/powertop/src/
xrandr.c 48 char line[1024]; local
53 memset(line, 0, 1024);
60 if (fgets(line, 1024, file)==NULL)
62 if (line[0]!=' ') {
63 if (line[0]=='T' && line[1]=='V' && line[2]==' ')
68 if (strchr(line,'*') && has_tv)
  /external/autotest/client/tests/kvm/deps/test_clock_getres/
test_clock_getres.c 29 char line[80]; local
37 while (fgets(line, 80, fr) != NULL) {
38 sscanf(line, "%s", &clocksource);
  /external/compiler-rt/test/msan/
getline.cc 26 char *line = 0; local
28 int n = getline(&line, &len, fp);
30 assert(strcmp(line, "abcde\n") == 0);
32 n = getline(&line, &len, fp);
34 assert(strcmp(line, "12345\n") == 0);
36 free(line);

Completed in 1951 milliseconds

1 2 3 4 5 6 7 8 91011>>