Searched defs:out (Results 176 - 200 of 520) sorted by path

1234567891011>>

/frameworks/base/core/java/android/security/keymaster/
H A DKeymasterBlobArgument.java45 public void writeValue(Parcel out) { argument
46 out.writeByteArray(blob);
H A DKeymasterBooleanArgument.java44 public void writeValue(Parcel out) { argument
H A DKeymasterCertificateChain.java62 public void writeToParcel(Parcel out, int flags) { argument
64 out.writeInt(0);
66 out.writeInt(mCertificates.size());
68 out.writeByteArray(arg);
H A DKeymasterDateArgument.java45 public void writeValue(Parcel out) { argument
46 out.writeLong(date.getTime());
H A DKeymasterIntArgument.java47 public void writeValue(Parcel out) { argument
48 out.writeInt(value);
H A DKeymasterLongArgument.java45 public void writeValue(Parcel out) { argument
46 out.writeLong(value);
H A DOperationResult.java75 public void writeToParcel(Parcel out, int flags) { argument
76 out.writeInt(resultCode);
77 out.writeStrongBinder(token);
78 out.writeLong(operationHandle);
79 out.writeInt(inputConsumed);
80 out.writeByteArray(output);
81 outParams.writeToParcel(out, flags);
/frameworks/base/core/java/android/service/carrier/
H A DCarrierIdentifier.java99 public void writeToParcel(Parcel out, int flags) { argument
100 out.writeString(mMcc);
101 out.writeString(mMnc);
102 out.writeString(mSpn);
103 out.writeString(mImsi);
104 out.writeString(mGid1);
105 out.writeString(mGid2);
/frameworks/base/core/java/android/service/notification/
H A DNotificationRankingUpdate.java64 public void writeToParcel(Parcel out, int flags) { argument
65 out.writeStringArray(mKeys);
66 out.writeStringArray(mInterceptedKeys);
67 out.writeBundle(mVisibilityOverrides);
68 out.writeBundle(mSuppressedVisualEffects);
69 out.writeIntArray(mImportance);
70 out.writeBundle(mImportanceExplanation);
71 out.writeBundle(mOverrideGroupKeys);
H A DStatusBarNotification.java163 public void writeToParcel(Parcel out, int flags) { argument
164 out.writeString(this.pkg);
165 out.writeString(this.opPkg);
166 out.writeInt(this.id);
168 out.writeInt(1);
169 out.writeString(this.tag);
171 out.writeInt(0);
173 out.writeInt(this.uid);
174 out.writeInt(this.initialPid);
175 this.notification.writeToParcel(out, flag
[all...]
H A DZenModeConfig.java457 public void writeXml(XmlSerializer out) throws IOException { argument
458 out.startTag(null, ZEN_TAG);
459 out.attribute(null, ZEN_ATT_VERSION, Integer.toString(XML_VERSION));
460 out.attribute(null, ZEN_ATT_USER, Integer.toString(user));
462 out.startTag(null, ALLOW_TAG);
463 out.attribute(null, ALLOW_ATT_CALLS, Boolean.toString(allowCalls));
464 out.attribute(null, ALLOW_ATT_REPEAT_CALLERS, Boolean.toString(allowRepeatCallers));
465 out.attribute(null, ALLOW_ATT_MESSAGES, Boolean.toString(allowMessages));
466 out.attribute(null, ALLOW_ATT_REMINDERS, Boolean.toString(allowReminders));
467 out
509 writeRuleXml(ZenRule rule, XmlSerializer out) argument
545 writeConditionXml(Condition c, XmlSerializer out) argument
[all...]
/frameworks/base/core/java/android/service/wallpaper/
H A DWallpaperService.java531 protected void dump(String prefix, FileDescriptor fd, PrintWriter out, String[] args) { argument
532 out.print(prefix); out.print("mInitializing="); out.print(mInitializing);
533 out.print(" mDestroyed="); out.println(mDestroyed);
534 out.print(prefix); out.print("mVisible="); out.print(mVisible);
535 out
1280 dump(FileDescriptor fd, PrintWriter out, String[] args) argument
[all...]
/frameworks/base/core/java/android/text/
H A DHtml.java267 StringBuilder out = new StringBuilder();
268 withinHtml(out, text, option);
269 return out.toString();
276 StringBuilder out = new StringBuilder();
277 withinStyle(out, text, 0, text.length());
278 return out.toString();
281 private static void withinHtml(StringBuilder out, Spanned text, int option) { argument
283 encodeTextAlignmentByDiv(out, text, option);
287 withinDiv(out, text, 0, text.length(), option);
290 private static void encodeTextAlignmentByDiv(StringBuilder out, Spanne argument
326 withinDiv(StringBuilder out, Spanned text, int start, int end, int option) argument
406 withinBlockquote(StringBuilder out, Spanned text, int start, int end, int option) argument
415 withinBlockquoteIndividual(StringBuilder out, Spanned text, int start, int end) argument
480 withinBlockquoteConsecutive(StringBuilder out, Spanned text, int start, int end) argument
517 withinParagraph(StringBuilder out, Spanned text, int start, int end) argument
643 withinStyle(StringBuilder out, CharSequence text, int start, int end) argument
[all...]
H A DStaticLayout.java38 * is laid out. Use {@link DynamicLayout} for text that may change.
67 * @param source The text to be laid out, optionally with spans
132 * @param source The text to be laid out, optionally with spans
631 chooseHt = null; // So that out() would not assume it has any contents
819 v = out(source, here, endPos,
857 v = out(source,
870 private int out(CharSequence text, int start, int end, method in class:StaticLayout
/frameworks/base/core/java/android/text/util/
H A DRfc822Tokenizer.java45 public static void tokenize(CharSequence text, Collection<Rfc822Token> out) { argument
66 out.add(new Rfc822Token(name.toString(),
70 out.add(new Rfc822Token(null,
151 out.add(new Rfc822Token(name.toString(),
155 out.add(new Rfc822Token(null,
172 ArrayList<Rfc822Token> out = new ArrayList<Rfc822Token>();
173 tokenize(text, out);
174 return out.toArray(new Rfc822Token[out.size()]);
/frameworks/base/core/java/android/util/
H A DBackupUtils.java46 public static void writeString(DataOutputStream out, String val) throws IOException { argument
48 out.writeByte(NOT_NULL);
49 out.writeUTF(val);
51 out.writeByte(NULL);
H A DBase64OutputStream.java40 * @param out the OutputStream to write the encoded data to
44 public Base64OutputStream(OutputStream out, int flags) { argument
45 this(out, flags, true);
53 * @param out the OutputStream to write the encoded data to
60 public Base64OutputStream(OutputStream out, int flags, boolean encode) { argument
61 super(out);
80 // internal buffer full; write it out.
115 out.close();
117 out.flush();
141 out
[all...]
H A DDebugUtils.java61 * should always be stripped out of the release binaries and avoided
111 public static void buildShortClassTag(Object cls, StringBuilder out) { argument
113 out.append("null");
123 out.append(simpleName);
124 out.append('{');
125 out.append(Integer.toHexString(System.identityHashCode(cls)));
H A DJsonWriter.java71 * public void writeJsonStream(OutputStream out, List<Message> messages) throws IOException {
72 * JsonWriter writer = new JsonWriter(new OutputStreamWriter(out, "UTF-8"));
123 private final Writer out; field in class:JsonWriter
144 * Creates a new instance that writes a JSON-encoded stream to {@code out}.
148 public JsonWriter(Writer out) { argument
149 if (out == null) {
150 throw new NullPointerException("out == null");
152 this.out = out;
241 out
[all...]
/frameworks/base/core/java/android/util/jar/
H A DStrictJarManifest.java245 * Writes out the attribute information of the specified manifest to the
249 * the manifest to write out.
250 * @param out
255 static void write(StrictJarManifest manifest, OutputStream out) throws IOException { argument
266 writeEntry(out, versionName, version, encoder, buffer);
271 writeEntry(out, name, manifest.mainAttributes.getValue(name), encoder, buffer);
275 out.write(LINE_SEPARATOR);
279 writeEntry(out, Attributes.Name.NAME, key, encoder, buffer);
284 writeEntry(out, name, attributes.getValue(name), encoder, buffer);
286 out
[all...]
/frameworks/base/core/java/android/view/
H A DDisplay.java1020 * For example, applications running on a 4K display may have their UI laid out and rendered
1036 * For example, applications running on a 4K display may have their UI laid out and rendered
1105 public void writeToParcel(Parcel out, int parcelableFlags) { argument
1106 out.writeInt(mModeId);
1107 out.writeInt(mWidth);
1108 out.writeInt(mHeight);
1109 out.writeFloat(mRefreshRate);
1320 public void writeToParcel(Parcel out, int parcelableFlags) { argument
1321 out.writeInt(mId);
1322 out
[all...]
H A DInputChannel.java118 * as an out parameter in a binder call.
152 public void writeToParcel(Parcel out, int flags) { argument
153 if (out == null) {
154 throw new IllegalArgumentException("out must not be null");
157 nativeWriteToParcel(out);
H A DInputDevice.java907 public void writeToParcel(Parcel out, int flags) { argument
908 out.writeInt(mId);
909 out.writeInt(mGeneration);
910 out.writeInt(mControllerNumber);
911 out.writeString(mName);
912 out.writeInt(mVendorId);
913 out.writeInt(mProductId);
914 out.writeString(mDescriptor);
915 out.writeInt(mIsExternal ? 1 : 0);
916 out
[all...]
H A DKeyCharacterMap.java288 private static native void nativeWriteToParcel(long ptr, Parcel out); argument
715 public void writeToParcel(Parcel out, int flags) { argument
716 if (out == null) {
719 nativeWriteToParcel(mPtr, out);
H A DKeyEvent.java492 /** Key code constant: Zoom out key. */
760 /** Key code constant: Navigate out key.
761 * Backs out one level of a navigation hierarchy or collapses the item that currently has
1939 * not considered modifier keys. Consequently, this function specifically masks out
2960 public void writeToParcel(Parcel out, int flags) { argument
2961 out.writeInt(PARCEL_TOKEN_KEY_EVENT);
2963 out.writeInt(mDeviceId);
2964 out.writeInt(mSource);
2965 out.writeInt(mAction);
2966 out
[all...]

Completed in 3707 milliseconds

1234567891011>>