Searched defs:view (Results 1 - 25 of 738) sorted by path

1234567891011>>

/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 DTestCaseEditController.java45 private JPanel view = new JPanel(); field in class:TestCaseEditController
198 view.setLayout(new BorderLayout());
199 view.setBorder(BorderFactory.createEmptyBorder());
200 view.setOpaque(false);
201 view.add(toolbar, BorderLayout.WEST);
202 view.add(scroll, BorderLayout.CENTER);
203 view.add(paneDetail, BorderLayout.EAST);
357 return view;
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/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...
/external/chromium_org/android_webview/browser/
H A Dgl_view_renderer_manager.cc33 GLViewRendererManager::Key GLViewRendererManager::PushBack(RendererType view) { argument
36 std::find(mru_list_.begin(), mru_list_.end(), view));
37 mru_list_.push_back(view);
/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);
H A DAwContentsClient.java13 import android.view.KeyEvent;
14 import android.view.View;
190 public void onShowCustomView(View view, argument
196 public void onShowCustomView(View view, WebChromeClient.CustomViewCallback callback) { argument
197 onShowCustomView(view, ActivityInfo.SCREEN_ORIENTATION_UNSPECIFIED, callback);
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/
H A DAndroidScrollIntegrationTest.java9 import android.view.View;
173 private void scrollToOnMainSync(final View view, final int xPix, final int yPix) { argument
177 view.scrollTo(xPix, yPix);
545 // results in the view also reporting as being scrolled to the bottom.
H A DAwContentsClientGetVideoLoadingProgressViewTest.java8 import android.view.View;
22 * This test takes advantage of onViewAttachedToWindow, and assume our progress view
34 public void onViewAttachedToWindow(View view) { argument
36 view.removeOnAttachStateChangeListener(this);
56 View view = new View(getInstrumentation().getTargetContext());
57 view.addOnAttachStateChangeListener(
59 return view;
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();
H A DFullScreenVideoTestAwContentsClient.java8 import android.view.Gravity;
9 import android.view.View;
10 import android.view.ViewGroup;
11 import android.view.WindowManager;
39 public void onShowCustomView(View view, WebChromeClient.CustomViewCallback callback) { argument
40 mCustomView = view;
46 mActivity.getWindow().addContentView(view,
/external/chromium_org/android_webview/javatests/src/org/chromium/android_webview/test/util/
H A DAwTestTouchUtils.java8 import android.view.MotionEvent;
9 import android.view.View;
14 * A touch utility class that injects the events directly into the view.
17 * This is similar to TestTouchUtils but injects the events directly into the view class rather
22 private static void sendAction(View view, int action, long downTime, float x, float y) { argument
25 view.onTouchEvent(event);
28 private static long dragStart(View view, float x, float y) { argument
30 sendAction(view, MotionEvent.ACTION_DOWN, downTime, x, y);
34 private static void dragTo(View view, float fromX, float toX, float fromY, argument
43 sendAction(view, MotionEven
47 dragEnd(View view, float x, float y, long downTime) argument
64 dragCompleteView(final View view, final int fromX, final int toX, final int fromY, final int toY, final int stepCount, final CountDownLatch completionLatch) argument
87 simulateTouchCenterOfView(final View view) argument
[all...]
/external/chromium_org/android_webview/renderer/
H A Dprint_web_view_helper.cc395 view_ = frame->view();
414 blink::WebView* FrameReference::view() { function in class:printing::__anon1835::FrameReference
501 // the size of the view temporarily to support full page printing..
623 blink::WebView* web_view = frame_.view();
635 blink::WebView* web_view = frame_.view();
718 blink::WebView* web_view = frame_.GetFrame()->view();
728 blink::WebView* web_view = frame->view();
/external/chromium_org/android_webview/test/shell/src/draw_gl/
H A Ddraw_gl.cc22 jlong view,
58 draw_func(view, &draw_info, 0);
18 Java_org_chromium_android_1webview_shell_DrawGL_nativeDrawGL( JNIEnv*, jclass, jlong draw_gl, jlong view, jint width, jint height, jint scroll_x, jint scroll_y, jint mode) argument
/external/chromium_org/android_webview/test/shell/src/org/chromium/android_webview/test/
H A DAwTestRunnerActivity.java9 import android.view.View;
10 import android.view.ViewGroup.LayoutParams;
38 * Adds a view to the main linear layout.
40 public void addView(View view) { argument
41 view.setLayoutParams(new LinearLayout.LayoutParams(
43 mLinearLayout.addView(view);
H A DNullContentsClient.java13 import android.view.KeyEvent;
14 import android.view.View;
204 public void onShowCustomView(View view, WebChromeClient.CustomViewCallback callback) { argument
/external/chromium_org/ash/desktop_background/
H A Ddesktop_background_view.cc38 // A view that controls the child view's layer so that the layer
46 explicit LayerControlView(views::View* view) { argument
47 AddChildView(view);
48 view->SetPaintToLayer(true);
/external/chromium_org/ash/drag_drop/
H A Ddrag_drop_controller_unittest.cc30 #include "ui/views/view.h"
41 // A simple view that makes sure RunShellDrag is invoked on mouse drag.
260 void AddViewToWidgetAndResize(views::Widget* widget, views::View* view) { argument
267 contents_view->AddChildView(view);
268 view->SetBounds(contents_view->width(), 0, 100, 100);
270 contents_view_bounds.Union(view->bounds());
/external/chromium_org/ash/first_run/
H A Dfirst_run_helper_impl.cc15 #include "ui/views/view.h"
73 app_list::AppListView* view = Shell::GetInstance()->GetAppListView(); local
74 return view->GetBoundsInScreen();
/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/frame/
H A Dframe_border_hit_test_controller.cc33 views::NonClientFrameView* view,
36 gfx::Rect expanded_bounds = view->bounds();
48 views::Widget* frame = view->GetWidget();
55 int frame_component = view->GetHTComponentForFrame(point_in_widget,
32 NonClientHitTest( views::NonClientFrameView* view, FrameCaptionButtonContainerView* caption_button_container, const gfx::Point& point_in_widget) argument
/external/chromium_org/ash/ime/
H A Dcandidate_view.cc100 // child view, hence it's deleted when |this| is deleted.
210 CandidateView* view = local
212 if (view != this)
213 view->SetHighlighted(false);
230 // Moves the drag target to the sibling view.
/external/chromium_org/ash/keyboard_overlay/
H A Dkeyboard_overlay_delegate.cc74 views::Widget* KeyboardOverlayDelegate::Show(views::WebDialogView* view) { argument
79 params.delegate = view;
H A Dkeyboard_overlay_view.cc79 KeyboardOverlayView* view = local
81 delegate->Show(view);
83 Shell::GetInstance()->overlay_filter()->Activate(view);
/external/chromium_org/ash/shelf/
H A Dshelf_tooltip_manager.cc203 void ShelfTooltipManager::OnBubbleClosed(views::BubbleDelegateView* view) { argument
204 if (view == view_) {

Completed in 342 milliseconds

1234567891011>>