/frameworks/base/core/java/android/view/ |
IInputFilterHost.aidl | 17 package android.view; 19 import android.view.InputEvent;
|
IWindowId.aidl | 16 package android.view; 18 import android.view.IWindowFocusObserver;
|
/frameworks/base/core/java/android/view/animation/ |
Interpolator.java | 17 package android.view.animation;
|
/frameworks/base/core/java/com/android/internal/view/ |
IInputSessionCallback.aidl | 17 package com.android.internal.view; 19 import com.android.internal.view.IInputMethodSession;
|
/frameworks/base/core/java/com/android/internal/view/animation/ |
NativeInterpolatorFactory.java | 17 package com.android.internal.view.animation;
|
/frameworks/base/tools/layoutlib/bridge/src/android/view/ |
ViewConfiguration_Accessor.java | 17 package android.view;
|
/frameworks/base/tools/layoutlib/bridge/src/android/view/inputmethod/ |
InputMethodManager_Accessor.java | 17 package android.view.inputmethod;
|
/frameworks/base/tools/layoutlib/create/tests/mock_data/mock_android/view/ |
ViewGroup.java | 17 package mock_android.view; 19 public class ViewGroup extends View {
|
/frameworks/support/v17/leanback/api21/android/support/v17/leanback/widget/ |
RoundedRectHelperApi21.java | 20 import android.view.ViewOutlineProvider; 21 import android.view.View; 29 public void getOutline(View view, Outline outline) { 31 sCornerRadius = view.getResources().getDimensionPixelSize( 34 outline.setRoundRect(0, 0, view.getWidth(), view.getHeight(), sCornerRadius); 39 public static void setRoundedRectBackground(View view, int color) [all...] |
/frameworks/support/v4/ics/android/support/v4/view/ |
ViewGroupCompatIcs.java | 17 package android.support.v4.view; 19 import android.view.View; 20 import android.view.ViewGroup; 21 import android.view.accessibility.AccessibilityEvent; 27 public static boolean onRequestSendAccessibilityEvent(ViewGroup group, View child,
|
ViewParentCompatICS.java | 17 package android.support.v4.view; 19 import android.view.View; 20 import android.view.ViewParent; 21 import android.view.accessibility.AccessibilityEvent; 28 ViewParent parent, View child, AccessibilityEvent event) {
|
/packages/inputmethods/LatinIME/tools/dicttool/compat/android/view/inputmethod/ |
CompletionInfo.java | 17 package android.view.inputmethod;
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/mock_android/view/ |
ViewGroup.java | 17 package mock_android.view; 19 public class ViewGroup extends View {
|
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/ |
TestWindowManager.java | 1 package com.xtremelabs.robolectric.tester.android.view; 3 import android.view.Display; 4 import android.view.View; 5 import android.view.WindowManager; 16 private List<View> views = new ArrayList<View>(); 19 public void addView(View view, android.view.ViewGroup.LayoutParams layoutParams) [all...] |
/packages/apps/Contacts/src/com/android/contacts/util/ |
SchedulingUtils.java | 19 import android.view.View; 20 import android.view.ViewTreeObserver.OnDrawListener; 21 import android.view.ViewTreeObserver.OnGlobalLayoutListener; 22 import android.view.ViewTreeObserver.OnPreDrawListener; 29 public static void doAfterLayout(final View view, final Runnable runnable) { 34 view.getViewTreeObserver().removeOnGlobalLayoutListener(this); 38 view.getViewTreeObserver().addOnGlobalLayoutListener(listener); 42 public static void doOnPreDraw(final View view, final boolean drawNextFrame [all...] |
/frameworks/support/v4/honeycomb/android/support/v4/view/ |
MenuItemCompatHoneycomb.java | 17 package android.support.v4.view; 19 import android.view.MenuItem; 20 import android.view.View; 30 public static MenuItem setActionView(MenuItem item, View view) { 31 return item.setActionView(view); 38 public static View getActionView(MenuItem item) {
|
/cts/tests/tests/view/src/android/view/cts/ |
View_AnimationTest.java | 17 package android.view.cts; 22 import android.view.View; 23 import android.view.animation.Animation; 24 import android.view.animation.TranslateAnimation; 25 import android.view.animation.cts.AnimationTestUtils; 27 import com.android.cts.view.R; 31 * Test {@link View}. 43 super("com.android.cts.view", ViewTestCtsActivity.class); 55 final View view = mActivity.findViewById(R.id.mock_view) local 67 AnimationTestUtils.assertRunAnimation(getInstrumentation(), view, mAnimation, TIME_OUT); local 71 final View view = mActivity.findViewById(R.id.mock_view); local 86 AnimationTestUtils.assertRunAnimation(getInstrumentation(), view, mAnimation, TIME_OUT); local 90 final View view = mActivity.findViewById(R.id.mock_view); local 110 final View view = mActivity.findViewById(R.id.mock_view); local [all...] |
/frameworks/base/core/java/android/webkit/ |
WebViewClient.java | 22 import android.view.InputEvent; 23 import android.view.KeyEvent; 24 import android.view.ViewRootImpl; 39 * @param view The WebView that is initiating the callback. 44 public boolean shouldOverrideUrlLoading(WebView view, String url) { 55 * @param view The WebView that is initiating the callback. 60 public void onPageStarted(WebView view, String url, Bitmap favicon) { 69 * @param view The WebView that is initiating the callback. 72 public void onPageFinished(WebView view, String url) { 79 * @param view The WebView that is initiating the callback [all...] |
/packages/apps/Browser/tests/src/com/android/browser/ |
TestWebViewClient.java | 22 import android.view.KeyEvent; 45 public boolean shouldOverrideUrlLoading(WebView view, String url) { 46 return mWrappedClient.shouldOverrideUrlLoading(view, url); 51 public void onPageStarted(WebView view, String url, Bitmap favicon) { 52 mWrappedClient.onPageStarted(view, url, favicon); 57 public void onPageFinished(WebView view, String url) { 58 mWrappedClient.onPageFinished(view, url); 63 public void onLoadResource(WebView view, String url) { 64 mWrappedClient.onLoadResource(view, url); 70 public void onTooManyRedirects(WebView view, Message cancelMsg [all...] |
/frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/ |
RoundedRectHelper.java | 19 import android.view.View; 22 * Helper for setting rounded rectangle backgrounds on a view. 37 * Sets a rounded rectangle background on the given view, and clips the view to the 41 * @param view The view to be modified 44 public void setRoundedRectBackground(View view, int color) { 45 mImpl.setRoundedRectBackground(view, color) [all...] |
/external/chromium_org/ui/views/ |
view_model.cc | 8 #include "ui/views/view.h" 16 // view are owned by their parent, no need to delete them. 19 void ViewModel::Add(View* view, int index) { 23 entry.view = view; 52 View* view = entries_[index].view; local 54 entries_[i].view = entries_[i - 1].view 57 View* view = entries_[index].view; local [all...] |
/external/glide/library/src/main/java/com/bumptech/glide/request/target/ |
BitmapImageViewTarget.java | 12 private final ImageView view; field in class:BitmapImageViewTarget 14 public BitmapImageViewTarget(ImageView view) { 15 super(view); 16 this.view = view; 21 if (glideAnimation == null || !glideAnimation.animate(view.getDrawable(), resource, view, this)) { 22 view.setImageBitmap(resource); 28 view.setImageDrawable(placeholder);
|
/packages/apps/ContactsCommon/src/com/android/contacts/common/util/ |
SchedulingUtils.java | 19 import android.view.View; 20 import android.view.ViewTreeObserver.OnGlobalLayoutListener; 21 import android.view.ViewTreeObserver.OnPreDrawListener; 28 public static void doAfterLayout(final View view, final Runnable runnable) { 33 view.getViewTreeObserver().removeOnGlobalLayoutListener(this); 37 view.getViewTreeObserver().addOnGlobalLayoutListener(listener); 41 public static void doOnPreDraw(final View view, final boolean drawNextFrame [all...] |
/external/chromium-trace/trace-viewer/src/tcmalloc/ |
tcmalloc_instance_view.css | 11 .tcmalloc-instance-view #args { 15 .tcmalloc-instance-view #snapshots > * { 19 .tcmalloc-instance-view { 23 .tcmalloc-instance-view * { 27 .tcmalloc-instance-view .title { 33 .tcmalloc-instance-view td, 34 .tcmalloc-instance-view th {
|
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/ |
InputMethodManagerWrapper.java | 10 import android.view.View; 11 import android.view.inputmethod.InputMethodManager; 28 * @see android.view.inputmethod.InputMethodManager#restartInput(View) 30 public void restartInput(View view) { 31 getInputMethodManager().restartInput(view); 35 * @see android.view.inputmethod.InputMethodManager#showSoftInput(View, int, ResultReceiver [all...] |