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

<<11121314151617181920>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.ndk/src/com/android/ide/eclipse/ndk/internal/discovery/
NdkDiscoveryUpdater.java 77 String line = reader.readLine(); local
78 while (line != null) {
79 checkBuildLine(line);
80 line = reader.readLine();
149 private static class Line {
150 private final String line; field in class:NdkDiscoveryUpdater.Line
153 public Line(String line) {
154 this.line = line;
209 Line line = new Line(text); local
264 String line = reader.readLine(); local
294 String line = reader.readLine(); local
    [all...]
  /external/proguard/src/proguard/retrace/
ReTrace.java 193 // Read the line in the stack trace.
196 String line = reader.readLine(); local
197 if (line == null)
202 Matcher matcher = pattern.matcher(line);
210 // Figure out a class name, line number, type, and
245 // Actually construct the output line.
259 // Copy a literal piece of input line.
260 outLine.append(line.substring(lineIndex, startIndex));
315 // Copy the last literal piece of input line.
316 outLine.append(line.substring(lineIndex))
    [all...]
  /libcore/luni/src/main/java/java/io/
RandomAccessFile.java 441 * Reads a line of text form the current position in this file. A line is
444 * include the line terminating sequence.
446 * Blocks until a line terminating sequence has been read, the end of the
449 * @return the contents of the line or {@code null} if no characters have
455 StringBuilder line = new StringBuilder(80); // Typical line length local
462 return line.length() != 0 ? line.toString() : null;
466 return line.toString()
    [all...]
  /bionic/libc/kernel/common/linux/
mt9t013.h 90 uint16_t line; member in struct:mt9t013_exposure_gain
  /cts/tests/tests/graphics/src/android/graphics/cts/
PathMeasureTest.java 94 Path line = new Path(); local
95 line.lineTo(5, 5);
97 measure.setPath(line, false);
99 measure.setPath(line, true);
  /cts/tests/tests/security/src/android/security/cts/
ClonedSecureRandomTest.java 216 final String line = in.readLine(); local
217 if (line == null) {
218 throw new EOFException("EOF encountered before reading first line of " + filename);
220 return line.trim();
ListeningPortsTest.java 271 String line = scanner.nextLine().trim(); local
274 if (line.startsWith("sl")) {
278 String[] fields = line.split("\\s+");
  /cts/tools/cfassembler/src/dxconvext/
ClassFileAssembler.java 174 String line; local
178 while ((line = br.readLine()) != null) {
180 secondLine = line;
183 if (!line.trim().startsWith("//")) {
185 String[] parts = line.split("\\s+");
  /dalvik/vm/compiler/template/
gen-template.py 156 for line in opcode_fp:
157 match = opcode_re.match(line)
226 for line in asm_stub_text:
227 templ = Template(line)
231 # Append the file specified by "source" to the open "outfp". Each line will
234 # If the first line of the file starts with "%" it is taken as a directive.
235 # A "%include" line contains a filename and, optionally, a Python-style
239 # If "sister_list" is provided, and we find a line that contains only "&",
249 for line in infp:
250 if line.startswith("%include")
384 line = line.strip() # remove CRLF, leading spaces variable
    [all...]
  /dalvik/vm/mterp/
gen-mterp.py 249 for line in opcode_fp:
250 match = opcode_re.match(line)
419 for line in asm_stub_text:
420 templ = Template(line)
424 # Append the file specified by "source" to the open "outfp". Each line will
427 # If the first line of the file starts with "%" it is taken as a directive.
428 # A "%include" line contains a filename and, optionally, a Python-style
432 # If "sister_list" is provided, and we find a line that contains only "&",
442 for line in infp:
443 if line.startswith("%include")
579 line = line.strip() # remove CRLF, leading spaces variable
    [all...]
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyGetAppFrameRateEvent.java 111 String line = null; local
112 while((line = reader.readLine()) != null) {
113 Matcher m = NO_OF_FRAMES_PATTERN.matcher(line);
  /development/ndk/platforms/android-3/include/linux/
mt9t013.h 91 uint16_t line; member in struct:mt9t013_exposure_gain
  /development/samples/SearchableDictionary/src/com/example/android/searchabledict/
DictionaryDatabase.java 209 String line; local
210 while ((line = reader.readLine()) != null) {
211 String[] strings = TextUtils.split(line, "-");
  /development/samples/TtsEngine/src/com/example/android/ttsengine/
RobotSpeakTtsService.java 217 String line = null; local
220 while ((line = br.readLine()) != null) {
221 String[] parts = line.split(":");
223 throw new IOException("Invalid line encountered: " + line);
  /development/tools/mkstubs/src/com/android/mkstubs/
Main.java 38 * A struct-like class to hold the various input values (e.g. command-line args)
132 * Grabs command-line arguments.
236 String line; local
237 while ((line = br.readLine()) != null) {
238 addString(p, line);
  /external/antlr/antlr-3.4/runtime/C/include/
antlr3commontoken.h 125 /** The line number in the input stream where this token was derived from
127 ANTLR3_UINT32 line; member in struct:ANTLR3_COMMON_TOKEN_struct
129 /** The offset into the input stream that the line in which this
134 /** The character position in the line that this token was derived from
252 /** Pointer to a function that gets the 'line' number where this token resides
256 /** Pointer to a function that sets the 'line' number where this token reside
258 void (*setLine)(struct ANTLR3_COMMON_TOKEN_struct * token, ANTLR3_UINT32 line);
260 /** Pointer to a function that gets the offset in the line where this token exists
264 /** Pointer to a function that sets the offset in the line where this token exists
antlr3exception.h 169 /** Track the line at which the error occurred in case this is
171 * unexpected char doesn't carry the line info.
173 ANTLR3_UINT32 line; member in struct:ANTLR3_EXCEPTION_struct
175 /** Character position in the line where the error occurred.
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
RemoteDebugEventSocketListener.cs 71 int line; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
78 int line, int charPos, string text) {
82 this.line = line;
106 public int Line {
108 return line;
111 line = value;
173 return "[" + Text + "/<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + ",@" + index + "]";
180 int line = 0; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyTree
185 public ProxyTree(int ID, int type, int line, int charPos, int tokenIndex, string text)
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
RemoteDebugEventSocketListener.cs 75 int line; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyToken
83 int line, int charPos, string text )
88 this.line = line;
118 public int Line
122 return line;
126 line = value;
208 return "[" + Text + "/<" + type + ">" + channelStr + "," + line + ":" + CharPositionInLine + ",@" + index + "]";
216 int line = 0; field in class:Antlr.Runtime.Debug.RemoteDebugEventSocketListener.ProxyTree
221 public ProxyTree( int ID, int type, int line, int charPos, int tokenIndex, string text
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
ConsoleTest.java 92 String line = console.readLine(); local
93 assertEquals("hello world", line);
97 String line = console.readLine("%d %s", 2, "Please input a line of string to test:"); local
98 assertEquals("hello world", line);
100 assertEquals("2 Please input a line of string to test:", prompt);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ThrowableTest.java 107 String line = trace.substring(lastIndex, index); local
110 index = line.indexOf("(");
112 line = line.substring(0, index);
116 if (line.indexOf("java.lang.Throwable") > -1)
118 sb.append(line);
  /external/apache-xml/src/main/java/org/apache/xml/serializer/
CharInfo.java 265 String line = reader.readLine(); local
267 while (line != null) {
268 if (line.length() == 0 || line.charAt(0) == '#') {
269 line = reader.readLine();
274 int index = line.indexOf(' ');
277 String name = line.substring(0, index);
281 if (index < line.length()) {
282 String value = line.substring(index);
297 line = reader.readLine()
    [all...]
  /external/bluetooth/bluedroid/main/
bte_conf.c 196 char line[CONF_MAX_LINE_LEN+1]; /* add 1 for \0 char */ local
203 /* read line by line */
204 while (fgets(line, CONF_MAX_LINE_LEN+1, p_file) != NULL)
206 if (line[0] == CONF_COMMENT)
209 p_name = strtok(line, CONF_DELIMITERS);
273 char line[CONF_MAX_LINE_LEN+1]; /* add 1 for \0 char */ local
279 /* read line by line */
280 while (fgets(line, CONF_MAX_LINE_LEN+1, p_file) != NULL
    [all...]
  /external/chromium/chrome/browser/history/
url_database.cc 302 int line; local
308 line = __LINE__;
314 line = __LINE__;
317 GetDB().GetCachedStatement(sql::StatementID(__FILE__, line), sql));
  /external/chromium/chrome/browser/importer/
firefox_importer_utils.cc 106 const std::string& line = lines[i]; local
107 if (line.empty() || line[0] == '#' || line[0] == ';')
109 size_t equal = line.find('=');
111 std::string key = line.substr(0, equal);
113 *version = line.substr(equal + 1)[0] - '0';
121 UTF8ToWide(line.substr(equal + 1)));
140 std::string line = lines[i]; local
141 if (line.empty())
374 const std::string& line = *iter; local
    [all...]

Completed in 640 milliseconds

<<11121314151617181920>>