HomeSort by relevance Sort by last modified time
    Searched refs:view (Results 651 - 675 of 7837) sorted by null

<<21222324252627282930>>

  /development/samples/browseable/SlidingTabsColors/src/com.example.android.slidingtabscolors/
ContentFragment.java 21 import android.view.LayoutInflater;
22 import android.view.View;
23 import android.view.ViewGroup;
28 * {@link android.support.v4.view.ViewPager}.
54 public View onCreateView(LayoutInflater inflater, ViewGroup container,
60 public void onViewCreated(View view, Bundle savedInstanceState) {
61 super.onViewCreated(view, savedInstanceState);
66 TextView title = (TextView) view.findViewById(R.id.item_title)
    [all...]
  /development/samples/training/basic/ActivityLifecycle/src/com/example/android/lifecycle/
DialogActivity.java 21 import android.view.View;
22 import android.view.Window;
33 * Callback method defined by the View
36 public void finishDialog(View v) {
  /development/tutorials/NotepadCodeLab/Notepadv1/src/com/android/demo/notepad1/
Notepadv1.java 21 import android.view.Menu;
22 import android.view.MenuItem;
  /external/chromium_org/ash/system/tray/
tray_popup_label_button_border.cc 65 void TrayPopupLabelButtonBorder::Paint(const views::View& view,
68 static_cast<const views::LabelButton*>(&view);
77 const views::View* first_visible_child = NULL;
78 for (int i = 0; i < view.parent()->child_count(); ++i) {
79 const views::View* child = view.parent()->child_at(i);
85 if (first_visible_child == &view)
90 canvas->Translate(gfx::Vector2d(view.width(), 0));
92 LabelButtonBorder::Paint(view, canvas)
    [all...]
  /external/chromium_org/chrome/browser/chromeos/login/ui/
lock_window.h 11 class View;
32 // Attempt to grab inputs on the webview, the actual view displaying the lock
44 // Sets the view which should be initially focused.
45 void set_initially_focused_view(views::View* view) {
46 initially_focused_view_ = view;
57 // The view which should be initially focused.
58 views::View* initially_focused_view_;
  /external/chromium_org/chrome/browser/ui/views/autofill/
password_generation_popup_view_tester_views.cc 12 PasswordGenerationPopupViewTester::For(PasswordGenerationPopupView* view) {
15 static_cast<PasswordGenerationPopupViewViews*>(view)));
31 static_cast<views::View*>(view_)->OnMouseMoved(mouse_down);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderingTestHelper.h 22 document().view()->updateLayoutAndStyleIfNeededRecursive();
30 document().view()->updateLayoutAndStyleIfNeededRecursive();
  /external/chromium_org/ui/base/
view_prop.cc 11 // Maints the actual view, key and data.
14 // Returns the Data* for the view/key pair. If |create| is false and |Get|
15 // has not been invoked for the view/key pair, NULL is returned.
16 static void Get(gfx::AcceleratedWidget view,
22 scoped_refptr<Data> new_data(new Data(view, key));
54 Data(gfx::AcceleratedWidget view, const char* key)
55 : view_(view),
80 ViewProp::ViewProp(gfx::AcceleratedWidget view, const char* key, void* data) {
81 Data::Get(view, key, true, &data_);
92 void* ViewProp::GetValue(gfx::AcceleratedWidget view, const char* key)
    [all...]
view_prop.h 19 // ViewProp maintains a key/value pair for a particular view. ViewProp is
22 // value for a particular view/key pair comes from the last ViewProp created.
25 // Associates data with a view/key pair. If a ViewProp has already been
30 ViewProp(gfx::AcceleratedWidget view, const char* key, void* data);
33 // Returns the value associated with the view/key pair, or NULL if there is
35 static void* GetValue(gfx::AcceleratedWidget view, const char* key);
  /external/chromium_org/ui/chromeos/network/
network_list_delegate.h 17 class View;
28 // Creates and returns a View with the information in |info|.
29 virtual views::View* CreateViewForNetwork(const NetworkInfo& info) = 0;
31 // Returns true if |view| is currently under the cursor. Note that |view| is
32 // guaranteed to be a View returned from |CreateViewForNetwork()|.
33 virtual bool IsViewHovered(views::View* view) = 0;
38 // Updates |view| with the information in |info|. Note that |view| i
    [all...]
  /external/chromium_org/ui/views/layout/
layout_manager.h 16 class View;
23 // the children of a View according to implementation-specific heuristics.
32 virtual void Installed(View* host);
36 virtual void Uninstalled(View* host);
41 virtual void Layout(View* host) = 0;
45 virtual gfx::Size GetPreferredSize(const View* host) const = 0;
49 virtual int GetPreferredHeightForWidth(const View* host, int width) const;
51 // Notification that a view has been added.
52 virtual void ViewAdded(View* host, View* view)
    [all...]
  /external/qemu/distrib/sdl-1.2.15/src/video/Xext/extensions/
xme.h 34 extern int XiGMiscQueryResolutions(Display *dpy, int screen, int view,
37 extern void XiGMiscChangeResolution(Display *dpy, int screen, int view,
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
GalleryTest.java 3 import android.view.KeyEvent;
4 import android.view.View;
34 assertThat((Gallery) listener.view, sameInstance(gallery));
42 assertThat((Gallery)listener.view, sameInstance(gallery));
46 private static class TestOnKeyListener implements View.OnKeyListener {
47 View view; field in class:GalleryTest.TestOnKeyListener
52 public boolean onKey(View view, int keyCode, KeyEvent event)
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
TestAnimationListener.java 3 import android.view.animation.Animation;
4 import android.view.animation.Animation.AnimationListener;
  /frameworks/base/core/java/android/accounts/
CantAddAccountActivity.java 21 import android.view.View;
38 public void onCancelButtonClicked(View view) {
  /frameworks/base/core/java/android/view/
ContextMenu.java 17 package android.view;
76 * Sets the header of the context menu to the {@link View} given in
77 * <var>view</var>. This replaces the header title and icon (and those
80 * @param view The {@link View} used for the header.
83 public ContextMenu setHeaderView(View view);
SubMenu.java 17 package android.view;
70 * Sets the header of the submenu to the {@link View} given in
71 * <var>view</var>. This replaces the header title and icon (and those
74 * @param view The {@link View} used for the header.
77 public SubMenu setHeaderView(View view);
  /frameworks/base/core/java/android/view/accessibility/
AccessibilityNodeProvider.java 17 package android.view.accessibility;
21 import android.view.View;
27 * virtual view hierarchy rooted at a given view for accessibility purposes. A virtual
28 * view hierarchy is a tree of imaginary Views that is reported as a part of the view
30 * Since the virtual View tree does not exist this class is responsible for
35 * The main use case of these APIs is to enable a custom view that draws complex content,
40 * A typical use case is to override {@link View#getAccessibilityNodeProvider()} of th
    [all...]
  /frameworks/base/core/java/com/android/internal/textservice/
ITextServicesSessionListener.aidl 21 import android.view.textservice.SpellCheckerInfo;
  /frameworks/base/core/tests/coretests/src/android/view/
ZeroSizedTest.java 17 package android.view;
19 import android.view.ZeroSized;
24 import android.view.View;
29 * a View with a 0-sized dimension (width or height) will always have a null
33 private View mWithDimension;
34 private View mWithNoWdith;
35 private View mWithNoHeight;
36 private View mWithNoDimension;
89 private Bitmap createCacheForView(final View view)
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/listview/
ListItemFocusablesFarApart.java 19 import android.view.View;
20 import android.view.ViewGroup;
40 protected View createView(int position, ViewGroup parent, int desiredHeight) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/
RecentsComponent.java 19 import android.view.Display;
20 import android.view.View;
27 void showRecents(boolean triggeredFromAltTab, View statusBarView);
29 void toggleRecents(Display display, int layoutDirection, View statusBarView);
  /frameworks/support/v4/eclair/android/support/v4/view/
MotionEventCompatEclair.java 17 package android.support.v4.view;
19 import android.view.MotionEvent;
  /frameworks/support/v4/ics-mr1/android/support/v4/view/accessibility/
AccessibilityRecordCompatIcsMr1.java 17 package android.support.v4.view.accessibility;
19 import android.view.accessibility.AccessibilityRecord;
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/
ViewPropertyAnimatorCompatSet.java 17 package android.support.v7.internal.view;
19 import android.support.v4.view.ViewPropertyAnimatorCompat;
20 import android.support.v4.view.ViewPropertyAnimatorListener;
21 import android.support.v4.view.ViewPropertyAnimatorListenerAdapter;
22 import android.view.View;
23 import android.view.animation.Interpolator;
29 * {@link android.support.v4.view.ViewPropertyAnimatorCompat}.
113 public void onAnimationStart(View view) {
    [all...]

Completed in 1724 milliseconds

<<21222324252627282930>>