HomeSort by relevance Sort by last modified time
    Searched full:read (Results 26 - 50 of 12411) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/zlib/contrib/blast/
README 0 Read blast.h for purpose and usage.
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
package.html 3 Provides classes to control or read data from CDMA phones.
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
package.html 3 Provides classes to control or read data from GSM phones.
  /external/oprofile/daemon/liblegacy/
opd_parse_proc.h 6 * @remark Read the file COPYING
16 * opd_get_ascii_procs - read process and mapping information from /proc
18 * Read information on each process and its mappings from the /proc
  /external/llvm/test/CodeGen/PTX/
intrinsic.ll 6 %x = call i32 @llvm.ptx.read.tid.x()
13 %x = call i32 @llvm.ptx.read.tid.y()
20 %x = call i32 @llvm.ptx.read.tid.z()
27 %x = call i32 @llvm.ptx.read.tid.w()
34 %x = call i32 @llvm.ptx.read.ntid.x()
41 %x = call i32 @llvm.ptx.read.ntid.y()
48 %x = call i32 @llvm.ptx.read.ntid.z()
55 %x = call i32 @llvm.ptx.read.ntid.w()
62 %x = call i32 @llvm.ptx.read.laneid()
69 %x = call i32 @llvm.ptx.read.warpid(
    [all...]
  /external/clang/test/Sema/
assign.c 6 x->a = 10; // expected-error {{read-only variable is not assignable}}
13 b[4] = 1; // expected-error {{read-only variable is not assignable}}
14 b2[4] = 1; // expected-error {{read-only variable is not assignable}}
  /external/apache-harmony/luni/src/test/resources/net.resources/HTTP/cgi-bin/
test.pl 3 read(STDIN, $buffer, $ENV{'CONTENT_LENGTH'});
  /external/bouncycastle/src/main/java/org/bouncycastle/asn1/
IndefiniteLengthInputStream.java 22 _b1 = in.read();
23 _b2 = in.read();
51 public int read(byte[] b, int off, int len) method in class:IndefiniteLengthInputStream
57 return super.read(b, off, len);
65 int numRead = _in.read(b, off + 2, len - 2);
76 _b1 = _in.read();
77 _b2 = _in.read();
88 public int read() method in class:IndefiniteLengthInputStream
96 int b = _in.read();
  /external/bouncycastle/src/main/java/org/bouncycastle/crypto/io/
DigestInputStream.java 22 public int read() method in class:DigestInputStream
25 int b = in.read();
34 public int read( method in class:DigestInputStream
40 int n = in.read(b, off, len);
  /external/proguard/src/proguard/io/
package.html 2 This package contains classes to read and write files, optionally wrapped in
  /external/proguard/src/proguard/
package.html 3 ProGuard can read jar files, shrink and obfuscate them, and write out the
  /external/valgrind/main/drd/tests/
pth_cancel_locked.vgtest 2 vgopts: --read-var-info=yes --check-stack-var=yes
pth_detached2.vgtest 2 vgopts: --read-var-info=yes
pth_process_shared_mutex.vgtest 3 vgopts: --read-var-info=yes --check-stack-var=yes
sem_open.vgtest 2 vgopts: --check-stack-var=yes --read-var-info=yes
tc24_nonzero_sem.vgtest 3 vgopts: --read-var-info=yes
  /libcore/luni/src/main/java/org/apache/harmony/xnet/provider/jsse/
SSLInputStream.java 26 * some additional read methods allowing to read TLS specific
41 * @see org.apache.harmony.xnet.provider.jsse.SSLStreamedInput#read()
42 * @see org.apache.harmony.xnet.provider.jsse.SSLBufferedInput#read()
43 * @see org.apache.harmony.xnet.provider.jsse.HandshakeIODataStream#read()
46 public abstract int read() throws IOException; method in class:SSLInputStream
52 return read() & 0x00FF;
59 return (read() << 8) | (read() & 0x00FF);
66 return (read() << 16) | (read() << 8) | (read() & 0x00FF)
92 public byte[] read(int length) throws IOException { method in class:SSLInputStream
101 public int read(byte[] b, int off, int len) throws IOException { method in class:SSLInputStream
    [all...]
  /bionic/libc/arch-arm/syscalls/
read.S 5 ENTRY(read) function
14 END(read)
  /dalvik/dx/src/com/android/dx/io/instructions/
ShortArrayCodeInput.java 26 /** source array to read from */
46 public int read() throws EOFException { method in class:ShortArrayCodeInput
58 int short0 = read();
59 int short1 = read();
66 long short0 = read();
67 long short1 = read();
68 long short2 = read();
69 long short3 = read();
  /external/webkit/LayoutTests/storage/
multiple-transactions-on-different-handles-expected.txt 2 db1 read statement succeeded
5 db2 read statement succeeded
  /external/oprofile/libpp/
image_errors.h 6 * @remark Read the file COPYING
20 /// possible reasons why we can't read a binary image
29 /// output why the image passed can't be read to stderr, we warranty only one
35 /// output why the image passed can't be read to stderr
39 /// output why any bad images can't be read to stderr
  /libcore/luni/src/test/java/libcore/java/io/
OldReaderTest.java 37 assertEquals("Wrong return value!", 4, simple.read(buf));
39 assertEquals("Wrong stuff read!", "Bla ", String.valueOf(buf));
40 simple.read(buf);
42 assertEquals("Wrong stuff read!", "bla,", String.valueOf(buf));
45 simple.read(buf);
55 assertEquals("Wrong return value!", 4, simple.read(buf));
56 assertEquals("Wrong stuff read!", "Bla ", new String(buf));
57 simple.read(buf);
58 assertEquals("Wrong stuff read!", "bla,", new String(buf));
61 simple.read(buf)
116 @Override public int read(char[] buf, int offset, int count) { method in class:OldReaderTest.MockReader
    [all...]
OldInputStreamTest.java 42 public int read() throws IOException { method in class:OldInputStreamTest.MockInputStream
93 // Test 1: This read operation should complete without an error.
94 assertEquals("Test 1: Incorrect count of bytes read.",
95 is.read(b), 10);
100 assertTrue("Test 1: Wrong bytes read.", equal);
102 // Test 2: Test that the correct number of bytes read is returned
105 bytesRead = is.read(b);
106 assertEquals("Test 2: Incorrect count of bytes read.",
112 assertTrue("Test 2: Wrong bytes read.", equal);
115 // the next call of read(byte[]) should return -1
    [all...]
OldPushbackReaderTest.java 41 pbr.read(buf, 0, 5);
108 * java.io.PushbackReader#read()
114 assertEquals("Wrong value read!", 66, tobj.read());
117 tobj.read();
125 * java.io.PushbackReader#read(char[], int, int)
132 tobj.read(buf, 6, 5);
133 assertEquals("Wrong value read!", "BEGIN", new String(buf, 6, 5));
134 assertEquals("Too much read!", "012345BEGIN123456789", new String(buf));
137 tobj.read(buf, 6, 5)
    [all...]
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/
BufferedReaderTest.java 94 br.read();
95 fail("Read on closed stream");
113 br.read(buf, 0, 500);
121 br.read(buf, 0, 1000);
136 in.read(new char[14], 0, 14);
138 assertTrue("Wrong chars", in.read() == (char) 6
139 && in.read() == (char) 7);
146 assertTrue("Wrong chars 2", in.read() == (char) 6
147 && in.read() == (char) 7);
152 int result = br.read(carray)
    [all...]

Completed in 477 milliseconds

12 3 4 5 6 7 8 91011>>