Searched defs:out (Results 201 - 225 of 520) sorted by path

1234567891011>>

/frameworks/base/core/java/android/view/
H A DMotionEvent.java96 * System.out.printf("At time %d:", ev.getHistoricalEventTime(h));
98 * System.out.printf(" pointer %d: (%f,%f)",
102 * System.out.printf("At time %d:", ev.getEventTime());
104 * System.out.printf(" pointer %d: (%f,%f)",
3357 public void writeToParcel(Parcel out, int flags) { argument
3358 out.writeInt(PARCEL_TOKEN_MOTION_EVENT);
3359 nativeWriteToParcel(mNativePtr, out);
3576 throw new IllegalArgumentException("Axis out of range.");
3629 throw new IllegalArgumentException("Axis out of range.");
H A DPointerIcon.java124 /** Type constant: zoom-out. */
361 public void writeToParcel(Parcel out, int flags) { argument
362 out.writeInt(mType);
365 out.writeInt(mSystemIconResourceId);
367 mBitmap.writeToParcel(out, flags);
368 out.writeFloat(mHotSpotX);
369 out.writeFloat(mHotSpotY);
H A DSurfaceView.java854 public void executeCommand(String command, String parameters, ParcelFileDescriptor out) { argument
H A DView.java179 * Note: The Android framework is responsible for measuring, laying out and
416 * unspecified dimensions to find out how big they want to be, then call
445 * with the height set to UNSPECIFIED and a width of EXACTLY 240 to find out how
496 * the framework will take care of measuring, laying out, and drawing the tree
2776 * for the user to go out of it. A common example would be in an e-book
2821 * to be laid out as if it has requested
2823 * allows it to avoid artifacts when switching in and out of that mode, at
2833 * to be laid out as if it has requested
2835 * allows it to avoid artifacts when switching in and out of that mode, at
2899 * out o
14631 getScrollIndicatorBounds(@onNull Rect out) argument
22590 writeToParcel(Parcel out, int flags) argument
[all...]
H A DViewDebug.java302 * @param out The output writer
305 public void dumpViewHierarchyWithProperties(BufferedWriter out, int level); argument
505 BufferedWriter out = null;
507 out = new BufferedWriter(new OutputStreamWriter(clientStream), 32 * 1024);
510 profileViewAndChildren(view, out);
512 out.write("-1 -1 -1");
513 out.newLine();
515 out.write("DONE.");
516 out.newLine();
520 if (out !
527 profileViewAndChildren(final View view, BufferedWriter out) argument
532 profileViewAndChildren(final View view, BufferedWriter out, boolean root) argument
840 dumpv2(@onNull final View view, @NonNull ByteArrayOutputStream out) argument
966 dumpViewHierarchy(Context context, ViewGroup group, BufferedWriter out, int level, boolean skipChildren, boolean includeProperties) argument
997 dumpView(Context context, View view, BufferedWriter out, int level, boolean includeProperties) argument
1100 dumpViewProperties(Context context, Object view, BufferedWriter out) argument
1106 dumpViewProperties(Context context, Object view, BufferedWriter out, String prefix) argument
1168 exportMethods(Context context, Object view, BufferedWriter out, Class<?> klass, String prefix) argument
1251 exportFields(Context context, Object view, BufferedWriter out, Class<?> klass, String prefix) argument
1345 writeEntry(BufferedWriter out, String prefix, String name, String suffix, Object value) argument
1356 exportUnrolledFlags(BufferedWriter out, FlagToString[] mapping, int intValue, String prefix) argument
1373 exportUnrolledArray(Context context, BufferedWriter out, ExportedProperty property, int[] array, String prefix, String suffix) argument
1441 writeValue(BufferedWriter out, Object value) argument
[all...]
H A DViewGroup.java122 * their way out.
722 System.out.println(this + " requestChildFocus()");
966 System.out.println(this + " clearChildFocus()");
978 System.out.println(this + " clearFocus()");
992 System.out.println(this + " unFocus()");
1041 System.out.println("Find focus in " + this + ": flags="
2255 // have become out of sync.
2624 * filters out irrelevant pointer ids, and overrides its action if necessary.
2858 System.out.println(this + " ViewGroup.requestFocus direction="
3339 /** Return true if this ViewGroup is laying out usin
3768 getScrollIndicatorBounds(@onNull Rect out) argument
[all...]
H A DViewRootImpl.java1365 System.out.println("======================================");
1366 System.out.println("performTraversals -- after measure");
1441 System.out.println("======================================");
1442 System.out.println("performTraversals");
1714 // window, waiting until we can finish laying out this window
2075 // start out transparent
2099 System.out.println("======================================");
2100 System.out.println("performTraversals -- after setFrame");
2291 * all children in that container hierarchy are measured and laid out at the end of the layout
2336 Log.v(mTag, "Laying out "
7054 executeCommand(String command, String parameters, ParcelFileDescriptor out) argument
[all...]
H A DWindowId.java194 public void writeToParcel(Parcel out, int flags) { argument
195 out.writeStrongBinder(mToken.asBinder());
H A DWindowManager.java444 * Window type: panel that slides out from the status bar
485 * Window type: panel that slides out from over the status bar
513 * Window type: panel that slides out from under the status bar
990 /** Window flag: Enable touches to slide out of a window into neighboring
995 * Touches can slide out of the window but they cannot necessarily slide
1236 * Flag to indicate that this child window should always be laid-out in the parent
1566 * specify that this window will rotate in or out following a rotation.
1572 * specify that this window will fade in or out following a rotation.
1841 public void writeToParcel(Parcel out, int parcelableFlags) { argument
1842 out
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebView.java68 * through a history, zoom in and out, perform text searches and more.</p>
300 * instantiated a WebView. An individual app can opt out of this feature by putting the following
309 * out.
1324 * If its value is true, the content will be zoomed out to be fit
1709 * <li>a street type (Road, Circle, etc), either spelled out or
1712 * <li>a state or territory, either spelled out or two-letter abbr</li>
2056 * Gets whether this WebView can be zoomed out.
2058 * @return true if this WebView can be zoomed out
2096 * Performs zoom out in this WebView.
2098 * @return true if zoom out succeed
2119 dumpViewHierarchyWithProperties(BufferedWriter out, int level) argument
[all...]
H A DWebViewProvider.java264 public void dumpViewHierarchyWithProperties(BufferedWriter out, int level); argument
H A DWebViewProviderInfo.java66 public void writeToParcel(Parcel out, int flags) { argument
67 out.writeString(packageName);
68 out.writeString(description);
69 out.writeInt(availableByDefault ? 1 : 0);
70 out.writeInt(isFallback ? 1 : 0);
71 out.writeStringArray(signatures);
H A DWebViewProviderResponse.java54 public void writeToParcel(Parcel out, int flags) { argument
55 out.writeTypedObject(packageInfo, flags);
56 out.writeInt(status);
/frameworks/base/core/java/android/widget/
H A DAbsListView.java694 * Used for determining when to cancel out of overscroll.
1316 * Fast scrollers shown in this way will not fade out and will be a
1733 public void writeToParcel(Parcel out, int flags) { argument
1734 super.writeToParcel(out, flags);
1735 out.writeLong(selectedId);
1736 out.writeLong(firstId);
1737 out.writeInt(viewTop);
1738 out.writeInt(position);
1739 out.writeInt(height);
1740 out
[all...]
H A DAbsSpinner.java142 * Clear out all children from the list
160 * Figure out the dimensions of this Spinner. The width comes from
392 public void writeToParcel(Parcel out, int flags) { argument
393 super.writeToParcel(out, flags);
394 out.writeLong(selectedId);
395 out.writeInt(position);
455 // System.out.print("Looking for " + position);
458 // System.out.println(" HIT");
461 // System.out.println(" MISS");
H A DAdapterViewAnimator.java144 * In and out animations.
428 // flush out the old child
449 * optionally with the with the {@link #getOutAnimation() out animation} and
454 * @param animate Whether or not to use the in and out animations, defaults
494 // This section clears out any items that are in our active views list
742 // if the data changes, mWhichChild might be out of the bounds of the adapter
794 public void writeToParcel(Parcel out, int flags) { argument
795 super.writeToParcel(out, flags);
796 out.writeInt(this.whichChild);
H A DCheckedTextView.java474 public void writeToParcel(Parcel out, int flags) { argument
475 super.writeToParcel(out, flags);
476 out.writeValue(checked);
H A DCompoundButton.java506 public void writeToParcel(Parcel out, int flags) { argument
507 super.writeToParcel(out, flags);
508 out.writeValue(checked);
H A DExpandableListView.java1303 public void writeToParcel(Parcel out, int flags) { argument
1304 super.writeToParcel(out, flags);
1305 out.writeList(expandedGroupMetadataList);
H A DFastScroller.java55 /** Duration of fade-out animation. */
195 /** Whether decorations should be laid out from right to left. */
611 * @param out Rectangle into which measured bounds are placed.
613 private void measurePreview(View v, Rect out) { argument
622 measureFloating(v, margins, out);
624 measureViewToSide(v, mThumbImage, margins, out);
629 * Measures the bounds for a view that should be laid out against the edge
630 * of an adjacent view. If no adjacent view is provided, lays out against
637 * @param out Rectangle into which measured bounds are placed.
639 private void measureViewToSide(View view, View adjacent, Rect margins, Rect out) { argument
689 measureFloating(View preview, Rect margins, Rect out) argument
[all...]
H A DProgressBar.java498 final StateListDrawable out = new StateListDrawable();
501 out.addState(in.getStateSet(i), tileify(in.getStateDrawable(i), clip));
504 return out;
1704 // Subtract out padding for the purposes of the calculations below.
1876 public void writeToParcel(Parcel out, int flags) { argument
1877 super.writeToParcel(out, flags);
1878 out.writeInt(progress);
1879 out.writeInt(secondaryProgress);
H A DRemoteViews.java411 public void writeToParcel(Parcel out, int flags) { argument
412 out.writeInt(TAG);
413 out.writeInt(this.viewId);
414 out.writeInt(this.emptyViewId);
1016 public void writeToParcel(Parcel out, int flags) { argument
1017 out.writeInt(TAG);
1018 out.writeInt(this.viewId);
1019 out.writeString(this.methodName);
1278 public void writeToParcel(Parcel out, int flags) { argument
1279 out
[all...]
H A DSpinner.java643 // Clear out old views
712 * and fill out its layout paramters.
910 public void writeToParcel(Parcel out, int flags) { argument
911 super.writeToParcel(out, flags);
912 out.writeByte((byte) (showDropdown ? 1 : 0));
H A DTextView.java346 // (i.e. the first movement was to traverse out of this view, or this view was traversed into by
2190 // out all of the fields in the existing structure.
2393 // out all of the fields in the existing structure.
4213 "/" + ss.selEnd + " out of range for " + restored +
4366 CharSequence out = mFilters[i].filter(text, 0, text.length(), EMPTY_SPANNED, 0, 0);
4367 if (out != null) {
4368 text = out;
6172 // prevent the user from traversing out of this on the next key down.
8968 // The top of hte window has scrolled off the top of the window; figure out
10047 public void writeToParcel(Parcel out, in argument
[all...]
H A DToolbar.java2228 public void writeToParcel(Parcel out, int flags) { argument
2229 super.writeToParcel(out, flags);
2230 out.writeInt(expandedMenuItemId);
2231 out.writeInt(isOverflowOpen ? 1 : 0);

Completed in 530 milliseconds

1234567891011>>