Searched defs:view (Results 226 - 250 of 738) sorted by relevance

1234567891011>>

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTabSpec.java5 import android.view.View;
41 * @return the view object set in a call to {@code TabSpec#setIndicator(View)}
63 public TabHost.TabSpec setIndicator(View view) { argument
64 this.indicatorView = view;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DAppWidgetManagerTest.java8 import android.view.View;
96 private void assertContains(String expectedText, View view) { argument
97 String actualText = shadowOf(view).innerText();
H A DVideoViewTest.java22 private VideoView view; field in class:VideoViewTest
25 view = new VideoView(null);
31 view.setOnPreparedListener(l);
32 ShadowVideoView shadowVideoView = Robolectric.shadowOf(view);
39 view.setOnErrorListener(l);
40 ShadowVideoView shadowVideoView = Robolectric.shadowOf(view);
47 view.setOnCompletionListener(l);
48 ShadowVideoView shadowVideoView = Robolectric.shadowOf(view);
54 view.setVideoPath("video.mp4");
55 ShadowVideoView shadowVideoView = Robolectric.shadowOf(view);
[all...]
/external/skia/samplecode/
H A DOverView.cpp74 bool is_overview(SkView* view) { argument
76 return view->doQuery(&isOverview);
97 SkView* view = (*fFactories[i])(); local
98 view->setVisibleP(true);
99 this->attachChildToBack(view)->unref();
100 view->setLoc(locX, locY);
101 view->setSize(kWidth, kHeight);
H A DSampleCamera.cpp70 Sk3DView view; local
71 view.rotateX(fRX);
72 view.rotateY(fRY);
73 view.applyToCanvas(canvas);
77 bool frontFace = view.dotWithNormal(0, 0, SK_Scalar1) < 0;
/external/skia/src/views/
H A DSkViewInflate.cpp29 SkView* view = this->createView(dom, child); local
30 if (view)
32 this->rInflate(dom, child, view);
33 parent->attachChildToFront(view)->unref();
53 void SkViewInflate::inflateView(SkView* view, const SkDOM& dom, const SkDOM::Node* node) argument
55 // called after all of view's children have been instantiated.
58 view->inflate(dom, node);
112 SkView* view; local
113 return fIDs.find(id, &view) ? view
123 addIDStr(SkTDArray<IDStr>* list, SkView* view, const char* str) argument
[all...]
/external/antlr/antlr-3.4/gunit/src/main/java/org/antlr/gunit/swingui/
H A DRunnerController.java62 private RunnerView view = new RunnerView(); field in class:RunnerController
94 return view;
98 view.initComponents();
103 view.tree.setModel(new RunnerTreeModel(suite));
104 view.tree.setCellRenderer(new RunnerTreeRenderer());
123 view.textArea.setText(result.toString());
H A DWorkSpaceController.java55 private final WorkSpaceView view = new WorkSpaceView(); field in class:WorkSpaceController
61 view.resultPane = (JPanel) runner.getView();
62 view.initComponents();
68 this.view.setTitle("gUnitEditor");
69 this.view.setVisible(true);
70 this.view.pack();
74 return view.paneEditor.getView();
78 this.view.tabEditors.addChangeListener(new TabChangeListener());
79 this.view.listRules.setListSelectionListener(new RuleListSelectionListener());
80 this.view
[all...]
/external/chromium_org/android_webview/java/src/org/chromium/android_webview/
H A DAwContentViewClient.java8 import android.view.KeyEvent;
9 import android.view.View;
25 public boolean onShowCustomView(View view) { argument
27 viewGroup.addView(view);
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DAwZoomTest.java10 import android.view.View;
11 import android.view.ViewConfiguration;
50 // view area and is explicitly made non user-scalable.
67 private int getVisibilityOnUiThread(final View view) throws Throwable { argument
71 return view.getVisibility();
/external/chromium_org/ash/frame/caption_buttons/
H A Dframe_size_button_unittest.cc96 // Returns the center point of |view| in screen coordinates.
97 gfx::Point CenterPointInScreen(views::View* view) { argument
98 return view->GetBoundsInScreen().CenterPoint();
/external/chromium_org/ash/keyboard_overlay/
H A Dkeyboard_overlay_delegate.cc74 views::Widget* KeyboardOverlayDelegate::Show(views::WebDialogView* view) { argument
79 params.delegate = view;
/external/chromium_org/ash/shell/
H A Dwidgets.cc109 views::View* view = child_at(i); local
110 gfx::Size preferred = view->GetPreferredSize();
111 view->SetBounds(left, top, preferred.width(), preferred.height());
/external/chromium_org/ash/system/chromeos/screen_security/
H A Dscreen_tray_item_unittest.cc17 #include "ui/views/view.h"
35 void ClickViewCenter(views::View* view) { argument
37 gfx::Point(view->width() / 2, view->height() / 2);
38 view->OnMousePressed(ui::MouseEvent(ui::ET_MOUSE_PRESSED,
88 // This tray item is owned by its parent system tray view and will
105 // This tray item is owned by its parent system tray view and will
204 // The default view should be created in a new bubble.
213 // The default view should not be visible because session is stopped.
/external/chromium_org/ash/wm/
H A Dwindow_modality_controller_unittest.cc271 views::test::CaptureTrackingView* view = new views::test::CaptureTrackingView; local
272 widget->client_view()->AddChildView(view);
274 view->SetBoundsRect(widget->client_view()->GetLocalBounds());
277 gfx::Point center(view->width() / 2, view->height() / 2);
278 views::View::ConvertPointToScreen(view, &center);
281 EXPECT_TRUE(view->got_press());
294 EXPECT_TRUE(view->got_capture_lost());
297 view->reset();
308 EXPECT_FALSE(view
[all...]
/external/chromium_org/athena/util/
H A Ddrag_handle.cc8 #include "ui/views/view.h"
16 // This view notifies its delegate of the touch scroll gestures performed on it.
137 views::View* view = new DragHandleView( local
139 return view;
/external/chromium_org/base/android/java/src/org/chromium/base/
H A DWindowCallbackWrapper.java8 import android.view.ActionMode;
9 import android.view.ActionMode.Callback;
10 import android.view.KeyEvent;
11 import android.view.Menu;
12 import android.view.MenuItem;
13 import android.view.MotionEvent;
14 import android.view.View;
15 import android.view.Window;
16 import android.view.WindowManager.LayoutParams;
17 import android.view
112 onPreparePanel(int featureId, View view, Menu menu) argument
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/appmenu/
H A DAppMenuDragHelper.java12 import android.view.GestureDetector;
13 import android.view.GestureDetector.SimpleOnGestureListener;
14 import android.view.MotionEvent;
15 import android.view.View;
267 private Rect getScreenVisibleRect(View view) { argument
268 view.getLocalVisibleRect(mScreenVisibleRect);
269 view.getLocationOnScreen(mScreenVisiblePoint);
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/dom_distiller/
H A DDomDistillerFeedbackReporter.java65 public void onYesPressed(DomDistillerFeedbackReportingView view) { argument
66 if (view != mReportingView) return;
72 public void onNoPressed(DomDistillerFeedbackReportingView view) { argument
73 if (view != mReportingView) return;
/external/chromium_org/chrome/browser/chromeos/extensions/
H A Dvirtual_keyboard_browsertest.cc99 content::RenderViewHost* view = content::RenderViewHost::From(widget); local
100 if (url == view->GetSiteInstance()->GetSiteURL()) {
102 content::WebContents::FromRenderViewHost(view);
105 return view;
174 // Get the virtual keyboard's render view host.
179 // Get the test page's render view host.
/external/chromium_org/chrome/browser/chromeos/first_run/
H A Dfirst_run_controller.cc86 FirstRunView* view = new FirstRunView(); local
87 view->Init(user_profile_);
88 shell_helper_->GetOverlayWidget()->SetContentsView(view);
89 actor_ = view->GetActor();
92 view->RequestFocus();
93 web_contents_for_tests_ = view->GetWebContents();
/external/chromium_org/chrome/browser/chromeos/ui/
H A Dkiosk_external_update_notification.cc16 #include "ui/views/view.h"
151 KioskExternalUpdateNotificationView* view = view_; local
153 view->CloseByOwner();
/external/chromium_org/chrome/browser/
H A Dplatform_util_win.cc215 gfx::NativeWindow GetTopLevel(gfx::NativeView view) { argument
216 return ::GetAncestor(view, GA_ROOT);
219 gfx::NativeView GetParent(gfx::NativeView view) { argument
220 return ::GetParent(view);
231 bool IsVisible(gfx::NativeView view) { argument
233 return ::IsWindowVisible(view) != 0;
/external/chromium_org/chrome/browser/thumbnails/
H A Dthumbnail_tab_helper.cc83 content::RenderWidgetHostView* view = render_widget_host->GetView(); local
84 if (!view)
86 if (!view->IsSurfaceAvailableForCopy())
89 gfx::Rect copy_rect = gfx::Rect(view->GetViewBounds().size());
101 ui::GetScaleFactorForNativeView(view->GetNativeView()));
/external/chromium_org/chrome/browser/ui/views/autofill/
H A Dtooltip_icon.cc21 gfx::Insets GetPreferredInsets(const views::View* view) { argument
22 gfx::Size pref_size = view->GetPreferredSize();
23 gfx::Rect local_bounds = view->GetLocalBounds();

Completed in 9366 milliseconds

1234567891011>>