HomeSort by relevance Sort by last modified time
    Searched refs:view (Results 426 - 450 of 6177) sorted by null

<<11121314151617181920>>

  /cts/tests/tests/holo/src/android/holo/cts/modifiers/
CalendarViewModifier.java 20 import android.view.View;
53 public View modifyView(View view) {
54 ((CalendarView) view).setDate(mJanuary ? JANUARY_DATE : FEBRUARY_DATE);
55 return view;
ProgressDialogBuilder.java 24 import android.view.View;
35 public Dialog buildDialog(View view) {
36 Context context = view.getContext();
37 ProgressDialog progressDialog = new ProgressDialog(view.getContext());
SearchViewModifier.java 22 import android.view.View;
37 public View modifyView(View view) {
38 SearchView searchView = (SearchView) view;
39 Context context = view.getContext();
51 throw new IllegalArgumentException("Bad search view type: " + mSearchViewType);
TabHostModifier.java 21 import android.view.View;
27 public View modifyView(View view) {
28 TabHost tabHost = (TabHost) view;
45 return view;
  /development/cmds/monkey/src/com/android/commands/monkey/
MonkeyTouchEvent.java 19 import android.view.InputDevice;
MonkeyTrackballEvent.java 19 import android.view.InputDevice;
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Animation1.java 17 package com.example.android.apis.view;
25 import android.view.View;
26 import android.view.animation.Animation;
27 import android.view.animation.AnimationUtils;
29 public class Animation1 extends Activity implements View.OnClickListener {
36 View loginButton = findViewById(R.id.login);
40 public void onClick(View v) {
  /development/samples/Support7Demos/src/com/example/android/supportv7/app/
ActionBarMechanics.java 19 import android.support.v4.view.MenuItemCompat;
20 import android.support.v4.view.WindowCompat;
22 import android.view.Menu;
23 import android.view.MenuItem;
37 // before setting a content view. Normally this is set automatically
  /external/chromium/chrome/browser/ui/touch/frame/
keyboard_container_view.cc 14 // Make the provided view and all of its descendents unfocusable.
15 void MakeViewHierarchyUnfocusable(views::View* view) {
16 view->SetFocusable(false);
17 for (int i = 0; i < view->child_count(); ++i) {
18 MakeViewHierarchyUnfocusable(view->GetChildViewAt(i));
42 // TODO(bryeung): include a border between the keyboard and the client view
47 View* parent,
48 View* child) {
  /external/chromium_org/android_webview/browser/
gl_view_renderer_manager.cc 17 BrowserViewRenderer* view) {
20 std::find(mru_list_.begin(), mru_list_.end(), view));
21 mru_list_.push_front(view);
24 DCHECK(*key == view);
  /external/chromium_org/chrome/browser/ui/cocoa/
view_resizer.h 13 // to their parents. When a controller needs to change a view's height, rather
18 - (void)resizeView:(NSView*)view newHeight:(CGFloat)height;
  /external/chromium_org/chrome/browser/ui/
confirm_bubble.h 21 void ShowConfirmBubble(gfx::NativeView view,
  /external/chromium_org/chrome/browser/ui/gtk/bookmarks/
bookmark_drag_drop_gtk.cc 13 gfx::NativeView view) {
  /external/chromium_org/chrome/browser/ui/views/omnibox/
omnibox_views.cc 16 OmniboxViewViews* GetOmniboxViewViews(OmniboxView* view) {
18 static_cast<OmniboxViewViews*>(view) : NULL;
21 OmniboxViewWin* GetOmniboxViewWin(OmniboxView* view) {
24 NULL : static_cast<OmniboxViewWin*>(view);
  /external/chromium_org/content/browser/renderer_host/
dip_util.h 20 // Returns scale factor of the display nearest to |view|.
23 const RenderWidgetHostView* view);
28 const RenderWidgetHostView* view, const gfx::Point& point_in_pixel);
30 const RenderWidgetHostView* view, const gfx::Size& size_in_dip);
32 const RenderWidgetHostView* view, const gfx::Rect& rect_in_dip);
  /external/chromium_org/third_party/WebKit/Source/core/css/
StyleMedia.cpp 45 FrameView* view = m_frame ? m_frame->view() : 0; local
46 if (view)
47 return view->mediaType();
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CompositionEvent.cpp 43 CompositionEvent::CompositionEvent(const AtomicString& type, PassRefPtr<AbstractView> view, const String& data)
44 : UIEvent(type, true, true, view, 0)
61 void CompositionEvent::initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data)
66 initUIEvent(type, canBubble, cancelable, view, 0);
  /external/chromium_org/third_party/WebKit/Source/web/
WebWorkerBase.h 53 virtual WebView* view() const = 0;
  /external/chromium_org/third_party/WebKit/public/web/
WebDevToolsFrontend.h 46 WEBKIT_EXPORT static WebDevToolsFrontend* create(WebView* view,
  /external/chromium_org/ui/base/cocoa/
nsgraphics_context_additions.h 12 // When a view is not layer backed the pattern phase is relative to the origin
13 // of the window's content view. With a layer backed view the pattern phase is
14 // relative to the origin of the view.
16 // For layer backed view this method offsets the pattern phase to match the
19 forView:(NSView*)view;
  /external/chromium_org/ui/gfx/
canvas_paint.h 18 // Creates a canvas that paints to |view| when it is destroyed. The canvas is
19 // sized to the client area of |view|.
20 UI_EXPORT static CanvasPaint* CreateCanvasPaint(gfx::NativeView view);
screen_type_delegate.h 26 // Determines which ScreenType a given |view| belongs to.
27 virtual ScreenType GetScreenTypeForNativeView(NativeView view) = 0;
  /external/chromium_org/ui/views/window/
frame_background.cc 12 #include "ui/views/view.h"
58 void FrameBackground::PaintRestored(gfx::Canvas* canvas, View* view) const {
61 PaintFrameColor(canvas, view);
65 0, 0, view->width(), theme_image_->height());
75 view->height() - bottom_left_corner_->height());
83 view->width() - top_left_corner_->width() - top_right_corner_->width(),
87 view->height() - bottom_right_corner_->height());
91 view->width() - top_right_corner_->width(), 0,
97 view->height() - top_right_height - bottom_right_corner_->height()
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
TouchFilter.java 20 import android.view.MotionEvent;
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/util/
TestOnClickListener.java 3 import android.view.View;
5 public class TestOnClickListener implements View.OnClickListener {
8 @Override public void onClick(View v) {

Completed in 362 milliseconds

<<11121314151617181920>>