Searched defs:out (Results 226 - 250 of 520) sorted by last modified time

1234567891011>>

/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DState.java188 public void writeToParcel(Parcel out, int flags) { argument
189 out.writeInt(action);
190 out.writeStringArray(acceptMimes);
191 out.writeInt(userSortOrder);
192 out.writeInt(allowMultiple ? 1 : 0);
193 out.writeInt(forceSize ? 1 : 0);
194 out.writeInt(showSize ? 1 : 0);
195 out.writeInt(localOnly ? 1 : 0);
196 out.writeInt(showAdvancedOption ? 1 : 0);
197 out
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/model/
H A DDocumentInfo.java104 public void write(DataOutputStream out) throws IOException { argument
105 out.writeInt(VERSION_SPLIT_URI);
106 DurableUtils.writeNullableString(out, authority);
107 DurableUtils.writeNullableString(out, documentId);
108 DurableUtils.writeNullableString(out, mimeType);
109 DurableUtils.writeNullableString(out, displayName);
110 out.writeLong(lastModified);
111 out.writeInt(flags);
112 DurableUtils.writeNullableString(out, summary);
113 out
[all...]
H A DDocumentStack.java125 public void write(DataOutputStream out) throws IOException { argument
126 out.writeInt(VERSION_ADD_ROOT);
128 out.writeBoolean(true);
129 root.write(out);
131 out.writeBoolean(false);
134 out.writeInt(size);
137 doc.write(out);
H A DDurable.java26 public void write(DataOutputStream out) throws IOException; argument
H A DDurableUtils.java33 final ByteArrayOutputStream out = new ByteArrayOutputStream();
34 d.write(new DataOutputStream(out));
35 return out.toByteArray();
85 public static void writeNullableString(DataOutputStream out, String value) throws IOException { argument
87 out.write(1);
88 out.writeUTF(value);
90 out.write(0);
H A DRootInfo.java141 public void write(DataOutputStream out) throws IOException { argument
142 out.writeInt(VERSION_DROP_TYPE);
143 DurableUtils.writeNullableString(out, authority);
144 DurableUtils.writeNullableString(out, rootId);
145 out.writeInt(flags);
146 out.writeInt(icon);
147 DurableUtils.writeNullableString(out, title);
148 DurableUtils.writeNullableString(out, summary);
149 DurableUtils.writeNullableString(out, documentId);
150 out
[all...]
/frameworks/base/media/java/android/media/
H A DResampleInputStream.java148 byte[] out, int outOffset, int npoints);
147 fir21(byte[] in, int inOffset, byte[] out, int outOffset, int npoints) argument
H A DTtmlRenderer.java218 private static void extractText(TtmlNode node, long startUs, long endUs, StringBuilder out, argument
221 out.append(node.mText);
223 out.append("\n");
228 int length = out.length();
230 extractText(node.mChildren.get(i), startUs, endUs, out, pTag || inPTag);
232 if (pTag && length != out.length()) {
233 out.append("\n");
252 StringBuilder out) {
254 out.append(node.mText);
256 out
251 extractTtmlFragment(TtmlNode node, long startUs, long endUs, StringBuilder out) argument
389 extractAttribute(XmlPullParser parser, int i, StringBuilder out) argument
[all...]
/frameworks/base/media/java/android/media/browse/
H A DMediaBrowser.java233 * Null out the variables and unbind from the service. This doesn't include
767 public void writeToParcel(Parcel out, int flags) { argument
768 out.writeInt(mFlags);
769 mDescription.writeToParcel(out, flags);
1007 // Clear out what we set in onServiceConnected
/frameworks/base/media/java/android/media/projection/
H A DMediaProjectionInfo.java76 public void writeToParcel(Parcel out, int flags) { argument
77 out.writeString(mPackageName);
78 UserHandle.writeToParcel(mUserHandle, out);
/frameworks/base/media/jni/
H A Dandroid_media_ResampleInputStream.cpp93 short out[BUF_SIZE]; local
101 out[i] = (short)(sum >> 16);
105 env->SetByteArrayRegion(jOut, jOutOffset, jNpoints * 2, (jbyte*)out);
H A Dandroid_media_Utils.cpp423 sp<AMessage> *out) {
555 *out = msg;
421 ConvertKeyValueArraysToMessage( JNIEnv *env, jobjectArray keys, jobjectArray values, sp<AMessage> *out) argument
H A Dandroid_mtp_MtpDevice.cpp377 bool check_uint32_arg(JNIEnv *env, const char* name, jlong value, uint32_t* out) { argument
385 *out = static_cast<uint32_t>(value);
/frameworks/base/media/mca/filterfw/native/core/
H A Dgeometry.cpp46 Point out; local
47 out.x_ = x_ + other.x_;
48 out.y_ = y_ + other.y_;
49 return out;
53 Point out; local
54 out.x_ = x_ - other.x_;
55 out.y_ = y_ - other.y_;
56 return out;
60 Point out; local
61 out
[all...]
/frameworks/base/media/mca/filterpacks/native/base/
H A Dgeometry.cpp45 Point out; local
46 out.x_ = x_ + other.x_;
47 out.y_ = y_ + other.y_;
48 return out;
52 Point out; local
53 out.x_ = x_ - other.x_;
54 out.y_ = y_ - other.y_;
55 return out;
59 Point out; local
60 out
[all...]
H A Dvec_types.h33 // out of boundary not checked
37 // out of boundary not checked
60 Vec<T, dim> out; local
62 out.data[i] = x.data[i] + y.data[i];
63 return out;
68 Vec<T, dim> out; local
70 out.data[i] = x.data[i] - y.data[i];
71 return out;
76 Vec<T, dim> out; local
78 out
84 Vec<T, dim> out; local
92 T out = 0; local
100 Vec<T, dim> out; local
108 Vec<T, dim> out; local
116 Vec<T, dim> out; local
[all...]
/frameworks/base/graphics/java/android/graphics/
H A DPoint.java116 * @param out The parcel to write the point's coordinates into
119 public void writeToParcel(Parcel out, int flags) { argument
120 out.writeInt(x);
121 out.writeInt(y);
H A DPointF.java125 * @param out The parcel to write the point's coordinates into
128 public void writeToParcel(Parcel out, int flags) { argument
129 out.writeFloat(x);
130 out.writeFloat(y);
H A DRect.java597 * @param out The parcel to write the rectangle's coordinates into
599 public void writeToParcel(Parcel out, int flags) { argument
600 out.writeInt(left);
601 out.writeInt(top);
602 out.writeInt(right);
603 out.writeInt(bottom);
H A DRectF.java448 * Set the dst integer Rect by rounding "out" this rectangle, choosing the
547 * @param out The parcel to write the rectangle's coordinates into
549 public void writeToParcel(Parcel out, int flags) { argument
550 out.writeFloat(left);
551 out.writeFloat(top);
552 out.writeFloat(right);
553 out.writeFloat(bottom);
/frameworks/base/graphics/java/android/graphics/pdf/
H A DPdfDocument.java165 * @param out The output stream. Cannot be null.
169 public void writeTo(OutputStream out) throws IOException { argument
172 if (out == null) {
173 throw new IllegalArgumentException("out cannot be null!");
175 nativeWriteTo(mNativeDocument, out, mChunk);
244 private native void nativeWriteTo(long nativeDocument, OutputStream out, byte[] chunk); argument
/frameworks/base/keystore/java/android/security/keystore/
H A DAndroidKeyStoreSignatureSpiBase.java205 true, // permit aborting this operation if keystore runs out of resources
310 protected final int engineSign(byte[] out, int outOffset, int outLen) argument
312 return super.engineSign(out, outOffset, outLen);
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp265 // Pad out the space we promised in the buffer. We can't corrupt the buffer,
308 compute_crc32(const char* file, FileRec* out) { argument
329 out->s.crc32 = crc;
609 // out of the substrings we've now built.
H A DLocaleData.cpp64 // Find the ancestors of a locale, and fill 'out' with it (assumes out has enough
74 // (If 'out' is nullptr, we do everything the same way but we simply don't write
75 // any results in 'out'.)
76 size_t findAncestors(uint32_t* out, ssize_t* stop_list_index, argument
82 if (out != nullptr) out[count] = ancestor;
171 // We have no way of figuring out which locale is a better match. For
178 void localeDataComputeScript(char out[4], const char* language, const char* region) { argument
180 memset(out, '\
[all...]
H A DResourceTypes.cpp93 // NOTE: if this truncates the dst string due to running out of space, no attempt is
1698 // check for sensical values pulled out of the stream so far...
1771 char out[4]) {
1784 out[0] = first + base;
1785 out[1] = second + base;
1786 out[2] = third + base;
1787 out[3] = 0;
1793 memcpy(out, in, 2);
1794 memset(out + 2, 0, 2);
1798 memset(out,
1770 unpackLanguageOrRegion(const char in[2], const char base, char out[4]) argument
1802 packLanguageOrRegion(const char* in, const char base, char out[2]) argument
[all...]

Completed in 2408 milliseconds

1234567891011>>