HomeSort by relevance Sort by last modified time
    Searched refs:line (Results 201 - 225 of 2868) sorted by null

1 2 3 4 5 6 7 891011>>

  /frameworks/compile/linkloader/utils/
rsl_assert.h 25 unsigned line,
  /ndk/sources/host-tools/ndk-stack/
ndk-stack-parser.h 45 /* Parses a line from the ADB log output.
49 * line - ADB log output line to parse. The line must be zero-terminated, and
52 * 0 If the line has been part of the crash dump.
53 * 1 If the line has not been part of the crash dump.
54 * -1 If there was an error when parsing the line.
57 int ParseLine(NdkCrashParser* parser, const char* line);
  /ndk/sources/host-tools/sed-4.2.1/testsuite/
tst-boost.c 81 char *line = NULL; local
108 while ((len = getline (&line, &line_len, f)) > 0)
113 if (line[len - 1] == '\n')
114 line[--len] = '\0';
116 puts (line);
118 if (line[0] == ';')
121 if (line[0] == '\0')
124 if (line[0] == '-')
126 if (strstr (line, "REG_BASIC"))
130 if (strstr (line, "REG_ICASE")
    [all...]
  /sdk/ddms/libs/ddmlib/src/com/android/ddmlib/
GetPropReceiver.java 45 // to have the build info in the first line, and the build
46 // date in the 2nd line. There seems to be an empty line
49 for (String line : lines) {
50 if (line.length() == 0 || line.startsWith("#")) {
54 Matcher m = GETPROP_PATTERN.matcher(line);
  /sdk/eclipse/plugins/com.android.ide.eclipse.ddms/src/com/android/ide/eclipse/ddms/
ISourceRevealer.java 25 * Reveal a particular line in the given application.
28 * @param line the line to reveal
31 boolean reveal(String applicationName, String className, int line);
37 * @param lineNumber line number in the file, -1 if not known
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
ANTLRStringStream.java 47 /** line number 1..n within the input */
48 protected int line = 1; field in class:ANTLRStringStream
50 /** The index of the character relative to the beginning of the line 0..n-1 */
57 * values line, charPositionInLine, and p that can change as you
92 line = 1;
103 System.out.println("newline char found on line: "+line+
106 line++;
165 state.line = line;
    [all...]
  /external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
ANTLRStringStream.js 18 * The current line in the input.
23 this.line = 1;
26 * The index of the character relative to the beginning of the line.
27 * Ranges from 0 to (length of line - 1).
42 * values line, charPositionInLine, and p that can change as you
83 this.line = 1;
95 this.line++;
147 * tracks line/col info as well as input index so its markers are
170 state.line = this.line;
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/streams/
interactive.rb 21 # [:line] the initial line number; default: +1+
28 @line = options.fetch :line, 1
33 @readline = block or raise( ArgumentError, "no line-reading block was provided" )
40 if line = @readline.call
41 line = line.to_s.encode( Encoding::UTF_8 )
42 @string << line
43 @data.concat( line.codepoints.to_a
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/format/
GLAPISpec.java 76 String line; local
77 while ((line = reader.readLine()) != null) {
79 int commentPos = line.indexOf('#');
81 line = line.substring(0, commentPos);
83 line = line.trim();
86 if (line.length() > 0) {
87 GLAPISpec spec = parseLine(line);
104 * Parse a GL API Specification entry from "/entries.in". Each line is of the format
    [all...]
  /external/webkit/Tools/Scripts/webkitpy/style/checkers/
cpp.py 185 True, if the given line is blank.
204 # matches anything to ensure that we get the last possible match in a line.
254 s: a string which is a substring of line after '('
276 """Tracks line numbers for includes, and the order in which includes appear.
279 filename and line number on which that file was included.
395 """Converts multiple lines into a single line (with line breaks replaced by a
401 lines: a list of multiple lines to combine into a single line.
402 start_position: offset within lines of where to start the single line.
408 # Remove the columns on the last line that aren't included
    [all...]
  /external/bluetooth/bluez/tools/
parser.h 73 #line 50 "parser.y"
79 /* Line 1489 of yacc.c. */
80 #line 81 "parser.h"
  /external/chromium/third_party/libjingle/source/talk/base/
common.cc 64 void LogAssert(const char * function, const char * file, int line,
67 LOG(LS_ERROR) << file << "(" << line << ")" << ": ASSERT FAILED: "
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/
GenerateExcludeListTask.java 67 String line;
68 while ((line = r.readLine()) != null) {
69 int start = line.lastIndexOf('/');
70 int lastcomma = line.lastIndexOf(',');
71 int end = line.length();
75 int lastzip = line.lastIndexOf(".zip");
77 String rstring = line.substring(0, lastzip);
78 line = rstring + ".jar";
81 String substr = line.substring(start + 1, end);
94 String line; local
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
EOF.java 15 public EOF(int line, int pos)
18 setLine(line);
  /external/v8/test/mjsunit/
debug-sourceinfo.js 29 // For this test to work this file MUST have CR LF line endings.
68 // This is the last line of entire file (note: starting at 0).
70 // This is the last column of last line (note: starting at 0 and +2, due
74 // This magic number is the length or the first line comment (actually number
82 // The position of the first line of d(), i.e. "x = 1 ;".
84 // The line # of the first line of d() (note: starting at 0).
102 // Test that when running through source positions the position, line and
105 var line; variable
111 if (line == location.line) {
    [all...]
  /external/webkit/Source/ThirdParty/ANGLE/src/compiler/preprocessor/
scanner.h 60 unsigned short file, line; member in struct:SourceLoc_Rec
71 int line; member in struct:InputSrc
77 void CPPErrorToInfoLog(char *); // sticking the msg,line into the Shader's.Info.log
  /frameworks/base/tools/preload/
Record.java 18 * One line from the loaded-classes file.
89 /** Source file line# */
93 * Parses a line from the loaded-classes file.
95 Record(String line, int lineNum) {
96 char typeChar = line.charAt(0);
102 default: throw new AssertionError("Bad line: " + line);
108 line = line.replace(REPLACE_CLASSES[i], REPLACE_CLASSES[i+1]);
111 line = line.substring(1)
    [all...]
  /sdk/lint/libs/lint_api/src/com/android/tools/lint/detector/api/
DefaultPosition.java 29 /** The line number (0-based where the first line is line 0) */
33 * The column number (where the first character on the line is 0), or -1 if
44 * @param line the 0-based line number, or -1 if unknown
48 public DefaultPosition(int line, int column, int offset) {
49 this.mLine = line;
  /build/tools/
diff_package_overlays.py 24 previous_overlays.txt but absent from current_packages.txt, we copy that line
51 for line in f:
52 line = line.strip()
53 if not line or line.startswith("#"):
55 words = line.split()
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
Token.as 38 /** The line number on which this token was matched; line=1..n */
39 function get line():int;
40 function set line(line:int):void;
42 /** The index of the first character relative to the beginning of the line 0..n-1 */
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
Message.java 55 public int line = -1; field in class:Message
71 public void setLine(int line) {
72 this.line = line;
100 if (line != -1) {
101 locationST.add("line", line);
  /external/blktrace/btt/
devmap.c 31 static int dev_map_add(char *line)
35 if (strstr(line, "Device") != NULL)
39 if (sscanf(line, "%s %s", dmp->device, dmp->devno) != 2) {
66 char line[256]; local
74 while (fscanf(fp, "%255[a-zA-Z0-9 :.,/_-]\n", line) == 1) {
75 if (dev_map_add(line))
  /external/chromium/build/linux/
rewrite_dirs.py 34 def RewriteLine(line, opts):
36 args = line.split()
62 for line in sys.stdin.readlines():
63 line = RewriteLine(line.strip(), opts)
64 print line
  /external/ganymed-ssh2/examples/
StdoutAndStderr.java 55 String line = stdoutReader.readLine(); local
56 if (line == null)
58 System.out.println(line);
65 String line = stderrReader.readLine(); local
66 if (line == null)
68 System.out.println(line);
  /external/icu4c/test/intltest/
regextst.h 51 virtual void assertUText(const char *expected, UText *actual, const char *file, int line);
52 virtual void assertUTextInvariant(const char *invariant, UText *actual, const char *file, int line);
53 virtual UBool doRegexLMTest(const char *pat, const char *text, UBool looking, UBool match, int32_t line);
54 virtual UBool doRegexLMTestUTF8(const char *pat, const char *text, UBool looking, UBool match, int32_t line);
56 const UnicodeString &input, const char *srcPath, int32_t line);
58 UErrorCode expectedStatus, int32_t line);

Completed in 596 milliseconds

1 2 3 4 5 6 7 891011>>