/device/lge/mako/self-extractors/ |
PART2 | 12 read typed
|
/device/samsung/manta/self-extractors/ |
PART2 | 12 read typed
|
/external/antlr/antlr-3.4/runtime/Python/tests/ |
t019lexer.py | 13 stream = antlr3.StringStream(open(inputPath).read())
|
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/io/ |
RandomAccessFileTest.java | 57 assertEquals("Incorrect int read/written", 20, raf.read()); 63 assertEquals("Incorrect int read/written", 20, raf.read()); 69 assertEquals("Incorrect int read/written", 20, raf.read()); 200 * @tests java.io.RandomAccessFile#read() 203 // Test for method int java.io.RandomAccessFile.read() 209 assertEquals("Incorrect bytes returned from read", 210 fileString.charAt(0), raf.read()); 912 int read = raf.read(rbuf,0,0); local 927 int read = raf.read(rbuf); local [all...] |
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/util/io/ |
Streams.java | 16 while (inStr.read(bs, 0, bs.length) >= 0) 49 int numRead = inStr.read(buf, off + totalRead, len - totalRead); 64 while ((numRead = inStr.read(bs, 0, bs.length)) >= 0) 76 while ((numRead = inStr.read(bs, 0, bs.length)) >= 0)
|
/external/bzip2/ |
words0 | 3 please read README.COMPILATION.PROBLEMS -- you might be able to
|
/external/chromium/android/jni/ |
platform_file_jni.h | 19 int Read(char* out, int length);
|
/external/chromium/webkit/glue/media/ |
buffered_resource_loader.h | 40 // kReadThenDefer - Request only enough data to fulfill read requests. 81 // the operation is done invoke |callback| with number of bytes read or an 85 // Read was successful with the indicated number of bytes read. 87 // The read has failed because of an error with the network. 89 // The read was made too far away from the current buffered position. 90 virtual void Read(int64 position, int read_size, 175 // Returns true if the current read request can be fulfilled by what is in 179 // Returns true if the current read request will be fulfilled in the future. 182 // Method that does the actual read and calls the |read_callback_|, assumin [all...] |
/external/chromium_org/chrome/common/extensions/docs/templates/articles/ |
experimental_webRequest.html | 5 it's supported! You can read all about it at its new home:
|
/external/chromium_org/chrome/test/mini_installer/ |
uninstall_chrome.py | 7 # TODO(sukolsak): This should read the uninstall command from the registry and
|
/external/chromium_org/content/browser/streams/ |
stream_read_observer.h | 16 // Sent when there is data available to be read from the stream.
|
/external/chromium_org/content/common/ |
common.sb | 23 (allow sysctl-read) 30 (allow file-read* 40 (allow file-read-data file-read-metadata (literal "/dev/urandom"))
|
/external/chromium_org/content/public/common/ |
common_param_traits.h | 50 static bool Read(const Message* m, PickleIterator* iter, param_type* p); 58 static bool Read(const Message* m, PickleIterator* iter, param_type* r); 66 static bool Read(const Message* m, PickleIterator* iter, param_type* p); 74 static bool Read(const Message* m, PickleIterator* iter, param_type* p); 82 static bool Read(const Message* m, PickleIterator* iter, param_type* r); 90 static bool Read(const Message* m, PickleIterator* iter, param_type* r); 98 static bool Read(const Message* m, PickleIterator* iter, param_type* r); 106 static bool Read(const Message* m, PickleIterator* iter, param_type* r); 114 static bool Read(const Message* m, PickleIterator* iter, param_type* r); 122 static bool Read(const Message* m, PickleIterator* iter, param_type* r) [all...] |
/external/chromium_org/ipc/ |
ipc_param_traits.h | 9 // a data type is read, written and logged in the IPC system.
|
/external/chromium_org/media/base/ |
audio_decoder.h | 21 // Status codes for read operations. 39 // Only one read may be in flight at any given time. 46 // Read(). This can happen if the DemuxerStream gets flushed and doesn't have 50 virtual void Read(const ReadCB& read_cb) = 0;
|
/external/chromium_org/media/tools/player_x11/ |
data_source_logger.cc | 17 VLOG(1) << "Read(" << position << ", " << size << ") -> " << result; 38 void DataSourceLogger::Read( 41 VLOG(1) << "Read(" << position << ", " << size << ")"; 42 data_source_->Read(position, size, data, base::Bind(
|
/external/chromium_org/net/base/ |
big_endian.cc | 38 bool BigEndianReader::Read(T* value) { 47 return Read(value); 51 return Read(value); 55 return Read(value);
|
upload_element_reader.h | 18 // An interface to read an upload data element. 42 // Returns the number of bytes remaining to read. 50 // bytes read or error code when possible, otherwise, returns ERR_IO_PENDING 52 virtual int Read(IOBuffer* buf,
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
caret-in-columns.html | 6 -webkit-user-modify: read-write;
|
liveconnect-applet-get-boolean.html | 5 <input type="button" name="test" value="Read applet" onClick="alert('return value: '+document.Checker.checkVersion())"/>
|
/external/chromium_org/third_party/icu/source/test/intltest/ |
textfile.h | 33 * Read a line terminated by ^J or ^M or ^M^J, and convert it from 36 * @return TRUE if a line was read, or FALSE if the EOF 42 * Read a line, ignoring blank lines and lines that start with 45 * @return TRUE if a line was read, or FALSE if the EOF
|
/external/chromium_org/third_party/libjingle/source/talk/base/ |
stream_unittest.cc | 42 virtual StreamResult Read(void* buffer, size_t buffer_len, 43 size_t* read, int* error) { 48 if (read) 49 *read = buffer_len; 97 EXPECT_EQ(stream->Read(buffer, kBufSize, &bytes, NULL), SR_SUCCESS); 105 EXPECT_EQ(stream->Read(buffer, kBufSize, &bytes, NULL), SR_SUCCESS); 132 // Read a lot of bytes 133 EXPECT_EQ(stream->Read(buffer, kBufSize, &bytes, NULL), SR_SUCCESS); 140 // Read a bunch more bytes 141 EXPECT_EQ(stream->Read(buffer, kBufSize, &bytes, NULL), SR_SUCCESS) 441 size_t read; local [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/d3d1x/d3d1xshader/ |
gen-header.sh | 7 while read j; do
|
/external/chromium_org/third_party/openssl/openssl/ssl/ |
ssl_stat.c | 108 case SSL2_ST_GET_SERVER_HELLO_A: str="SSLv2 read server hello A"; break; 109 case SSL2_ST_GET_SERVER_HELLO_B: str="SSLv2 read server hello B"; break; 118 case SSL2_ST_GET_SERVER_VERIFY_A: str="SSLv2 read server verify A"; break; 119 case SSL2_ST_GET_SERVER_VERIFY_B: str="SSLv2 read server verify B"; break; 120 case SSL2_ST_GET_SERVER_FINISHED_A: str="SSLv2 read server finished A"; break; 121 case SSL2_ST_GET_SERVER_FINISHED_B: str="SSLv2 read server finished B"; break; 122 case SSL2_ST_GET_CLIENT_HELLO_A: str="SSLv2 read client hello A"; break; 123 case SSL2_ST_GET_CLIENT_HELLO_B: str="SSLv2 read client hello B"; break; 124 case SSL2_ST_GET_CLIENT_HELLO_C: str="SSLv2 read client hello C"; break; 127 case SSL2_ST_GET_CLIENT_MASTER_KEY_A: str="SSLv2 read client master key A"; break [all...] |
/external/chromium_org/third_party/skia/src/gpu/effects/ |
GrConfigConversionEffect.h | 17 * This class is used to perform config conversions. Clients may want to read/write data that is 19 * read/write using the faster path and perform an R/B swap in the shader if the client data is in 55 // if pixels are read back to a UPM buffer, written back to PM to the GPU, and read back again
|