Searched defs:view (Results 26 - 50 of 369) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/android/jme3test/android/
H A DDemoLaunchAdapter.java4 import android.view.LayoutInflater;
5 import android.view.View;
6 import android.view.View.OnClickListener;
7 import android.view.ViewGroup;
13 * The view adapter which gets a list of LaunchEntries and displaqs them
58 public void onClick(View view) { argument
59 DemoLaunchEntry entry = (DemoLaunchEntry) view.getTag();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowExpandableListView.java3 import android.view.View;
17 public boolean performItemClick(View view, int position, long id) { argument
H A DShadowInputMethodManager.java5 import android.view.View;
6 import android.view.inputmethod.InputMethodManager;
17 public boolean showSoftInput(View view, int flags) { argument
18 return showSoftInput(view, flags, null);
22 public boolean showSoftInput(View view, int flags, ResultReceiver resultReceiver) { argument
H A DShadowListActivity.java4 import android.view.View;
5 import android.view.ViewGroup;
29 throw new RuntimeException("No ListView found under content view");
35 public void setListView(ListView view) { argument
36 listView = view;
46 public void onItemClick(AdapterView<?> parent, View view, int position, long id) {
51 handler.invoke(realActivity, parent, view, position, id);
H A DShadowPasswordTransformationMethod.java6 import android.view.View;
16 public CharSequence getTransformation(CharSequence charSequence, View view) { argument
32 public void onFocusChanged(View view, CharSequence charSequence, boolean b, int i, Rect rect) { } argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DGalleryTest.java3 import android.view.KeyEvent;
4 import android.view.View;
34 assertThat((Gallery) listener.view, sameInstance(gallery));
42 assertThat((Gallery)listener.view, sameInstance(gallery));
47 View view; field in class:GalleryTest.TestOnKeyListener
52 public boolean onKey(View view, int keyCode, KeyEvent event) { argument
53 this.view = view;
H A DPagerAdapterTest.java4 import android.support.v4.view.PagerAdapter;
5 import android.view.View;
32 public boolean isViewFromObject(View view, Object object) { argument
/external/robolectric/src/test/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestMenuTest.java1 package com.xtremelabs.robolectric.tester.android.view;
12 import com.xtremelabs.robolectric.tester.android.view.TestMenuItem;
/external/webkit/Source/WebCore/dom/
H A DCompositionEvent.cpp38 CompositionEvent::CompositionEvent(const AtomicString& type, PassRefPtr<AbstractView> view, const String& data) argument
39 : UIEvent(type, true, true, view, 0)
48 void CompositionEvent::initCompositionEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data) argument
53 initUIEvent(type, canBubble, cancelable, view, 0);
H A DUIEvent.h40 static PassRefPtr<UIEvent> create(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, int detail) argument
42 return adoptRef(new UIEvent(type, canBubble, cancelable, view, detail));
48 AbstractView* view() const { return m_view.get(); } function in class:WebCore::UIEvent
H A DUIEventWithKeyState.h47 UIEventWithKeyState(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, argument
49 : UIEvent(type, canBubble, cancelable, view, detail)
/external/webkit/Source/WebCore/platform/brew/
H A DPopupMenuBrew.cpp54 void PopupMenuBrew::show(const IntRect& rect, FrameView* view, int index) argument
57 ChromeClientBrew* chromeClient = static_cast<ChromeClientBrew*>(view->frame()->page()->chrome()->client());
60 m_view = view;
/external/webkit/Source/WebCore/platform/efl/
H A DPopupMenuEfl.cpp50 void PopupMenuEfl::show(const IntRect& rect, FrameView* view, int index) argument
53 ChromeClientEfl* chromeClient = static_cast<ChromeClientEfl*>(view->frame()->page()->chrome()->client());
56 m_view = view;
/external/webkit/Source/WebCore/platform/qt/
H A DPlatformScreenQt.cpp66 QWidget* view = client->ownerWidget(); local
67 if (view)
68 depth = view->depth();
/external/webkit/Source/WebCore/plugins/symbian/
H A DPluginContainerSymbian.cpp35 PluginContainerSymbian::PluginContainerSymbian(PluginView* view, QWidget* parent, QGraphicsProxyWidget* proxy) argument
37 , m_pluginView(view)
/external/webkit/Source/WebCore/rendering/
H A DRenderFrame.cpp51 FrameView* view = static_cast<FrameView*>(widget());
57 view->setMarginWidth(marginWidth);
59 view->setMarginHeight(marginHeight);
65 FrameView* view = static_cast<FrameView*>(widget()); local
66 RenderView* root = view ? view->frame()->contentRenderer() : 0;
71 if (view)
72 view->layout();
89 setWidth(max(view->contentsWidth() + borderAndPaddingWidth(), width()));
90 setHeight(max(view
[all...]
H A DRenderIFrame.cpp54 FrameView* view = static_cast<FrameView*>(widget()); local
55 if (!view)
58 setHeight(max(height(), view->contentsHeight() + border));
72 FrameView* view = static_cast<FrameView*>(widget()); local
73 if (!view)
76 setWidth(max(width(), view->contentsWidth() + border));
98 FrameView* view = frame->page()->mainFrame()->view();
99 if (!view)
103 return absoluteBoundingBoxRect().intersects(IntRect(IntPoint(0, 0), view
[all...]
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestwebplugindatabase.c29 extern void webkit_web_settings_add_extra_plugin_directory(WebKitWebView* view, const gchar* directory);
33 WebKitWebView* view = WEBKIT_WEB_VIEW(webkit_web_view_new()); local
39 webkit_web_settings_add_extra_plugin_directory(view, TEST_PLUGIN_DIR);
40 g_object_ref_sink(G_OBJECT(view));
69 g_object_unref(view);
/external/webkit/Source/WebKit/win/WebCoreSupport/
H A DEmbeddedWidget.h47 EmbeddedWidget(IWebEmbeddedView* view, WebCore::Element* element) argument
48 : m_view(view)
82 WebCore::IntRect m_clipRect; // The clip rect to apply to an embedded view.
/external/chromium/chrome/browser/autocomplete/
H A Dautocomplete_popup_model.h34 AutocompletePopupView* view() const { return view_; } function in class:AutocompletePopupModel
/external/chromium/chrome/browser/chromeos/login/
H A Dview_screen.h29 V* view() { return view_; } function in class:ViewScreen
32 // Creates view object and adds it to views hierarchy.
34 // Creates view object.
83 // Delete the view now. So we do not worry the View outlives its
109 // RemoveChildView doesn't delete the view and we also can't delete it here
110 // becuase we are in message processing for the view.
121 view_->set_parent_owned(false); // ViewScreen owns the view.
/external/chromium/chrome/browser/chromeos/
H A Dnetwork_login_observer.cc31 void NetworkLoginObserver::CreateModalPopup(views::WindowDelegate* view) { argument
40 browser->window()->GetNativeHandle(), gfx::Rect(), view);
47 background_view->CreateModalPopup(view);
72 NetworkConfigView* view = NULL; local
97 view = new NetworkConfigView(wifi);
107 if (!view) {
119 view = new NetworkConfigView(vpn);
129 if (view)
130 CreateModalPopup(view);
/external/chromium/chrome/browser/ui/gtk/extensions/
H A Dextension_view_gtk.h27 virtual void OnExtensionPreferredSizeChanged(ExtensionViewGtk* view, argument
38 // Sets the container for this view.
60 // The background the view should have once it is initialized. This is set
61 // when the view has a custom background, but hasn't been initialized yet.
64 // This view's container.
/external/chromium/chrome/browser/ui/views/extensions/
H A Dextension_view.h26 // A class that represents the container that this view is in.
31 // Mouse event notifications from the view. (useful for hover UI).
32 virtual void OnExtensionMouseMove(ExtensionView* view) = 0;
33 virtual void OnExtensionMouseLeave(ExtensionView* view) = 0;
34 virtual void OnExtensionPreferredSizeChanged(ExtensionView* view) {} argument
53 // Set a custom background for the view. The background will be tiled.
56 // Sets the container for this view.
84 // Note that host_ owns view
87 // The browser window that this view is in.
93 // The background the view shoul
[all...]
/external/llvm/lib/CodeGen/
H A DEdgeBundles.cpp24 ViewEdgeBundles("view-edge-bundles", cl::Hidden,
55 view();
72 /// view - Visualize the annotated bipartite CFG with Graphviz.
73 void EdgeBundles::view() const { function in class:EdgeBundles

Completed in 463 milliseconds

1234567891011>>