/libcore/ojluni/src/test/java/util/stream/bootlib/java/util/stream/ |
OpTestCase.java | 544 S_OUT out = streamF.apply(data.stream()).sequential(); local 545 AbstractPipeline ap = (AbstractPipeline) out;
|
/libcore/ojluni/src/test/java/util/stream/testlib/org/openjdk/testlib/java/util/stream/ |
OpTestCase.java | 545 S_OUT out = streamF.apply(data.stream()).sequential(); local 546 AbstractPipeline ap = (AbstractPipeline) out;
|
/packages/apps/Camera2/src/com/android/camera/exif/ |
ExifOutputStream.java | 42 * // Write the original jpeg out, the header will be add into the file. 114 * Writes the image out. The input data should be a valid JPEG format. After 129 out.write(buffer, offset, byteToProcess); 149 out.write(mBuffer.array(), 0, 2); 164 out.write(mBuffer.array(), 0, 2); 177 out.write(mBuffer.array(), 0, 4); 180 out.write(mBuffer.array(), 0, 4); 187 out.write(buffer, offset, length); 192 * Writes the one bytes out. The input data should be a valid JPEG format. 222 OrderedDataOutputStream dataOutputStream = new OrderedDataOutputStream(out); [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
ImageManager.java | 82 public void writeToParcel(Parcel out, int flags) { 83 out.writeInt(mLocation.ordinal()); 84 out.writeInt(mInclusion); 85 out.writeInt(mSort); 86 out.writeString(mBucketId); 87 out.writeParcelable(mSingleImageUri, flags); 88 out.writeInt(mIsEmptyImageList ? 1 : 0); 171 /* This is commented out because isVideo is not calling this now.
|
/packages/apps/Gallery2/gallerycommon/src/com/android/gallery3d/exif/ |
ExifOutputStream.java | 42 * // Write the original jpeg out, the header will be add into the file. 114 * Writes the image out. The input data should be a valid JPEG format. After 129 out.write(buffer, offset, byteToProcess); 149 out.write(mBuffer.array(), 0, 2); 164 out.write(mBuffer.array(), 0, 2); 177 out.write(mBuffer.array(), 0, 4); 180 out.write(mBuffer.array(), 0, 4); 187 out.write(buffer, offset, length); 192 * Writes the one bytes out. The input data should be a valid JPEG format. 222 OrderedDataOutputStream dataOutputStream = new OrderedDataOutputStream(out); [all...] |
/packages/apps/Launcher3/src/com/android/launcher3/ |
InvariantDeviceProfile.java | 295 InvariantDeviceProfile out = new InvariantDeviceProfile(); local 300 out.add(p.multiply(w)); 302 return out.multiply(1.0f/weights); 359 // To find out the desired width at different aspect ratios, we use the following two
|
/packages/apps/Messaging/src/com/android/messaging/util/exif/ |
ExifOutputStream.java | 43 * // Write the original jpeg out, the header will be add into the file. 115 * Writes the image out. The input data should be a valid JPEG format. After 130 out.write(buffer, offset, byteToProcess); 150 out.write(mBuffer.array(), 0, 2); 165 out.write(mBuffer.array(), 0, 2); 178 out.write(mBuffer.array(), 0, 4); 181 out.write(mBuffer.array(), 0, 4); 188 out.write(buffer, offset, length); 193 * Writes the one bytes out. The input data should be a valid JPEG format. 223 OrderedDataOutputStream dataOutputStream = new OrderedDataOutputStream(out); [all...] |
/packages/apps/PackageInstaller/src/com/android/packageinstaller/ |
InstallInstalling.java | 343 try (OutputStream out = session 350 session.fsync(out); 359 out.write(buffer, 0, numRead);
|
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/html/parser/ |
HtmlParser.java | 245 * due to the sanitizer stripping out nodes between Text nodes. It is 253 List<HtmlDocument.Node> out = local 261 mergeTextNodes(textNodes, out); 262 out.add(node); 265 mergeTextNodes(textNodes, out); 266 return out; [all...] |
/packages/apps/UnifiedEmail/src/org/apache/commons/io/ |
FileUtils.java | 223 OutputStream out = openOutputStream(file); local 224 IOUtils.closeQuietly(out); 1252 OutputStream out = null; local 1284 OutputStream out = null; local 1343 OutputStream out = null; local [all...] |
/packages/providers/UserDictionaryProvider/src/com/android/providers/userdictionary/ |
DictionaryBackupAgent.java | 173 String out = name + SEPARATOR + frequency + SEPARATOR + locale + SEPARATOR + appId local 175 byte[] line = out.getBytes(); 278 * @param out byte array 283 private int writeInt(byte[] out, int pos, int value) { 284 out[pos + 0] = (byte) ((value >> 24) & 0xFF); 285 out[pos + 1] = (byte) ((value >> 16) & 0xFF); 286 out[pos + 2] = (byte) ((value >> 8) & 0xFF); 287 out[pos + 3] = (byte) ((value >> 0) & 0xFF);
|
/prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
MathExtras.h | 235 unsigned char out[sizeof(Val)]; local 238 out[(sizeof(Val) - i) - 1] = BitReverseTable256[in[i]]; 239 std::memcpy(&Val, out, sizeof(Val)); 333 assert(N > 0 && N <= 64 && "integer width out of range"); 344 assert(N > 0 && N <= 64 && "integer width out of range"); 351 assert(N > 0 && N <= 64 && "integer width out of range"); 709 static_assert(B <= 32, "Bit width out of range."); 717 assert(B <= 32 && "Bit width out of range."); 725 static_assert(B <= 64, "Bit width out of range."); 733 assert(B <= 64 && "Bit width out of range.") [all...] |
/prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/ |
MathExtras.h | 235 unsigned char out[sizeof(Val)]; local 238 out[(sizeof(Val) - i) - 1] = BitReverseTable256[in[i]]; 239 std::memcpy(&Val, out, sizeof(Val)); 333 assert(N > 0 && N <= 64 && "integer width out of range"); 344 assert(N > 0 && N <= 64 && "integer width out of range"); 351 assert(N > 0 && N <= 64 && "integer width out of range"); 709 static_assert(B <= 32, "Bit width out of range."); 717 assert(B <= 32 && "Bit width out of range."); 725 static_assert(B <= 64, "Bit width out of range."); 733 assert(B <= 64 && "Bit width out of range.") [all...] |
/prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/ |
MathExtras.h | 235 unsigned char out[sizeof(Val)]; local 238 out[(sizeof(Val) - i) - 1] = BitReverseTable256[in[i]]; 239 std::memcpy(&Val, out, sizeof(Val)); 333 assert(N > 0 && N <= 64 && "integer width out of range"); 344 assert(N > 0 && N <= 64 && "integer width out of range"); 351 assert(N > 0 && N <= 64 && "integer width out of range"); 709 static_assert(B <= 32, "Bit width out of range."); 717 assert(B <= 32 && "Bit width out of range."); 725 static_assert(B <= 64, "Bit width out of range."); 733 assert(B <= 64 && "Bit width out of range.") [all...] |
/prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/ |
MathExtras.h | 235 unsigned char out[sizeof(Val)]; local 238 out[(sizeof(Val) - i) - 1] = BitReverseTable256[in[i]]; 239 std::memcpy(&Val, out, sizeof(Val)); 333 assert(N > 0 && N <= 64 && "integer width out of range"); 344 assert(N > 0 && N <= 64 && "integer width out of range"); 351 assert(N > 0 && N <= 64 && "integer width out of range"); 709 static_assert(B <= 32, "Bit width out of range."); 717 assert(B <= 32 && "Bit width out of range."); 725 static_assert(B <= 64, "Bit width out of range."); 733 assert(B <= 64 && "Bit width out of range.") [all...] |
/prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Support/ |
MathExtras.h | 235 unsigned char out[sizeof(Val)]; local 238 out[(sizeof(Val) - i) - 1] = BitReverseTable256[in[i]]; 239 std::memcpy(&Val, out, sizeof(Val)); 333 assert(N > 0 && N <= 64 && "integer width out of range"); 344 assert(N > 0 && N <= 64 && "integer width out of range"); 351 assert(N > 0 && N <= 64 && "integer width out of range"); 709 static_assert(B <= 32, "Bit width out of range."); 717 assert(B <= 32 && "Bit width out of range."); 725 static_assert(B <= 64, "Bit width out of range."); 733 assert(B <= 64 && "Bit width out of range.") [all...] |
/prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Support/ |
MathExtras.h | 235 unsigned char out[sizeof(Val)]; local 238 out[(sizeof(Val) - i) - 1] = BitReverseTable256[in[i]]; 239 std::memcpy(&Val, out, sizeof(Val)); 333 assert(N > 0 && N <= 64 && "integer width out of range"); 344 assert(N > 0 && N <= 64 && "integer width out of range"); 351 assert(N > 0 && N <= 64 && "integer width out of range"); 709 static_assert(B <= 32, "Bit width out of range."); 717 assert(B <= 32 && "Bit width out of range."); 725 static_assert(B <= 64, "Bit width out of range."); 733 assert(B <= 64 && "Bit width out of range.") [all...] |
/prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Support/ |
MathExtras.h | 235 unsigned char out[sizeof(Val)]; local 238 out[(sizeof(Val) - i) - 1] = BitReverseTable256[in[i]]; 239 std::memcpy(&Val, out, sizeof(Val)); 333 assert(N > 0 && N <= 64 && "integer width out of range"); 344 assert(N > 0 && N <= 64 && "integer width out of range"); 351 assert(N > 0 && N <= 64 && "integer width out of range"); 709 static_assert(B <= 32, "Bit width out of range."); 717 assert(B <= 32 && "Bit width out of range."); 725 static_assert(B <= 64, "Bit width out of range."); 733 assert(B <= 64 && "Bit width out of range.") [all...] |
/prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Support/ |
MathExtras.h | 235 unsigned char out[sizeof(Val)]; local 238 out[(sizeof(Val) - i) - 1] = BitReverseTable256[in[i]]; 239 std::memcpy(&Val, out, sizeof(Val)); 333 assert(N > 0 && N <= 64 && "integer width out of range"); 344 assert(N > 0 && N <= 64 && "integer width out of range"); 351 assert(N > 0 && N <= 64 && "integer width out of range"); 709 static_assert(B <= 32, "Bit width out of range."); 717 assert(B <= 32 && "Bit width out of range."); 725 static_assert(B <= 64, "Bit width out of range."); 733 assert(B <= 64 && "Bit width out of range.") [all...] |
/prebuilts/devtools/tools/lib/ |
screenshot2.jar | |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/rdma/ |
ib_user_cm.h | 29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 71 __u16 out; member in struct:ib_ucm_cmd_hdr
|
rdma_user_cm.h | 28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 73 __u16 out; member in struct:rdma_ucm_cmd_hdr
|
/prebuilts/ndk/r11/sources/android/support/src/stdio/ |
vfprintf.c | 20 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 187 static void out(FILE *f, const char *s, size_t l) function 203 out(f, pad, sizeof pad); 204 out(f, pad, l); 254 out(f, prefix, pl); 255 out(f, s, 3); 305 out(f, prefix, pl); 307 out(f, buf, s-buf); 309 out(f, estr, ebuf-estr); 422 out(f, prefix, pl) 701 FakeFILE out[1]; local 723 FakeFILE out[1]; local [all...] |
/prebuilts/ndk/r13/sources/android/support/src/stdio/ |
vfprintf.c | 20 TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 187 static void out(FILE *f, const char *s, size_t l) function 203 out(f, pad, sizeof pad); 204 out(f, pad, l); 254 out(f, prefix, pl); 255 out(f, s, 3); 305 out(f, prefix, pl); 307 out(f, buf, s-buf); 309 out(f, estr, ebuf-estr); 422 out(f, prefix, pl) 701 FakeFILE out[1]; local 723 FakeFILE out[1]; local [all...] |
/system/core/libsparse/ |
output_file.c | 71 int (*write_data_chunk)(struct output_file *out, unsigned int len, 73 int (*write_fill_chunk)(struct output_file *out, unsigned int len, 75 int (*write_skip_chunk)(struct output_file *out, int64_t len); 76 int (*write_end_chunk)(struct output_file *out); 94 struct output_file out; member in struct:output_file_gz 99 container_of((_o), struct output_file_gz, out) 102 struct output_file out; member in struct:output_file_normal 107 container_of((_o), struct output_file_normal, out) 110 struct output_file out; member in struct:output_file_callback 116 container_of((_o), struct output_file_callback, out) 667 struct output_file *out; local [all...] |