HomeSort by relevance Sort by last modified time
    Searched refs:view (Results 1 - 25 of 6388) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /frameworks/support/v4/kitkat/android/support/v4/view/
ViewCompatKitKat.java 17 package android.support.v4.view;
19 import android.view.View;
22 * KitKat-specific View API implementation.
25 public static int getAccessibilityLiveRegion(View view) {
26 return view.getAccessibilityLiveRegion();
29 public static void setAccessibilityLiveRegion(View view, int mode) {
30 view.setAccessibilityLiveRegion(mode)
    [all...]
  /frameworks/support/v4/eclair-mr1/android/support/v4/view/
ViewCompatEclairMr1.java 18 package android.support.v4.view;
20 import android.view.View;
23 public static boolean isOpaque(View view) {
24 return view.isOpaque();
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/unittests/mock_android/view/
View.java 17 package mock_android.view;
19 public class View {
  /external/chromium/webkit/glue/
webview_unittest.cc 15 WebView* view = test_shell_->webView(); local
16 ASSERT_TRUE(view != 0);
18 view->setIsActive(true);
19 EXPECT_TRUE(view->isActive());
21 view->setIsActive(false);
22 EXPECT_FALSE(view->isActive());
24 view->setIsActive(true);
25 EXPECT_TRUE(view->isActive());
  /frameworks/base/core/java/android/view/
DisplayInfo.aidl 17 package android.view;
DragEvent.aidl 17 package android.view;
GraphicBuffer.aidl 17 package android.view;
InputChannel.aidl 1 /* //device/java/android/android/view/InputChannel.aidl
18 package android.view;
InputDevice.aidl 1 /* //device/java/android/android.view.InputDevice.aidl
18 package android.view;
InputEvent.aidl 1 /* //device/java/android/android.view.InputEvent.aidl
18 package android.view;
KeyEvent.aidl 1 /* //device/java/android/android.view.KeyEvent.aidl
18 package android.view;
MagnificationSpec.aidl 18 package android.view;
MotionEvent.aidl 1 /* //device/java/android/android.view.KeyEvent.aidl
18 package android.view;
PointerIcon.aidl 17 package android.view;
Surface.aidl 1 /* //device/java/android/android/view/Surface.aidl
18 package android.view;
ViewManager.java 17 package android.view;
25 * Assign the passed LayoutParams to the passed View and add the view to the window.
26 * <p>Throws {@link android.view.WindowManager.BadTokenException} for certain programming
27 * errors, such as adding a second view to a window without removing the first view.
28 * <p>Throws {@link android.view.WindowManager.InvalidDisplayException} if the window is on a
31 * @param view The view to be added to this window.
32 * @param params The LayoutParams to assign to view
    [all...]
  /external/chromium_org/chrome/browser/ui/views/
native_focus_tracker_views_aura.cc 12 gfx::NativeView view) {
13 while (view) {
15 BrowserView::GetBrowserViewForNativeWindow(view);
18 view = view->parent();
  /frameworks/support/v4/java/android/support/v4/view/
WindowCompat.java 17 package android.support.v4.view;
19 import android.view.View;
20 import android.view.Window;
44 * <p>This mode is especially useful with {@link View#SYSTEM_UI_FLAG_FULLSCREEN
45 * View.SYSTEM_UI_FLAG_FULLSCREEN}, which allows you to seamlessly hide the
50 * {@link View#fitSystemWindows(android.graphics.Rect) View.fitSystemWindows(Rect)}
  /frameworks/support/v4/jellybean-mr1/android/support/v4/view/
ViewCompatJellybeanMr1.java 17 package android.support.v4.view;
20 import android.view.View;
23 * Jellybean MR1 - specific View API access.
27 public static int getLabelFor(View view) {
28 return view.getLabelFor();
31 public static void setLabelFor(View view, int id) {
32 view.setLabelFor(id)
    [all...]
  /cts/tests/tests/holo/src/android/holo/cts/modifiers/
ViewPressedModifier.java 19 import android.view.View;
24 public View modifyView(View view) {
25 view.setPressed(true);
26 return view;
  /frameworks/base/core/tests/coretests/src/android/view/menu/
MenuLayoutLandscape.java 17 package android.view.menu;
MenuLayoutPortrait.java 17 package android.view.menu;
  /frameworks/base/graphics/tests/graphicstests/src/android/view/
MockView.java 17 package android.view;
20 * Mock View class for testing
23 public class MockView extends View{
  /frameworks/support/v4/jellybean/android/support/v4/view/
ViewCompatJB.java 17 package android.support.v4.view;
20 import android.view.View;
21 import android.view.ViewParent;
24 * Jellybean-specific View API access
28 public static boolean hasTransientState(View view) {
29 return view.hasTransientState();
32 public static void setHasTransientState(View view, boolean hasTransientState)
    [all...]
  /external/chromium-trace/trace-viewer/src/ui/
rect_view.css 6 rect-view {

Completed in 1374 milliseconds

1 2 3 4 5 6 7 8 91011>>