/libcore/ojluni/src/main/java/java/time/zone/ |
Ser.java | 59 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 133 * @param out the data stream to write to, not null 136 public void writeExternal(ObjectOutput out) throws IOException { 137 writeInternal(type, object, out); 140 static void write(Object object, DataOutput out) throws IOException { 141 writeInternal(ZRULES, object, out); 144 private static void writeInternal(byte type, Object object, DataOutput out) throws IOException { 145 out.writeByte(type); 148 ((ZoneRules) object).writeExternal(out); 151 ((ZoneOffsetTransition) object).writeExternal(out); [all...] |
ZoneOffsetTransition.java | 59 * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS 193 * out.writeByte(2); // identifies a ZoneOffsetTransition 194 * out.writeEpochSec(toEpochSecond); 195 * out.writeOffset(offsetBefore); 196 * out.writeOffset(offsetAfter); 208 * @param out the output stream, not null 211 void writeExternal(DataOutput out) throws IOException { 212 Ser.writeEpochSec(toEpochSecond(), out); local 213 Ser.writeOffset(offsetBefore, out); 214 Ser.writeOffset(offsetAfter, out); [all...] |
/libcore/ojluni/src/main/java/java/util/zip/ |
GZIPOutputStream.java | 59 * the 3-argument constructor GZIPOutputStream(out, size, false). 61 * @param out the output stream 66 public GZIPOutputStream(OutputStream out, int size) throws IOException { 67 this(out, size, false); 74 * @param out the output stream 87 public GZIPOutputStream(OutputStream out, int size, boolean syncFlush) 90 super(out, new Deflater(Deflater.DEFAULT_COMPRESSION, true), 103 * the 2-argument constructor GZIPOutputStream(out, false). 105 * @param out the output stream 108 public GZIPOutputStream(OutputStream out) throws IOException [all...] |
/libcore/ojluni/src/main/java/sun/security/provider/certpath/ |
CertId.java | 106 System.out.println("Issuer Name is " + issuerName); 107 System.out.println("issuerNameHash is " + 109 System.out.println("issuerKeyHash is " + 111 System.out.println("SerialNumber is " + serialNumber.getNumber()); 157 public void encode(DerOutputStream out) throws IOException { 164 out.write(DerValue.tag_Sequence, tmp); 168 System.out.println("Encoded certId is " + 169 encoder.encode(out.toByteArray()));
|
/libcore/ojluni/src/main/java/sun/security/x509/ |
EDIPartyName.java | 121 * @param out the DER stream to encode the EDIPartyName to. 124 public void encode(DerOutputStream out) throws IOException { 143 out.write(DerValue.tag_Sequence, tagged);
|
Extension.java | 144 public void encode(OutputStream out) throws IOException { 145 if (out == null) { 159 out.write(dos2.toByteArray()); 165 * @param out the DerOutputStream to write the extension to. 168 public void encode(DerOutputStream out) throws IOException { 182 out.write(DerValue.tag_Sequence, dos);
|
OtherName.java | 149 * @param out the DER stream to encode the Other-Name to. 152 public void encode(DerOutputStream out) throws IOException { 155 gni.encode(out); 162 out.write(DerValue.tag_Sequence, tmp);
|
PolicyInformation.java | 269 * @param out the DerOutputStream to write the extension to. 272 public void encode(DerOutputStream out) throws IOException { 282 out.write(DerValue.tag_Sequence, tmp);
|
ReasonFlags.java | 240 * @param out the DerOutputStream to write the extension to. 243 public void encode(DerOutputStream out) throws IOException { 244 out.putTruncatedUnalignedBitString(new BitArray(this.bitString));
|
/libcore/tools/docs/crypto/src/java/libcore/java/security/ |
ListProviders.java | 85 System.out.println((SHOW_PROVIDER ? p.getName() + ": " : "") + type + " " + algorithm); 89 System.out.println("BEGIN ALGORITHM LIST"); 158 System.out.println("END ALGORITHM LIST");
|
/packages/apps/Contacts/src/com/android/contacts/editor/ |
StructuredNameEditorView.java | 139 public void writeToParcel(Parcel out, int flags) { 140 out.writeParcelable(mSuperState, 0); 142 out.writeInt(mChanged ? 1 : 0); 143 out.writeParcelable(mSnapshot, 0);
|
/packages/apps/Contacts/tests/src/com/android/contacts/model/ |
RawContactTest.java | 113 Parcelable out = parcel.readParcelable(parcelable.getClass().getClassLoader()); local 114 assertEquals(parcelable, out);
|
/packages/apps/Dialer/java/com/android/voicemail/impl/transcribe/grpc/ |
TranscriptionClientFactory.java | 116 StringBuilder out = new StringBuilder(length * 2); local 118 out.append(HEX_UPPERCASE[(bytes[i] & 0xf0) >>> 4]); 119 out.append(HEX_UPPERCASE[bytes[i] & 0x0f]); 121 return out.toString();
|
/packages/apps/UnifiedEmail/src/org/apache/commons/io/output/ |
ByteArrayOutputStream.java | 245 * @param out the output stream to write to 249 public synchronized void writeTo(OutputStream out) throws IOException { 254 out.write(buf, 0, c);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/alsa/ |
pcm_rate.h | 54 struct snd_pcm_rate_side_info out; member in struct:snd_pcm_rate_info 116 void (*dump)(void *obj, snd_output_t *out);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/x86_64-linux/include/c++/4.8/bits/ |
codecvt.h | 116 out(state_type& __state, const intern_type* __from, function in class:__codecvt_abstract_base 234 * the value returned. @see out for more information.
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/alsa/ |
pcm_rate.h | 54 struct snd_pcm_rate_side_info out; member in struct:snd_pcm_rate_info 116 void (*dump)(void *obj, snd_output_t *out);
|
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/x86_64-linux/include/c++/4.8/bits/ |
codecvt.h | 116 out(state_type& __state, const intern_type* __from, function in class:__codecvt_abstract_base 234 * the value returned. @see out for more information.
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/c++/4.8.3/bits/ |
codecvt.h | 116 out(state_type& __state, const intern_type* __from, function in class:__codecvt_abstract_base 234 * the value returned. @see out for more information.
|
/prebuilts/ndk/r10/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
codecvt.h | 116 out(state_type& __state, const intern_type* __from, function in class:__codecvt_abstract_base 234 * the value returned. @see out for more information.
|
/prebuilts/ndk/r11/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
codecvt.h | 116 out(state_type& __state, const intern_type* __from, function in class:__codecvt_abstract_base 234 * the value returned. @see out for more information.
|
/prebuilts/ndk/r13/sources/cxx-stl/gnu-libstdc++/4.9/include/bits/ |
codecvt.h | 116 out(state_type& __state, const intern_type* __from, function in class:__codecvt_abstract_base 234 * the value returned. @see out for more information.
|
/prebuilts/ndk/r13/sources/third_party/shaderc/third_party/spirv-tools/source/val/ |
Function.cpp | 24 // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 297 const BasicBlock* out; local 299 tie(out, defined) = const_cast<const Function*>(this)->GetBlock(block_id); 300 return make_pair(const_cast<BasicBlock*>(out), defined);
|
ValidationState.cpp | 24 // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE 44 bool out = false; local 47 case kLayoutCapabilities: out = op == SpvOpCapability; break; 48 case kLayoutExtensions: out = op == SpvOpExtension; break; 49 case kLayoutExtInstImport: out = op == SpvOpExtInstImport; break; 50 case kLayoutMemoryModel: out = op == SpvOpMemoryModel; break; 51 case kLayoutEntryPoint: out = op == SpvOpEntryPoint; break; 52 case kLayoutExecutionMode: out = op == SpvOpExecutionMode; break; 59 out = true; 68 out = true 222 std::stringstream out; local 231 std::stringstream out; local [all...] |
/system/core/libappfuse/ |
FuseBuffer.cc | 214 // Before writing |out|, we need to copy data from |in|. 241 fuse_init_out* const out = &response.init_out; local 242 out->major = FUSE_KERNEL_VERSION; 243 out->minor = std::min(minor, 15u); 244 out->max_readahead = max_readahead; 245 out->flags = FUSE_ATOMIC_O_TRUNC | FUSE_BIG_WRITES; 246 out->max_background = 32; 247 out->congestion_threshold = 32; 248 out->max_write = kFuseMaxWrite;
|