Searched defs:out (Results 276 - 300 of 366) sorted by relevance

<<1112131415

/frameworks/base/core/java/android/bluetooth/
H A DBluetoothDevice.java665 public void writeToParcel(Parcel out, int flags) { argument
666 out.writeString(mAddress);
1111 * @return true confirmation has been sent out
/frameworks/base/core/java/android/content/pm/
H A DPackageInstaller.java489 * system may carve out a portion of the overall progress to represent
675 * the system may carve out a portion of the overall progress to
744 public void fsync(@NonNull OutputStream out) throws IOException { argument
745 if (out instanceof FileBridge.FileBridgeOutputStream) {
746 ((FileBridge.FileBridgeOutputStream) out).fsync();
1116 * system may carve out a portion of the overall progress to represent
/frameworks/base/core/java/android/net/
H A DUri.java695 * Parses an authority out of the given URI string.
732 * Parses a path out of this given URI string.
1086 // Parse out user info and then port.
1785 * @param out parcel to write to
1788 public static void writeToParcel(Parcel out, Uri uri) { argument
1790 out.writeInt(NULL_TYPE_ID);
1792 uri.writeToParcel(out, 0);
/frameworks/base/core/java/android/service/notification/
H A DZenModeConfig.java340 public void writeXml(XmlSerializer out) throws IOException { argument
341 out.startTag(null, ZEN_TAG);
342 out.attribute(null, ZEN_ATT_VERSION, Integer.toString(XML_VERSION));
344 out.startTag(null, ALLOW_TAG);
345 out.attribute(null, ALLOW_ATT_CALLS, Boolean.toString(allowCalls));
346 out.attribute(null, ALLOW_ATT_MESSAGES, Boolean.toString(allowMessages));
347 out.attribute(null, ALLOW_ATT_EVENTS, Boolean.toString(allowEvents));
348 out.attribute(null, ALLOW_ATT_FROM, Integer.toString(allowFrom));
349 out.endTag(null, ALLOW_TAG);
351 out
398 writeConditionXml(Condition c, XmlSerializer out) argument
[all...]
/frameworks/base/core/java/android/view/
H A DInputDevice.java839 public void writeToParcel(Parcel out, int flags) { argument
840 out.writeInt(mId);
841 out.writeInt(mGeneration);
842 out.writeInt(mControllerNumber);
843 out.writeString(mName);
844 out.writeInt(mVendorId);
845 out.writeInt(mProductId);
846 out.writeString(mDescriptor);
847 out.writeInt(mIsExternal ? 1 : 0);
848 out
[all...]
H A DViewDebug.java295 * @param out The output writer
298 public void dumpViewHierarchyWithProperties(BufferedWriter out, int level); argument
498 BufferedWriter out = null;
500 out = new BufferedWriter(new OutputStreamWriter(clientStream), 32 * 1024);
503 profileViewAndChildren(view, out);
505 out.write("-1 -1 -1");
506 out.newLine();
508 out.write("DONE.");
509 out.newLine();
513 if (out !
520 profileViewAndChildren(final View view, BufferedWriter out) argument
525 profileViewAndChildren(final View view, BufferedWriter out, boolean root) argument
936 dumpViewHierarchy(Context context, ViewGroup group, BufferedWriter out, int level, boolean skipChildren, boolean includeProperties) argument
967 dumpView(Context context, View view, BufferedWriter out, int level, boolean includeProperties) argument
1082 dumpViewProperties(Context context, Object view, BufferedWriter out) argument
1088 dumpViewProperties(Context context, Object view, BufferedWriter out, String prefix) argument
1150 exportMethods(Context context, Object view, BufferedWriter out, Class<?> klass, String prefix) argument
1233 exportFields(Context context, Object view, BufferedWriter out, Class<?> klass, String prefix) argument
1327 writeEntry(BufferedWriter out, String prefix, String name, String suffix, Object value) argument
1338 exportUnrolledFlags(BufferedWriter out, FlagToString[] mapping, int intValue, String prefix) argument
1355 exportUnrolledArray(Context context, BufferedWriter out, ExportedProperty property, int[] array, String prefix, String suffix) argument
1423 writeValue(BufferedWriter out, Object value) argument
[all...]
/frameworks/base/core/java/android/widget/
H A DAdapterViewAnimator.java146 * In and out animations.
431 // flush out the old child
452 * optionally with the with the {@link #getOutAnimation() out animation} and
457 * @param animate Whether or not to use the in and out animations, defaults
497 // This section clears out any items that are in our active views list
745 // if the data changes, mWhichChild might be out of the bounds of the adapter
797 public void writeToParcel(Parcel out, int flags) { argument
798 super.writeToParcel(out, flags);
799 out.writeInt(this.whichChild);
H A DExpandableListView.java1305 public void writeToParcel(Parcel out, int flags) { argument
1306 super.writeToParcel(out, flags);
1307 out.writeList(expandedGroupMetadataList);
H A DFastScroller.java52 /** Duration of fade-out animation. */
184 /** Whether decorations should be laid out from right to left. */
598 * @param out Rectangle into which measured bounds are placed.
600 private void measurePreview(View v, Rect out) { argument
609 measureFloating(v, margins, out);
611 measureViewToSide(v, mThumbImage, margins, out);
616 * Measures the bounds for a view that should be laid out against the edge
617 * of an adjacent view. If no adjacent view is provided, lays out against
624 * @param out Rectangle into which measured bounds are placed.
626 private void measureViewToSide(View view, View adjacent, Rect margins, Rect out) { argument
674 measureFloating(View preview, Rect margins, Rect out) argument
[all...]
H A DSpinner.java558 // Clear out old views
627 * and fill out its layout paramters.
824 public void writeToParcel(Parcel out, int flags) { argument
825 super.writeToParcel(out, flags);
826 out.writeByte((byte) (showDropdown ? 1 : 0));
/frameworks/base/core/java/com/android/internal/os/
H A DProcessCpuTracker.java200 // filter out kernel processes.
459 // This is a possible way to filter out processes that
585 private long[] getCpuSpeedTimes(long[] out) { argument
586 long[] tempTimes = out;
589 if (out == null) {
608 if (localLOGV && out == null) {
617 if (out == null) {
618 out = new long[speed];
621 System.arraycopy(tempTimes, 0, out, 0, speed);
623 return out;
[all...]
/frameworks/base/core/java/com/android/internal/widget/
H A DResolverDrawerLayout.java488 // ResolverDrawerLayout lays out vertically in child order;
679 // Start out collapsed at first unless we restored state for otherwise
806 public void writeToParcel(Parcel out, int flags) { argument
807 super.writeToParcel(out, flags);
808 out.writeInt(open ? 1 : 0);
/frameworks/base/libs/androidfw/
H A DBackupHelpers.cpp268 // Pad out the space we promised in the buffer. We can't corrupt the buffer,
311 compute_crc32(const char* file, FileRec* out) { argument
332 out->s.crc32 = crc;
613 // out of the substrings we've now built.
/frameworks/base/media/java/android/media/
H A DTtmlRenderer.java230 private static void extractText(TtmlNode node, long startUs, long endUs, StringBuilder out, argument
233 out.append(node.mText);
235 out.append("\n");
240 int length = out.length();
242 extractText(node.mChildren.get(i), startUs, endUs, out, pTag || inPTag);
244 if (pTag && length != out.length()) {
245 out.append("\n");
264 StringBuilder out) {
266 out.append(node.mText);
268 out
263 extractTtmlFragment(TtmlNode node, long startUs, long endUs, StringBuilder out) argument
401 extractAttribute(XmlPullParser parser, int i, StringBuilder out) argument
[all...]
/frameworks/base/packages/DocumentsUI/src/com/android/documentsui/
H A DDocumentsActivity.java1242 public void writeToParcel(Parcel out, int flags) { argument
1243 out.writeInt(action);
1244 out.writeInt(userMode);
1245 out.writeStringArray(acceptMimes);
1246 out.writeInt(userSortOrder);
1247 out.writeInt(allowMultiple ? 1 : 0);
1248 out.writeInt(showSize ? 1 : 0);
1249 out.writeInt(localOnly ? 1 : 0);
1250 out.writeInt(forceAdvanced ? 1 : 0);
1251 out
[all...]
/frameworks/base/packages/Keyguard/src/com/android/keyguard/
H A DKeyguardHostView.java832 public void writeToParcel(Parcel out, int flags) { argument
833 super.writeToParcel(out, flags);
834 out.writeInt(this.transportState);
835 out.writeInt(this.appWidgetToShow);
836 out.writeParcelable(insets, 0);
/frameworks/base/packages/SettingsProvider/src/com/android/providers/settings/
H A DSettingsBackupAgent.java227 // Parse out all the key management regimes permitted for this network. The literal
305 // Parse out 'network=' decls so we can ignore duplicates
531 DataOutputStream out = new DataOutputStream(bufstream);
534 out.writeInt(FULL_BACKUP_VERSION);
537 out.writeInt(systemSettingsData.length);
538 out.write(systemSettingsData);
540 out.writeInt(secureSettingsData.length);
541 out.write(secureSettingsData);
543 out.writeInt(globalSettingsData.length);
544 out
1018 writeInt(byte[] out, int pos, int value) argument
1026 writeBytes(byte[] out, int pos, byte[] value) argument
[all...]
/frameworks/base/packages/WallpaperCropper/src/com/android/photos/views/
H A DTiledImageRenderer.java37 * Handles laying out, decoding, and drawing of tiles in GL
349 private void getRange(Rect out, int cX, int cY, int level, int rotation) { argument
350 getRange(out, cX, cY, level, 1f / (1 << (level + 1)), rotation);
359 private void getRange(Rect out, argument
385 out.set(left, top, right, bottom);
/frameworks/base/services/core/java/com/android/server/pm/
H A DPackageInstallerService.java400 XmlSerializer out = new FastXmlSerializer();
401 out.setOutput(fos, "utf-8");
402 out.startDocument(null, true);
403 out.startTag(null, TAG_SESSIONS);
407 writeSessionLocked(out, session);
409 out.endTag(null, TAG_SESSIONS);
410 out.endDocument();
420 private void writeSessionLocked(XmlSerializer out, PackageInstallerSession session) argument
424 out.startTag(null, TAG_SESSION);
426 writeIntAttribute(out, ATTR_SESSION_I
[all...]
/frameworks/ex/widget/java/com/android/ex/widget/
H A DStaggeredGridView.java64 * Like ListView, SGV populates from an adapter and recycles views that fall out
1327 // Clear out the views (but don't clear out the layout records or recycler because the data
1595 public void writeToParcel(Parcel out, int flags) { argument
1596 super.writeToParcel(out, flags);
1597 out.writeLong(firstId);
1598 out.writeInt(position);
1599 out.writeInt(topOffset);
/frameworks/native/cmds/atrace/
H A Datrace.cpp648 uint8_t *in, *out; local
661 out = (uint8_t*)malloc(bufSize);
664 zs.next_out = out;
687 result = write(STDOUT_FILENO, out, bufSize);
695 zs.next_out = out;
707 result = write(STDOUT_FILENO, out, bytes);
720 free(out);
/frameworks/native/libs/binder/
H A DIPCThreadState.cpp74 static const void* printReturnCommand(TextOutput& out, const void* _cmd);
75 static const void* printCommand(TextOutput& out, const void* _cmd);
137 static const void* printBinderTransactionData(TextOutput& out, const void* data) argument
143 out << "target.desc=" << btd->target.handle;
145 out << "target.ptr=" << btd->target.ptr;
147 out << " (cookie " << btd->cookie << ")" << endl
156 static const void* printReturnCommand(TextOutput& out, const void* _cmd) argument
163 out << "BR_ERROR: " << (void*)(*cmd++) << endl;
166 out << "Unknown reply: " << code << endl;
169 out << kReturnString
217 printCommand(TextOutput& out, const void* _cmd) argument
[all...]
/frameworks/native/libs/gui/
H A DGLConsumer.cpp90 static void mtxMul(float out[16], const float a[16], const float b[16]);
504 // never been set, so don't error out (below).
1035 static void mtxMul(float out[16], const float a[16], const float b[16]) { argument
1036 out[0] = a[0]*b[0] + a[4]*b[1] + a[8]*b[2] + a[12]*b[3];
1037 out[1] = a[1]*b[0] + a[5]*b[1] + a[9]*b[2] + a[13]*b[3];
1038 out[2] = a[2]*b[0] + a[6]*b[1] + a[10]*b[2] + a[14]*b[3];
1039 out[3] = a[3]*b[0] + a[7]*b[1] + a[11]*b[2] + a[15]*b[3];
1041 out[4] = a[0]*b[4] + a[4]*b[5] + a[8]*b[6] + a[12]*b[7];
1042 out[5] = a[1]*b[4] + a[5]*b[5] + a[9]*b[6] + a[13]*b[7];
1043 out[
[all...]
H A DSurface.cpp813 ANativeWindowBuffer* out; local
815 status_t err = dequeueBuffer(&out, &fenceFd);
818 sp<GraphicBuffer> backBuffer(GraphicBuffer::getSelf(out));
829 // figure out if we can copy the frontbuffer back
H A DSurfaceComposerClient.cpp263 ComposerState* const out = mComposerStates.editArray(); local
264 return &(out[index].state);

Completed in 6253 milliseconds

<<1112131415