Home
last modified time | relevance | path

Searched defs:view (Results 1 – 25 of 851) sorted by relevance

12345678910>>...35

/frameworks/base/core/java/android/webkit/
DWebViewClient.java57 public boolean shouldOverrideUrlLoading(WebView view, String url) { in shouldOverrideUrlLoading()
82 public boolean shouldOverrideUrlLoading(WebView view, WebResourceRequest request) { in shouldOverrideUrlLoading()
100 public void onPageStarted(WebView view, String url, Bitmap favicon) { in onPageStarted()
114 public void onPageFinished(WebView view, String url) { in onPageFinished()
124 public void onLoadResource(WebView view, String url) { in onLoadResource()
154 public void onPageCommitVisible(WebView view, String url) { in onPageCommitVisible()
191 public WebResourceResponse shouldInterceptRequest(WebView view, in shouldInterceptRequest()
227 public WebResourceResponse shouldInterceptRequest(WebView view, in shouldInterceptRequest()
245 public void onTooManyRedirects(WebView view, Message cancelMsg, in onTooManyRedirects()
324 public void onReceivedError(WebView view, int errorCode, in onReceivedError()
[all …]
DWebChromeClient.java36 public void onProgressChanged(WebView view, int newProgress) {} in onProgressChanged()
43 public void onReceivedTitle(WebView view, String title) {} in onReceivedTitle()
50 public void onReceivedIcon(WebView view, Bitmap icon) {} in onReceivedIcon()
58 public void onReceivedTouchIconUrl(WebView view, String url, in onReceivedTouchIconUrl()
96 public void onShowCustomView(View view, CustomViewCallback callback) {}; in onShowCustomView()
110 public void onShowCustomView(View view, int requestedOrientation, in onShowCustomView()
164 public boolean onCreateWindow(WebView view, boolean isDialog, in onCreateWindow()
175 public void onRequestFocus(WebView view) {} in onRequestFocus()
218 public boolean onJsAlert(WebView view, String url, String message, in onJsAlert()
256 public boolean onJsConfirm(WebView view, String url, String message, in onJsConfirm()
[all …]
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/
DCrossFadeHelper.java31 public static void fadeOut(final View view) { in fadeOut()
35 public static void fadeOut(final View view, final Runnable endRunnable) { in fadeOut()
39 public static void fadeOut(final View view, long duration, int delay, in fadeOut()
63 public static void fadeOut(View view, float fadeOutAmount) { in fadeOut()
78 public static void fadeOut(View view, float fadeOutAmount, boolean remap) { in fadeOut()
100 private static void updateLayerType(View view, float alpha) { in updateLayerType()
112 public static void fadeIn(final View view) { in fadeIn()
116 public static void fadeIn(final View view, long duration, int delay) { in fadeIn()
133 public static void fadeIn(View view, float fadeInAmount) { in fadeIn()
148 public static void fadeIn(View view, float fadeInAmount, boolean remap) { in fadeIn()
/frameworks/base/core/java/com/android/internal/widget/
DOrientationHelper.java84 public abstract int getDecoratedStart(View view); in getDecoratedStart()
96 public abstract int getDecoratedEnd(View view); in getDecoratedEnd()
112 public abstract int getTransformedEndWithDecoration(View view); in getTransformedEndWithDecoration()
128 public abstract int getTransformedStartWithDecoration(View view); in getTransformedStartWithDecoration()
138 public abstract int getDecoratedMeasurement(View view); in getDecoratedMeasurement()
148 public abstract int getDecoratedMeasurementInOther(View view); in getDecoratedMeasurementInOther()
192 public abstract void offsetChild(View view, int offset); in offsetChild()
273 public int getDecoratedMeasurement(View view) { in createHorizontalHelper()
281 public int getDecoratedMeasurementInOther(View view) { in createHorizontalHelper()
289 public int getDecoratedEnd(View view) { in createHorizontalHelper()
[all …]
DMessagingPropertyAnimator.java69 private static boolean isFirstLayout(View view) { in isFirstLayout()
77 public static void recycle(View view) { in recycle()
81 private static void setFirstLayout(View view, boolean first) { in setFirstLayout()
85 private static void setLayoutTop(View view, int top) { in setLayoutTop()
89 public static int getLayoutTop(View view) { in getLayoutTop()
103 public static void startLocalTranslationFrom(View view, int startTranslation, in startLocalTranslationFrom()
114 public static void startLocalTranslationTo(View view, int endTranslation, in startLocalTranslationTo()
206 private static void updateLayerType(View view, boolean animating) { in updateLayerType()
214 public static void fadeOut(final View view, Runnable endAction) { in fadeOut()
258 public static void setToLaidOutPosition(View view) { in setToLaidOutPosition()
/frameworks/base/core/tests/coretests/src/android/view/
DViewGroupChildrenTest.java60 View view = createView("1"); in testAddChild() local
73 View view = createView(String.valueOf(i + 1)); in testAddChildAtFront() local
77 View view = createView("X"); in testAddChildAtFront() local
91 View view = createView(String.valueOf(i + 1)); in testAddChildInMiddle() local
95 View view = createView("X"); in testAddChildInMiddle() local
109 View view = createView(String.valueOf(i + 1)); in testAddChildren() local
120 View view = createView("1"); in testRemoveChild() local
258 TextView view = new TextView(getActivity()); in createView() local
/frameworks/base/core/tests/coretests/src/android/widget/focus/
DScrollingThroughListOfFocusablesTest.java83 InternalSelectionView view = mActivity.getSelectedView(); in testScrollingDownInFirstItem() local
96 InternalSelectionView view = (InternalSelectionView) in testScrollingDownInFirstItem() local
144 InternalSelectionView view = mActivity.getSelectedView(); in testNoFadingEdgeAtBottomOfLastItem() local
172 InternalSelectionView view = mActivity.getSelectedView(); in testNavigatingUpThroughInternalSelection() local
179 InternalSelectionView view = mActivity.getSelectedView(); in testNavigatingUpThroughInternalSelection() local
193 InternalSelectionView view = mActivity.getSelectedView(); in testNavigatingUpThroughInternalSelection() local
205 final InternalSelectionView view = in testNavigatingUpThroughInternalSelection() local
/frameworks/opt/car/setupwizard/library/main/tests/robotests/src/com/android/car/setupwizardlib/robolectric/
DTestHelper.java34 public static void assertViewVisible(View view) { in assertViewVisible()
38 public static void assertViewNotVisible(View view) { in assertViewNotVisible()
42 public static void assertViewEnabled(View view) { in assertViewEnabled()
46 public static void assertViewNotEnabled(View view) { in assertViewNotEnabled()
50 public static void assertTextEqual(TextView view, String text) { in assertTextEqual()
/frameworks/opt/setupwizard/library/gingerbread/test/robotest/src/com/android/setupwizardlib/items/
DExpandableSwitchItemTest.java54 View view = createLayout(); in testInitialState() local
77 View view = createLayout(); in testExpanded() local
96 View view = createLayout(); in testCollapsed() local
117 View view = createLayout(); in testClick() local
132 final View view = LayoutInflater.from(application).inflate(mItem.getLayoutResource(), null); in testDrawableState() local
DSwitchItemTest.java78 View view = createLayout(); in testChecked() local
92 View view = createLayout(); in testNotChecked() local
106 View view = createLayout(); in testListener() local
139 View view = createLayout(); in testRebind() local
165 View view = createLayout(); in testListenerSetChecked() local
191 View view = createLayout(); in testToggle() local
211 View view = LayoutInflater.from(application).inflate(R.layout.suw_items_switch, null); in testAccessibility() local
/frameworks/base/core/java/com/android/internal/view/
DScrollCaptureViewHelper.java70 default boolean onAcceptSession(@NonNull V view) { in onAcceptSession()
81 @NonNull default Rect onComputeScrollBounds(@NonNull V view) { in onComputeScrollBounds()
99 void onPrepareForStart(@NonNull V view, @NonNull Rect scrollBounds); in onPrepareForStart()
117 ScrollResult onScrollRequested(@NonNull V view, @NonNull Rect scrollBounds, in onScrollRequested()
127 void onPrepareForEnd(@NonNull V view); in onPrepareForEnd()
/frameworks/layoutlib/bridge/src/android/view/
DAttachInfo_Accessor.java30 public static void setAttachInfo(View view) { in setAttachInfo()
45 public static void dispatchOnPreDraw(View view) { in dispatchOnPreDraw()
49 public static void detachFromWindow(View view) { in detachFromWindow()
55 public static ViewRootImpl getRootView(View view) { in getRootView()
/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/dagger/
DQSFragmentModule.java59 static Context provideThemedContext(@RootView View view) { in provideThemedContext()
85 static QSPanel provideQSPanel(@RootView View view) { in provideQSPanel()
91 static QSContainerImpl providesQSContainerImpl(@RootView View view) { in providesQSContainerImpl()
101 static QuickStatusBarHeader providesQuickStatusBarHeader(@RootView View view) { in providesQuickStatusBarHeader()
113 static QSFooterView providesQSFooterView(@RootView View view) { in providesQSFooterView()
128 static QSCustomizer providesQSCutomizer(@RootView View view) { in providesQSCutomizer()
/frameworks/base/apct-tests/perftests/autofill/src/android/view/autofill/
DMyAutofillCallback.java51 public void onAutofillEvent(View view, int event) { in onAutofillEvent()
68 public void expectEvent(@NonNull View view, int event) { in expectEvent()
109 private static String toString(View view, int event) { in toString()
114 public final View view; field in MyAutofillCallback.MyEvent
117 MyEvent(View view, int event) { in MyEvent()
/frameworks/base/core/java/android/view/
DViewManager.java34 public void addView(View view, ViewGroup.LayoutParams params); in addView()
35 public void updateViewLayout(View view, ViewGroup.LayoutParams params); in updateViewLayout()
36 public void removeView(View view); in removeView()
DGhostView.java41 private GhostView(View view) { in GhostView()
90 public static void calculateMatrix(View view, ViewGroup host, Matrix matrix) { in calculateMatrix()
99 public static GhostView addGhost(View view, ViewGroup viewGroup, Matrix matrix) { in addGhost()
140 public static GhostView addGhost(View view, ViewGroup viewGroup) { in addGhost()
145 public static void removeGhost(View view) { in removeGhost()
157 public static GhostView getGhost(View view) { in getGhost()
266 private static boolean isGhostWrapper(View view) { in isGhostWrapper()
308 private static void getParents(View view, ArrayList<View> parents) { in getParents()
321 private static boolean isOnTop(View view, View comparedWith) { in isOnTop()
/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/widget/
DRadioButtonPreferenceTest.java59 View view = LayoutInflater.from(mContext) in setUp() local
83 View view = mock(View.class); in onBindViewHolder_withSummary_containerShouldBeVisible() local
97 View view = mock(View.class); in onBindViewHolder_emptySummary_containerShouldBeGone() local
111 View view = mock(View.class); in nullSummary_containerShouldBeGone() local
123 View view = LayoutInflater.from(mContext) in setAppendixVisibility_setGone_shouldBeGone() local
/frameworks/base/core/java/android/text/method/
DKeyListener.java63 public boolean onKeyDown(View view, Editable text, in onKeyDown()
71 public boolean onKeyUp(View view, Editable text, in onKeyUp()
79 public boolean onKeyOther(View view, Editable text, KeyEvent event); in onKeyOther()
84 public void clearMetaKeyState(View view, Editable content, int states); in clearMetaKeyState()
/frameworks/base/core/java/android/view/translation/
DViewTranslationCallback.java40 boolean onShowTranslation(@NonNull View view); in onShowTranslation()
48 boolean onHideTranslation(@NonNull View view); in onHideTranslation()
54 boolean onClearTranslation(@NonNull View view); in onClearTranslation()
/frameworks/base/core/java/com/android/internal/widget/helper/
DItemTouchUIUtil.java43 void onDraw(Canvas c, RecyclerView recyclerView, View view, in onDraw()
50 void onDrawOver(Canvas c, RecyclerView recyclerView, View view, in onDrawOver()
57 void clearView(View view); in clearView()
63 void onSelected(View view); in onSelected()
DItemTouchUIUtilImpl.java31 public void onDraw(Canvas c, RecyclerView recyclerView, View view, in onDraw()
65 public void clearView(View view) { in clearView()
77 public void onSelected(View view) { in onSelected()
82 View view, float dX, float dY, int actionState, boolean isCurrentlyActive) { in onDrawOver()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/
DViewState.java140 public void initFrom(View view) { in initFrom()
154 public void applyToView(View view) { in applyToView()
233 public boolean isAnimating(View view) { in isAnimating()
255 private static boolean isAnimating(View view, int tag) { in isAnimating()
259 public static boolean isAnimating(View view, AnimatableProperty property) { in isAnimating()
325 private void updateAlphaAnimation(View view) { in updateAlphaAnimation()
407 private void updateAnimationZ(View view) { in updateAnimationZ()
411 private void updateAnimation(View view, AnimatableProperty property, in updateAnimation()
473 private void updateAnimationX(View view) { in updateAnimationX()
539 private void updateAnimationY(View view) { in updateAnimationY()
[all …]
/frameworks/base/tests/LockTaskTests/src/com/google/android/example/locktasktests/
DLaunchActivity.java69 public void onTryLock(View view) { in onTryLock()
73 public void onTryUnlock(View view) { in onTryUnlock()
77 public void onLaunchMain(View view) { in onLaunchMain()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
DPropertyAnimator.java44 public static <T extends View> void setProperty(final T view, in setProperty()
57 public static <T extends View> void startAnimation(final T view, in startAnimation()
135 public static <T extends View> void applyImmediately(T view, AnimatableProperty property, in applyImmediately()
141 public static void cancelAnimation(View view, AnimatableProperty property) { in cancelAnimation()
148 public static boolean isAnimating(View view, AnimatableProperty property) { in isAnimating()
/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/row/dagger/
DActivatableNotificationViewModule.java33 ExpandableView bindExpandableView(ActivatableNotificationView view); in bindExpandableView()
36 ExpandableOutlineView bindExpandableOutlineView(ActivatableNotificationView view); in bindExpandableOutlineView()

12345678910>>...35