HomeSort by relevance Sort by last modified time
    Searched defs:readLine (Results 51 - 75 of 495) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/nist-sip/java/gov/nist/javax/sip/parser/
PipelinedMsgParser.java 181 private String readLine(InputStream inputStream) throws IOException {
231 line1 = readLine(inputStream);
255 line2 = readLine(inputStream);
  /frameworks/opt/vcard/java/com/android/vcard/
VCardParserImpl_V21.java 62 public String readLine() throws IOException {
71 final String line = super.readLine();
83 final String line = super.readLine();
182 return mReader.readLine();
    [all...]
  /hardware/qcom/display/msm8084/libqdutils/
mdp_version.cpp 165 char *readLine = (char *) malloc (len);
166 while((read = getline((char **)&readLine, &len,
172 if(!tokenizeParams(readLine, TOKEN_PARAMS_DELIM, tokens,
  /hardware/qcom/display/msm8226/libqdutils/
mdp_version.cpp 171 char *readLine = (char *) malloc (len);
172 while((read = getline((char **)&readLine, &len,
178 if(!tokenizeParams(readLine, TOKEN_PARAMS_DELIM, tokens,
  /hardware/qcom/display/msm8909/libqdutils/
mdp_version.cpp 185 char *readLine = (char *) malloc (len);
187 while((read = getline((char **)&readLine, &len,
193 if(!tokenizeParams(readLine, TOKEN_PARAMS_DELIM, tokens,
  /hardware/qcom/display/msm8994/libqdutils/
mdp_version.cpp 193 char *readLine = (char *) malloc (len);
195 while((read = getline((char **)&readLine, &len,
201 if(!tokenizeParams(readLine, TOKEN_PARAMS_DELIM, tokens,
259 free(readLine);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/
ProcessManagerTest.java 45 assertEquals(greeting, readLine(process));
117 assertEquals("/", readLine(process));
128 assertEquals("foo", readLine(process));
131 String readLine(Process process) throws IOException {
134 return reader.readLine();
145 while ((line = reader.readLine()) != null) {
208 while (reader.readLine() != null) {
  /libcore/luni/src/test/java/libcore/java/io/
OldDataInputStreamTest.java 265 line = dis.readLine();
268 line = dis.readLine();
271 line = dis.readLine();
277 dis.readLine();
  /libcore/ojluni/src/main/java/java/io/
BufferedReader.java 56 * invocation of read() or readLine() could cause bytes to be read from the
319 * @see java.io.LineNumberReader#readLine()
323 String readLine(boolean ignoreLF) throws IOException {
399 public String readLine() throws IOException {
400 return readLine(false);
579 nextLine = readLine();
Console.java 55 * {@link #readLine()}, {@link #readPassword()}, {@link #format format()},
121 * <tt>{@link #readLine}</tt>.
242 public String readLine(String fmt, Object ... args) {
249 char[] ca = readline(false);
270 public String readLine() {
271 return readLine("");
319 passwd = readline(true);
374 private char[] readline(boolean zeroOut) throws IOException { method in class:Console
458 * if invoked by our readline, skip the leftover, otherwise
473 * readLine()
    [all...]
DataInputStream.java 471 * See the general contract of the <code>readLine</code>
480 * <code>BufferedReader.readLine()</code> method. Programs that use the
494 * @see java.io.BufferedReader#readLine()
498 public final String readLine() throws IOException {
RandomAccessFile.java     [all...]
  /external/deqp/modules/gles2/functional/
es2fFlushFinishTests.cpp 361 const LineParameters readLine = theilSenLinearRegression(readTimes);
363 const float normReadCoef = readLine.coefficient * float(calibrationParams.maxDrawCalls) / float(MAX_SAMPLE_DURATION_US);
377 << TestLog::Float("ReadCoefficient", "Read coefficient", "", QP_KEY_TAG_NONE, readLine.coefficient)
  /external/javassist/src/main/javassist/tools/web/
Webserver.java 190 String cmd = readLine(in);
210 private String readLine(InputStream in) throws IOException {
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/io/
BufferedReaderTest.java 39 * The spec says that BufferedReader.readLine() considers only "\r", "\n"
65 assertEquals(line, bufferedReader.readLine());
67 assertNull(bufferedReader.readLine());
472 * @tests java.io.BufferedReader#readLine()
475 // Test for method java.lang.String java.io.BufferedReader.readLine()
478 String r = br.readLine();
479 assertEquals("readLine returned incorrect string", "Test_All_Tests", r
482 fail("Exception during readLine test");
DataInputStreamTest.java 403 * java.io.DataInputStream#readLine()
410 String line = dis.readLine();
498 public String readLine() throws IOException {
  /libcore/ojluni/src/main/java/java/util/
Properties.java 354 while ((limit = lr.readLine()) >= 0) {
422 int readLine() throws IOException {
    [all...]
  /libcore/ojluni/src/main/java/java/util/jar/
Manifest.java 210 while ((len = fis.readLine(lbuf)) != -1) {
369 public int readLine(byte[] b, int off, int len) throws IOException {
408 public int readLine(byte[] b) throws IOException {
409 return readLine(b, 0, b.length);
  /packages/apps/Email/provider_src/com/android/email/mail/transport/
MailTransport.java 310 public String readLine(boolean loggable) throws IOException {
  /packages/apps/Email/tests/src/com/android/email/mail/transport/
MockTransport.java 252 public String readLine() throws IOException {
305 * list, for subsequent calls to readLine(). If the string does not match, we assert
338 * Reads from the same input buffer as readLine()
351 String next = readLine();
  /packages/services/Telephony/src/com/android/phone/common/mail/
MailTransport.java 325 public String readLine(boolean loggable) throws IOException {
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/
plexus-interactivity-api-1.0-alpha-4.jar 
  /prebuilts/tools/common/m2/repository/org/codehaus/plexus/plexus-interactivity-api/1.0-alpha-4/
plexus-interactivity-api-1.0-alpha-4.jar 
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/debug/
DebugEventSocketProxy.java 108 in.readLine();
  /external/guava/guava/src/com/google/common/io/
ByteStreams.java 318 @Override public String readLine() {
320 return input.readLine();

Completed in 2088 milliseconds

1 23 4 5 6 7 8 91011>>