HomeSort by relevance Sort by last modified time
    Searched refs:view (Results 1551 - 1575 of 3607) sorted by null

<<61626364656667686970>>

  /external/chromium_org/extensions/browser/api/
capture_web_contents_function.cc 63 RenderWidgetHostView* view = render_view_host->GetView(); local
64 if (!view) {
70 view->GetViewBounds().size(),
  /external/chromium_org/mojo/examples/wm_flow/app/
app.cc 17 #include "mojo/services/public/cpp/view_manager/view.h"
48 // embed without a view context.
77 mojo::View* root,
83 mojo::View* embed = mojo::View::Create(view_manager);
103 virtual void OnViewInputEvent(mojo::View* view,
110 virtual void OnViewDestroyed(mojo::View* view) MOJO_OVERRIDE {
112 view->RemoveObserver(this)
    [all...]
  /external/chromium_org/mojo/services/html_viewer/
html_document_view.h 28 class View;
31 // A view for a single HTML document.
91 View* root,
97 virtual void OnViewBoundsChanged(View* view,
100 virtual void OnViewDestroyed(View* view) OVERRIDE;
101 virtual void OnViewInputEvent(View* view, const EventPtr& event) OVERRIDE;
110 View* root_
    [all...]
  /external/chromium_org/ppapi/tests/
test_flash_fullscreen.cc 137 void TestFlashFullscreen::DidChangeView(const pp::View& view) {
138 pp::Rect position = view.GetRect();
139 pp::Rect clip = view.GetClipRect();
  /external/chromium_org/third_party/WebKit/Source/core/css/
MediaQueryEvaluatorTest.cpp 128 RefPtr<FrameView> view = pageHolder->frame().view(); local
134 pageHolder->frame().setView(view);
  /external/chromium_org/third_party/WebKit/Source/core/svg/graphics/
SVGImage.cpp 69 // Break both the loader and view references to the frame
139 FrameView* view = frameView();
140 view->resize(this->containerSize());
284 FrameView* view = frameView(); member in namespace:blink
285 view->resize(containerSize());
288 view->scrollToFragment(m_url);
290 view->updateLayoutAndStyleForPainting();
291 view->paint(context, enclosingIntRect(srcRect));
292 ASSERT(!view->needsLayout());
321 return toLocalFrame(m_page->mainFrame())->view();
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/xml/
XSLTProcessor.cpp 82 if (FrameView* view = frame->view())
83 view->clear();
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
canvasProfiler.css 31 .canvas-profile-view,
74 .canvas-profile-view .spinner-icon {
94 .canvas-profile-view button.right-sidebar-show-hide-button.canvas-sidebar-show-hide-button.toggled-hide {
180 .canvas-replay-state-view .data-grid {
184 .canvas-replay-state-view .data-grid .data-container tr:nth-child(odd).canvas-grid-node-highlighted {
189 .canvas-replay-state-view .data-grid .data-container tr:nth-child(even).canvas-grid-node-highlighted {
timelinePanel.css 89 .timeline-view {
94 .timeline-view-stack {
416 #memory-graphs-container .split-view-contents-first {
632 .timeline-details-view {
637 .timeline-details-view-body {
644 .timeline-details-view-block {
648 .timeline-details-view-row {
653 .timeline-details-view-row-title {
658 .timeline-details-view-row-value {
662 .timeline-details-view-row-details
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
Drawer.js 51 new WebInspector.ExtensibleTabbedPaneController(this._tabbedPane, "drawer-view");
95 * @param {!WebInspector.View} view
97 showCloseableView: function(id, title, view)
100 this._tabbedPane.appendTab(id, title, view, undefined, false, true);
102 this._tabbedPane.changeTabView(id, view);
151 * @return {?WebInspector.View} view
209 * @return {!WebInspector.View}
227 * @return {!WebInspector.View}
    [all...]
  /external/chromium_org/tools/android/memconsumer/java/src/org/chromium/memconsumer/
MemConsumer.java 14 import android.view.Gravity;
15 import android.view.KeyEvent;
16 import android.view.View;
56 View child = mMemoryPicker.getChildAt(i);
  /external/chromium_org/ui/android/java/src/org/chromium/ui/gfx/
DeviceDisplayInfo.java 12 import android.view.Display;
13 import android.view.Surface;
14 import android.view.WindowManager;
160 * See http://developer.android.com/reference/android/view/Display.html#getRotation()
  /external/chromium_org/ui/app_list/demo/
app_list_demo_views.cc 44 virtual views::View* CreateStartPageWebView(const gfx::Size& size) OVERRIDE;
94 views::View* DemoAppListViewDelegate::CreateStartPageWebView(
113 app_list::AppListView* view = delegate->InitView(window_context); local
114 view->GetWidget()->Show();
115 view->GetWidget()->Activate();
  /external/chromium_org/ui/app_list/views/
search_box_view_unittest.cc 19 class KeyPressCounterView : public views::View {
31 // Overridden from views::View:
67 SearchBoxView* view() { return view_; } function in class:app_list::test::SearchBoxViewTest
135 view()->ClearSearch();
158 view()->ClearSearch();
  /external/chromium_org/ui/base/
layout.cc 123 float GetScaleFactorForNativeView(gfx::NativeView view) {
124 gfx::Screen* screen = gfx::Screen::GetScreenFor(view);
126 gfx::Display display = screen->GetDisplayNearestWindow(view);
  /external/chromium_org/ui/views/examples/
scroll_view_example.cc 13 #include "ui/views/view.h"
22 class ScrollViewExample::ScrollableView : public View {
39 View* view = child_at(index); local
40 gfx::Size size = view->GetPreferredSize();
41 view->SetBounds(0, y, size.width(), size.height());
54 ScrollViewExample::ScrollViewExample() : ExampleBase("Scroll View") {
60 void ScrollViewExample::CreateExampleView(View* container) {
75 // Add scroll view.
  /external/chromium_org/ui/views/ime/
input_method_bridge.h 22 class View;
43 virtual void OnTextInputTypeChanged(View* view) OVERRIDE;
44 virtual void OnCaretBoundsChanged(View* view) OVERRIDE;
45 virtual void CancelComposition(View* view) OVERRIDE;
86 virtual void OnWillChangeFocus(View* focused_before, View* focused) OVERRIDE;
87 virtual void OnDidChangeFocus(View* focused_before, View* focused) OVERRIDE
    [all...]
  /external/droiddriver/src/com/google/android/droiddriver/uiautomation/
UiAutomationDriver.java 23 import android.view.accessibility.AccessibilityEvent;
24 import android.view.accessibility.AccessibilityManager;
25 import android.view.accessibility.AccessibilityNodeInfo;
  /external/droiddriver/src/com/google/android/droiddriver/util/
Events.java 20 import android.view.InputDevice;
21 import android.view.KeyEvent;
22 import android.view.MotionEvent;
  /external/chromium_org/ui/views/layout/
grid_layout.cc 13 #include "ui/views/view.h"
309 // Identifies the location in the grid of a particular view, along with
312 ViewState(ColumnSet* column_set, View* view, int start_col, int start_row,
316 view(view),
330 DCHECK(view && start_col >= 0 && start_row >= 0 && col_span > 0 &&
336 View* const view; member in struct:views::ViewState
344 // If true, the pref_width/pref_height were explicitly set and the view'
810 View* view = (*i)->view; local
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
ProgressBarTest.java 22 import android.view.LayoutInflater;
33 import android.view.View;
34 import android.view.animation.AccelerateDecelerateInterpolator;
35 import android.view.animation.Interpolator;
36 import android.view.animation.LinearInterpolator;
235 int visibility = View.VISIBLE;
239 visibility = View.GONE;
245 int mask = 0x0000000C; // View.VISIBILITY_MASK
319 // Do not test, it's controlled by View. Implementation detail
343 ProgressBar view = new ProgressBar(mContext); local
378 ProgressBar view = new ProgressBar(mContext); local
    [all...]
  /external/chromium_org/ash/system/chromeos/network/
network_state_list_detailed_view.cc 72 views::View* CreateInfoBubbleLine(const base::string16& text_label,
74 views::View* view = new views::View; local
75 view->SetLayoutManager(
77 view->AddChildView(CreateInfoBubbleLabel(text_label));
78 view->AddChildView(CreateInfoBubbleLabel(base::UTF8ToUTF16(": ")));
79 view->AddChildView(CreateInfoBubbleLabel(base::UTF8ToUTF16(text_string)));
80 return view;
92 InfoBubble(views::View* anchor
598 HoverHighlightView* view = new HoverHighlightView(this); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
Page.cpp 254 if (FrameView* view = toLocalFrame(frame)->view()) {
255 view->setNeedsLayout();
256 view->scheduleRelayout();
342 FrameView* view = deprecatedLocalMainFrame()->view();
348 if (view && !settings().pinchVirtualViewportEnabled())
349 view->setVisibleContentScaleFactor(scale);
356 if (view)
357 view->viewportConstrainedVisibleContentSizeChanged(true, true)
    [all...]
  /external/chromium_org/chrome/browser/ui/views/translate/
translate_bubble_view.cc 74 // A child view could refer to a model which is owned by this class when
75 // the child view is destructed. For example, |source_language_combobx_model_|
83 views::View* anchor_view,
124 TranslateBubbleView* view = new TranslateBubbleView(anchor_view, local
129 views::BubbleDelegateView::CreateBubble(view)->Show();
131 views::BubbleDelegateView::CreateBubble(view)->ShowInactive();
233 const views::View* child = child_at(i);
257 views::View* anchor_view,
292 views::View* TranslateBubbleView::GetCurrentView() const {
422 views::View* view = child_at(i) local
450 views::View* view = new views::View(); local
501 views::View* view = new views::View(); local
542 views::View* view = new views::View(); local
587 views::View* view = new views::View(); local
662 views::View* view = new views::View(); local
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
scrollbar.js 77 * @param {Element} view Scrollable element.
79 ScrollBar.prototype.attachToView = function(view) {
80 this.view_ = view;
166 // Ensures the scrollbar is in the view.
237 * Returns the viewport height of the view.
238 * @return {number} The viewport height of the view in px.
246 * Returns the total height of the view.
247 * @return {number} The total height of the view in px.
279 * GReturns the viewport height of the view, considering the preview panel.
281 * @return {number} The viewport height of the view in px
    [all...]

Completed in 542 milliseconds

<<61626364656667686970>>