/external/chromium_org/tools/grit/grit/testdata/ |
substitute.grd | 25 View news that is personalized based on the articles you read. 27 For example, if you read lots of sports news, you'll see more sports articles. If you read technology news less often, you'll see fewer of those articles.
|
/external/chromium_org/tools/gyp/test/ninja/normalize-paths-win/ |
gyptest-normalize-paths.py | 23 subninja = open(test.built_file_path('obj/some_target.ninja')).read() 29 second = open(test.built_file_path('obj/second.ninja')).read() 34 action = open(test.built_file_path('obj/action.ninja')).read()
|
/external/chromium_org/tools/gyp/test/rename/ |
gyptest-filecase.py | 21 test.read('filecase/test.gyp').replace('file.c', 'fIlE.c')) 30 is_case_sensitive = test.read('filecase/FiLe.c') != test.read('filecase/fIlE.c')
|
/external/chromium_org/tools/gyp/test/variables/commands/ |
gyptest-commands-repeated.py | 16 expect = test.read('commands-repeated.gyp.stdout').replace('\r\n', '\n') 31 contents = test.read('commands-repeated.gypd').replace('\r\n', '\n') 32 expect = test.read('commands-repeated.gypd.golden').replace('\r\n', '\n')
|
gyptest-commands.py | 17 expect = test.read('commands.gyp.stdout').replace('\r', '') 32 contents = test.read('commands.gypd').replace('\r', '') 33 expect = test.read('commands.gypd.golden').replace('\r', '')
|
/external/e2fsprogs/e2fsck/ |
extend.c | 65 ret = read(fd, block, blocksize); 67 perror("read"); 77 perror("read");
|
/external/e2fsprogs/lib/ext2fs/ |
ext2_err.c | 30 "Attempt to write to filesystem opened read-only", 31 "Can't read group descriptors", 37 "Can't read an inode bitmap", 39 "Can't read an block bitmap", 41 "Can't read an inode table", 42 "Can't read next inode", 45 "Attempt to read block from filesystem resulted in short read", 77 "Filesystem has unsupported read-only feature(s)", 78 "IO Channel failed to seek on read or write" [all...] |
/external/llvm/lib/Analysis/ |
ProfileDataLoader.cpp | 61 // Read in the block of data... 66 /// ReadProfilingNumEntries - Read how many entries are in this profiling data 75 /// ReadProfilingBlock - Read the number of entries in the next profiling data 80 // Read the number of entries... 83 // Read in the data. 91 // Accumulate the data we just read into the existing data. 98 /// ReadProfilingArgBlock - Read the command line arguments that the progam was 103 // Read the number of bytes ... 106 // Read in the arguments (if there are any to read). Round up the length t [all...] |
/external/openssl/crypto/ripemd/ |
README | 11 after the first half of the calculation. I should read the origional 12 value, add then write. Currently I just save the new and read the origioal. 13 I then read both at the end. Bad.
|
/external/sepolicy/ |
access_vectors | 14 read 41 read 75 read 105 read 472 read 526 read 540 read 549 read 559 read 595 read [all...] |
/external/sfntly/cpp/src/sfntly/port/ |
file_input_stream.h | 36 virtual int32_t Read(); 37 virtual int32_t Read(ByteVector* b); 38 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length);
|
input_stream.h | 34 virtual int32_t Read() = 0; 35 virtual int32_t Read(ByteVector* b) = 0; 36 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length) = 0;
|
memory_input_stream.h | 36 virtual int32_t Read(); 37 virtual int32_t Read(ByteVector* b); 38 virtual int32_t Read(ByteVector* b, int32_t offset, int32_t length);
|
/external/skia/src/core/ |
SkFontStream.h | 23 * read offset. 31 * read offset. 39 * read offset.
|
/external/skia/src/utils/win/ |
SkDWriteFontFileStream.h | 20 * This allows Skia code to read an IDWriteFontFileStream. 27 virtual size_t read(void* buffer, size_t size) SK_OVERRIDE; 47 * This allows DirectWrite to read an SkStream.
|
/external/smack/src/org/jivesoftware/smack/util/ |
ReaderListener.java | 35 * Notification that the Reader has read a new string. 37 * @param str the read String 39 public abstract void read(String str); method in interface:ReaderListener
|
/external/valgrind/main/drd/tests/ |
annotate_ignore_rw.c | 16 /* Read s_a and modify s_b. */ 49 /* Read s_b and modify s_a. */ 60 /* Read s_c. */
|
annotate_ignore_write.c | 16 /* Read s_a and modify s_b. */ 50 /* Read s_b and modify s_a. */ 61 /* Read s_c and modify s_a. */
|
/external/valgrind/main/helgrind/tests/ |
tc03_re_excl.c | 19 use(arg[5]); /* read access */ 32 use(x[5]); /* read access */ 34 /* Just before the threads join, x[5] is ShR (read by both parent
|
/external/valgrind/main/memcheck/tests/ |
realloc3.stderr.exp | 1 Invalid read of size 4 7 Invalid read of size 4 13 Invalid read of size 4
|
/external/wpa_supplicant_8/wpa_supplicant/examples/ |
wps-ap-cli | 17 read -p "Enrollee PIN: " pin 21 read -p "Do you want to use this PIN (y/n)? " resp 53 read -p "Command: " cmd
|
/frameworks/native/libs/gui/ |
Sensor.cpp | 164 FlattenableUtils::read(buffer, size, len); 175 FlattenableUtils::read(buffer, size, len); 191 FlattenableUtils::read(buffer, size, mVersion); 192 FlattenableUtils::read(buffer, size, mHandle); 193 FlattenableUtils::read(buffer, size, mType); 194 FlattenableUtils::read(buffer, size, mMinValue); 195 FlattenableUtils::read(buffer, size, mMaxValue); 196 FlattenableUtils::read(buffer, size, mResolution); 197 FlattenableUtils::read(buffer, size, mPower); 198 FlattenableUtils::read(buffer, size, mMinDelay) [all...] |
/libcore/crypto/src/main/java/org/conscrypt/ |
ClientHello.java | 93 int size = in.read(); 95 in.read(session_id, 0, size); 104 byte b0 = (byte) in.read(); 105 byte b1 = (byte) in.read(); 108 size = in.read(); 110 in.read(compression_methods, 0, size); 149 byte b0 = (byte) in.read(); 150 byte b1 = (byte) in.read(); 151 byte b2 = (byte) in.read(); 158 System.arraycopy(in.read(challenge_length), 0, random, 32 - challenge_length, challenge_length) [all...] |
/libcore/luni/src/main/java/javax/crypto/ |
CipherInputStream.java | 27 * This class wraps an {@code InputStream} and a cipher so that {@code read()} 28 * methods return data that are read from the underlying {@code InputStream} and 34 * CipherInputStream} tries to read the data an decrypt them before returning. 52 * {@code CipherInputStream}. All read operations on such a stream will 56 * the input stream to read data from. 72 * the input stream to read data from. 86 public int read() throws IOException { method in class:CipherInputStream 102 int byteCount = in.read(inputBuffer); 118 return read(); 125 * if {@code buf} is {@code null}, the next {@code len} bytes are read an 136 public int read(byte[] buf, int off, int len) throws IOException { method in class:CipherInputStream [all...] |
/libcore/luni/src/test/java/tests/api/org/xml/sax/support/ |
BrokenInputStream.java | 24 * IOException after having read a specified number of bytes. Used for 41 public int read() throws IOException { method in class:BrokenInputStream 47 return stream.read();
|