Searched defs:view (Results 101 - 125 of 734) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/browser/ui/gtk/extensions/
H A Dextension_view_gtk.h31 virtual void OnExtensionSizeChanged(ExtensionViewGtk* view, argument
42 // Sets the container for this view.
62 // The background the view should have once it is initialized. This is set
63 // when the view has a custom background, but hasn't been initialized yet.
66 // This view's container.
/external/chromium_org/chrome/browser/ui/views/app_list/win/
H A Dactivation_tracker_win.cc20 app_list::AppListView* view,
22 : view_(view),
19 ActivationTrackerWin( app_list::AppListView* view, const base::Closure& on_should_dismiss) argument
/external/chromium_org/chrome/browser/ui/views/frame/
H A Dbrowser_window_property_manager_win.cc22 BrowserWindowPropertyManager::BrowserWindowPropertyManager(BrowserView* view) argument
23 : view_(view) {
82 BrowserView* view) {
84 view->browser()->host_desktop_type() == chrome::HOST_DESKTOP_TYPE_ASH) {
89 new BrowserWindowPropertyManager(view));
81 CreateBrowserWindowPropertyManager( BrowserView* view) argument
/external/chromium_org/chrome/browser/ui/views/sync/
H A Done_click_signin_bubble_view_unittest.cc31 // Create a widget to host the anchor view.
62 OneClickSigninBubbleView* view = local
64 EXPECT_TRUE(view != NULL);
65 view->message_loop_for_testing_ = base::MessageLoop::current();
66 return view;
107 // Widget to host the anchor view of the bubble. Destroys itself when closed.
146 OneClickSigninBubbleView* view = local
151 // view so that it can be quit once the bubble is hidden.
152 views::ButtonListener* listener = view;
156 listener->ButtonPressed(view
165 OneClickSigninBubbleView* view = ShowOneClickSigninBubble( local
185 OneClickSigninBubbleView* view = ShowOneClickSigninBubble( local
205 OneClickSigninBubbleView* view = ShowOneClickSigninBubble( local
220 OneClickSigninBubbleView* view = ShowOneClickSigninBubble( local
237 OneClickSigninBubbleView* view = ShowOneClickSigninBubble( local
252 OneClickSigninBubbleView* view = ShowOneClickSigninBubble( local
271 views::View* view = one_click_view; local
286 views::View* view = one_click_view; local
303 views::View* view = one_click_view; local
318 views::View* view = one_click_view; local
[all...]
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dtoolbar_view_browsertest.cc19 #include "ui/views/view.h"
51 const views::View* view = NULL; local
52 while (view != first_view) {
54 view = focus_manager->GetFocusedView();
55 ids.push_back(view->id());
56 if (view->id() == VIEW_ID_RELOAD_BUTTON)
58 if (view->id() == VIEW_ID_APP_MENU)
60 if (view->id() == VIEW_ID_OMNIBOX)
73 view = NULL;
74 while (view !
[all...]
/external/chromium_org/chrome/browser/ui/views/
H A Dweb_contents_modal_dialog_manager_views.cc217 gfx::NativeView view = platform_util::GetParent(widget->GetNativeView()); local
219 if (view && view->parent())
220 view->parent()->ClearProperty(aura::client::kAnimationsDisabledKey);
H A Dweb_dialog_view_browsertest.cc106 TestWebDialogView* view = local
112 view, web_contents->GetView()->GetTopLevelNativeWindow());
113 view->GetWidget()->Show();
116 view->set_should_quit_on_size_change(true);
118 gfx::Rect bounds = view->GetWidget()->GetClientAreaBoundsInScreen();
127 view->MoveContents(web_contents, set_bounds);
129 actual_bounds = view->GetWidget()->GetClientAreaBoundsInScreen();
133 view->web_contents()->GetRenderWidgetHostView()->GetViewBounds();
143 view->MoveContents(web_contents, set_bounds);
145 actual_bounds = view
[all...]
/external/chromium_org/chrome/common/extensions/docs/examples/apps/calculator/app/
H A Dcontroller.js39 function Controller(model, view) {
42 this.view = view;
43 this.view.onButton = function(button) {
46 this.view.onKey = function(key) {
85 this.view.clearDisplay({operand: '0'});
87 this.view.addResults({accumulator: accumulator, operand: accumulator});
90 this.view.addValues({operator: values.operator});
92 this.view.addValues({operator: operator, operand: operand});
101 var before = this.view
[all...]
/external/chromium_org/chrome/renderer/extensions/
H A Dapp_window_custom_bindings.cc31 content::RenderView* view, Dispatcher* dispatcher)
32 : content::RenderViewObserver(view), dispatcher_(dispatcher) {
89 content::RenderView* view = content::RenderView::FromRoutingID(view_id);
90 if (!view)
94 new DidCreateDocumentElementObserver(view, dispatcher());
104 blink::WebFrame* frame = view->GetWebView()->mainFrame();
107 new ExtensionHostMsg_ResumeRequests(view->GetRoutingID()));
30 DidCreateDocumentElementObserver( content::RenderView* view, Dispatcher* dispatcher) argument
H A Drender_view_observer_natives.cc22 content::RenderView* view,
24 : content::RenderViewObserver(view),
71 content::RenderView* view = content::RenderView::FromRoutingID(view_id); local
72 if (!view) {
73 LOG(WARNING) << "No render view found to register LoadWatcher.";
77 new LoadWatcher(context(), view, args[1].As<v8::Function>()); local
21 LoadWatcher(ChromeV8Context* context, content::RenderView* view, v8::Handle<v8::Function> cb) argument
/external/chromium_org/chrome/test/base/
H A Dinteractive_test_utils_gtk.cc54 GtkWidget* view = ViewIDUtil::GetWidget(GTK_WIDGET(window), vid); local
55 DCHECK(view);
56 MoveMouseToCenterAndPress(view,
/external/chromium_org/content/public/android/java/src/org/chromium/content/browser/
H A DViewPositionObserver.java7 import android.view.View;
8 import android.view.ViewTreeObserver;
13 * Used to register listeners that can be notified of changes to the position of a view.
17 // Absolute position of the container view relative to its parent window.
24 * @param view The view to observe.
26 public ViewPositionObserver(View view) { argument
27 mView = view;
40 * @return The current x position of the observed view.
50 * @return The current y position of the observed view
[all...]
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/
H A DContentViewPopupZoomerTest.java7 import android.view.View;
20 private static PopupZoomer findPopupZoomer(ContentView view) { argument
21 assert view != null;
22 for (int i = 0; i < view.getChildCount(); i++) {
23 View child = view.getChildAt(i);
32 public PopupShowingCriteria(ContentView view, boolean shouldBeShown) { argument
33 mView = view;
46 public PopupHasNonZeroDimensionsCriteria(ContentView view) { argument
47 mView = view;
86 final ContentView view
[all...]
H A DGestureDetectorResetTest.java40 ContentView view,
43 mView = view;
67 ContentView view, TestCallbackHelperContainer viewClient)
72 view, viewClient, "test", "not clicked")));
75 DOMUtils.clickNode(this, view, viewClient, "button");
80 view, viewClient, "test", "clicked")));
98 final ContentView view = getActivity().getActiveContentView();
100 new TestCallbackHelperContainer(view);
105 verifyClicksAreRegistered("on initial load", view, viewClient);
119 verifyClicksAreRegistered("after reload", view, viewClien
39 NodeContentsIsEqualToCriteria( ContentView view, TestCallbackHelperContainer viewClient, String nodeId, String expectedContents) argument
65 verifyClicksAreRegistered( String disambiguation, ContentView view, TestCallbackHelperContainer viewClient) argument
[all...]
/external/chromium_org/content/public/test/android/javatests/src/org/chromium/content/browser/test/util/
H A DJavaScriptUtils.java29 final ContentView view, TestCallbackHelperContainer viewClient,
32 view.getContentViewCore(),
79 public static void executeJavaScript(final ContentView view, final String code) { argument
83 view.evaluateJavaScript(code);
28 executeJavaScriptAndWaitForResult( final ContentView view, TestCallbackHelperContainer viewClient, final String code) argument
/external/chromium_org/content/shell/renderer/
H A Dshell_render_process_observer.cc59 void ShellRenderProcessObserver::SetMainWindow(RenderView* view) { argument
60 WebKitTestRunner* test_runner = WebKitTestRunner::Get(view);
61 test_interfaces_->setWebView(view->GetWebView(), test_runner->proxy());
/external/chromium_org/ppapi/examples/threading/
H A Dthreading.cc30 virtual void DidChangeView(const pp::View& view) { argument
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DFocusEvent.cpp56 FocusEvent::FocusEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail, EventTarget* relatedTarget) argument
57 : UIEvent(type, canBubble, cancelable, view, detail)
H A DTextEvent.cpp39 PassRefPtr<TextEvent> TextEvent::create(PassRefPtr<AbstractView> view, const String& data, TextEventInputType inputType) argument
41 return adoptRef(new TextEvent(view, data, inputType));
44 PassRefPtr<TextEvent> TextEvent::createForPlainTextPaste(PassRefPtr<AbstractView> view, const String& data, bool shouldSmartReplace) argument
46 return adoptRef(new TextEvent(view, data, 0, shouldSmartReplace, false));
49 PassRefPtr<TextEvent> TextEvent::createForFragmentPaste(PassRefPtr<AbstractView> view, PassRefPtr<DocumentFragment> data, bool shouldSmartReplace, bool shouldMatchStyle) argument
51 return adoptRef(new TextEvent(view, "", data, shouldSmartReplace, shouldMatchStyle));
54 PassRefPtr<TextEvent> TextEvent::createForDrop(PassRefPtr<AbstractView> view, const String& data) argument
56 return adoptRef(new TextEvent(view, data, TextEventInputDrop));
67 TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data, TextEventInputType inputType) argument
68 : UIEvent(EventTypeNames::textInput, true, true, view,
78 TextEvent(PassRefPtr<AbstractView> view, const String& data, PassRefPtr<DocumentFragment> pastingFragment, bool shouldSmartReplace, bool shouldMatchStyle) argument
94 initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderLayerClipper.cpp165 // clipRects are needed in view space.
168 RenderView* view = m_renderer->view(); local
169 ASSERT(view);
170 if (view && clipRects.fixed() && clipRectsContext.rootLayer->renderer() == view) {
171 offset -= view->frameView()->scrollOffsetForFixedPosition();
/external/chromium_org/third_party/WebKit/Tools/GardeningServer/scripts/
H A Dsvn-log.js102 view: 'rev',
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/postprocess/
H A Dpp_program.h58 struct pipe_sampler_view *view; member in struct:program
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/galahad/
H A Dglhd_objects.c116 struct pipe_sampler_view *view)
120 if (!view)
123 assert(view->texture == glhd_resource->resource);
127 glhd_view->base = *view;
132 glhd_view->sampler_view = view;
114 galahad_sampler_view_create(struct galahad_context *glhd_context, struct galahad_resource *glhd_resource, struct pipe_sampler_view *view) argument
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/identity/
H A Did_objects.c117 struct pipe_sampler_view *view)
121 if (!view)
124 assert(view->texture == id_resource->resource);
128 id_view->base = *view;
133 id_view->sampler_view = view;
115 identity_sampler_view_create(struct identity_context *id_context, struct identity_resource *id_resource, struct pipe_sampler_view *view) argument
/external/chromium_org/third_party/skia/src/views/
H A DSkViewPriv.cpp12 void SkView::Artist::draw(SkView* view, SkCanvas* canvas) argument
14 SkASSERT(view && canvas);
15 this->onDraw(view, canvas);

Completed in 757 milliseconds

1234567891011>>