Searched defs:view (Results 176 - 200 of 369) sorted by relevance

1234567891011>>

/external/llvm/tools/gold/
H A Dgold-plugin.cpp240 const void *view; local
243 if (get_view(file->handle, &view) != LDPS_OK) {
244 (*message)(LDPL_ERROR, "Failed to get a view of %s", file->name);
260 view = buffer->getBufferStart();
263 if (!lto_module_is_object_file_in_memory(view, file->filesize))
266 M = lto_module_create_from_memory(view, file->filesize);
/external/qemu/distrib/sdl-1.2.15/src/video/quartz/
H A DSDL_QuartzVideo.h103 NSView *view; /* the window's view; draw 2D and OpenGL into this view */ member in struct:SDL_PrivateVideoData
142 #define window_view (this->hidden->view)
/external/quake/quake/src/WinQuake/
H A Dview.cpp20 // view.c -- player eye positioning
27 The view is allowed to move slightly from it's true position for bobbing,
76 Used by view and sv_user
178 Drifting is enabled when the center view key is hit, mlook is released and
363 // calculate view angle kicks
770 // so the view can never be inside a solid wall
824 r_refdef.viewangles[ROLL] = 80; // dead view angle
839 entity_t *ent, *view; local
844 // view is the weapon model (only visible from inside body)
845 view
866 entity_t *ent, *view; local
[all...]
/external/replicaisland/src/com/replica/replicaisland/
H A DKeyboardConfigDialogPreference.java28 import android.view.KeyEvent;
29 import android.view.View;
92 protected void onBindDialogView(View view) { argument
93 super.onBindDialogView(view);
101 mLeftText = (TextView)view.findViewById(R.id.key_left);
104 mRightText = (TextView)view.findViewById(R.id.key_right);
107 mJumpText = (TextView)view.findViewById(R.id.key_jump);
110 mAttackText = (TextView)view.findViewById(R.id.key_attack);
113 mLeftBorder = view.findViewById(R.id.left_border);
114 mRightBorder = view
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
H A DViewLoader.java9 import android.view.View;
10 import android.view.ViewGroup;
11 import android.view.ViewParent;
171 View view = create(context, (ViewGroup) parent);
174 child.inflate(context, view);
177 invokeOnFinishInflate(view);
178 return view;
181 private void invokeOnFinishInflate(View view) throws NoSuchMethodException, IllegalAccessException, InvocationTargetException { argument
184 onFinishInflate.invoke(view);
190 View view
236 addToParent(ViewGroup parent, View view) argument
[all...]
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowAdapterView.java5 import android.view.View;
56 public int getPositionForView(android.view.View view) { argument
57 while (view.getParent() != null && view.getParent() != realView) {
58 view = (View) view.getParent();
62 if (view == getChildAt(i)) {
109 // If the caller just removed our empty view, make sure the list view i
243 performItemClick(View view, int position, long id) argument
251 performItemLongClick(View view, int position, long id) argument
[all...]
H A DShadowAppWidgetManager.java9 import android.view.View;
88 widgetInfo.view = createWidgetView(layoutId);
92 views.reapply(context, widgetInfo.view);
121 widgetInfo.view = createWidgetView(widgetInfo.layoutId);
122 widgetInfo.lastRemoteViews.reapply(context, widgetInfo.view);
176 return getWidgetInfo(widgetId).view;
214 private View view; field in class:ShadowAppWidgetManager.WidgetInfo
219 public WidgetInfo(View view, int layoutId, AppWidgetProvider appWidgetProvider) { argument
220 this.view = view;
[all...]
H A DShadowDialog.java8 import android.view.LayoutInflater;
9 import android.view.View;
10 import android.view.ViewGroup;
11 import android.view.Window;
16 import com.xtremelabs.robolectric.tester.android.view.TestWindow;
75 public void setContentView(View view) { argument
76 inflatedView = view;
246 private boolean clickOnText(View view, String text) { argument
247 if (text.equals(shadowOf(view).innerText())) {
248 view
[all...]
H A DShadowFragment.java9 import android.view.View;
19 protected View view; field in class:ShadowFragment
29 public void setView(View view) { argument
30 this.view = view;
39 return view;
H A DShadowListView.java7 import android.view.View;
60 public boolean performItemClick(View view, int position, long id) { argument
77 handled |= super.performItemClick(view, position, id);
126 public void removeView(View view) { argument
135 private void ensureAdapterNotSet(String view) { argument
137 throw new IllegalStateException("Cannot add " + view + " view to list -- setAdapter has already been called");
H A DShadowSimpleCursorAdapter.java22 import android.view.View;
23 import android.view.ViewGroup;
42 * {@link ViewBinder#setViewValue(android.view.View, android.database.Cursor, int)}
44 * returned value is false and the view to bind is a TextView,
46 * is false and the view to bind is an ImageView,
110 * {@link ViewBinder#setViewValue(android.view.View, android.database.Cursor, int)}
112 * returned value is false and the view to bind is a TextView,
114 * false and the view to bind is an ImageView,
120 * @see android.widget.CursorAdapter#bindView(android.view.View,
128 public void bindView(View view, Contex argument
[all...]
H A DShadowViewGroup.java3 import android.view.View;
4 import android.view.ViewGroup;
5 import android.view.animation.Animation.AnimationListener;
124 public void removeView(View view) { argument
125 removeViewInLayout(view);
129 public void removeViewInLayout(View view) { argument
130 int index = indexOfChild(view);
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/view/
H A DTestMenu.java1 package com.xtremelabs.robolectric.tester.android.view;
6 import android.view.KeyEvent;
7 import android.view.Menu;
8 import android.view.MenuItem;
9 import android.view.SubMenu;
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
H A DViewTest.java8 import android.view.*;
9 import android.view.View.MeasureSpec;
10 import android.view.animation.Animation;
28 private View view; field in class:ViewTest
32 view = new View(new Activity());
37 ViewGroup.LayoutParams layoutParams = view.getLayoutParams();
43 assertThat(view.getWidth(), equalTo(0));
44 assertThat(view.getHeight(), equalTo(0));
46 view.layout(100, 200, 303, 404);
47 assertThat(view
[all...]
/external/webkit/Source/WebCore/accessibility/
H A DAXObjectCache.cpp290 return getOrCreate(m_document->view());
297 return getOrCreate(frame->view());
372 void AXObjectCache::remove(Widget* view) argument
374 if (!view)
377 AXID axID = m_widgetObjectMapping.get(view);
379 m_widgetObjectMapping.remove(view);
467 if (renderer && renderer->view())
468 ASSERT(!renderer->view()->layoutState());
539 void AXObjectCache::handleScrollbarUpdate(ScrollView* view) argument
541 if (!view)
[all...]
/external/webkit/Source/WebCore/dom/
H A DMouseEvent.cpp34 PassRefPtr<MouseEvent> MouseEvent::create(const AtomicString& eventType, PassRefPtr<AbstractView> view, const PlatformMouseEvent& event, int detail, PassRefPtr<Node> relatedTarget) argument
40 return MouseEvent::create(eventType, true, isCancelable, view,
52 MouseEvent::MouseEvent(const AtomicString& eventType, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, argument
57 : MouseRelatedEvent(eventType, canBubble, cancelable, view, detail, screenX, screenY,
70 void MouseEvent::initMouseEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, argument
78 initUIEvent(type, canBubble, cancelable, view, detail);
134 PassRefPtr<SimulatedMouseEvent> SimulatedMouseEvent::create(const AtomicString& eventType, PassRefPtr<AbstractView> view, PassRefPtr<Event> underlyingEvent) argument
136 return adoptRef(new SimulatedMouseEvent(eventType, view, underlyingEvent));
143 SimulatedMouseEvent::SimulatedMouseEvent(const AtomicString& eventType, PassRefPtr<AbstractView> view, PassRefPtr<Event> underlyingEvent) argument
144 : MouseEvent(eventType, true, true, view,
[all...]
/external/webkit/Source/WebCore/html/
H A DHTMLBodyElement.cpp199 if (FrameView* view = document()->view())
200 view->scheduleRelayout();
283 FrameView* view = document->view(); local
284 return view ? adjustForZoom(view->scrollX(), document) : 0;
294 FrameView* view = frame->view();
295 if (!view)
305 FrameView* view = document->view(); local
327 FrameView* view = document->view(); local
336 FrameView* view = document->view(); local
[all...]
H A DHTMLFormElement.cpp304 FrameView* view = document()->view(); local
306 if (!view || !frame)
/external/webkit/Source/WebCore/inspector/
H A DDOMNodeHighlighter.cpp121 IntPoint mainFramePoint = frame->page()->mainFrame()->view()->windowToContents(frame->view()->contentsToWindow(IntPoint()));
230 FrameView* view = containingFrame->page()->mainFrame()->view(); local
231 FloatRect overlayRect = view->visibleContentRect();
233 overlayRect = view->visibleContentRect();
/external/webkit/Source/WebCore/loader/
H A DSubframeLoader.cpp270 FrameView* view = frame->view(); local
271 if (renderer && renderer->isWidget() && view)
272 toRenderWidget(renderer)->setWidget(view);
/external/webkit/Source/WebCore/platform/
H A DScrollbarThemeComposite.cpp45 static Page* pageForScrollView(ScrollView* view) argument
47 if (!view)
49 if (!view->isFrameView())
51 FrameView* frameView = static_cast<FrameView*>(view);
307 void ScrollbarThemeComposite::paintScrollCorner(ScrollView* view, GraphicsContext* context, const IntRect& cornerRect) argument
309 FrameView* frameView = static_cast<FrameView*>(view);
/external/webkit/Source/WebCore/platform/gtk/
H A DScrollbarThemeGtk.cpp254 void ScrollbarThemeGtk::paintScrollCorner(ScrollView* view, GraphicsContext* context, const IntRect& cornerRect) argument
260 ScrollbarTheme::paintScrollCorner(view, context, cornerRect);
/external/webkit/Source/WebCore/rendering/
H A DRenderDataGrid.cpp209 RenderView* view = this->view(); local
210 if (!view)
219 return view->frameView()->convertFromRenderer(this, rect);
224 RenderView* view = this->view(); local
225 if (!view)
228 IntRect rect = view->frameView()->convertToRenderer(this, parentRect);
238 RenderView* view = this->view(); local
253 RenderView* view = this->view(); local
267 RenderView* view = this->view(); local
[all...]
H A DRenderEmbeddedObject.cpp83 view()->frameView()->setIsVisuallyNonEmpty();
238 FrameView* view = static_cast<FrameView*>(widget()); local
247 view->setMarginWidth(marginWidth);
249 view->setMarginHeight(marginHeight);
/external/webkit/Source/WebKit/gtk/tests/
H A Dtestdomdocument.c72 WebKitWebView* view = (WebKitWebView*)fixture->webView; local
73 g_assert(view);
74 WebKitDOMDocument* document = webkit_web_view_get_dom_document(view);
90 WebKitWebView* view = (WebKitWebView*)fixture->webView; local
91 g_assert(view);
92 WebKitDOMDocument* document = webkit_web_view_get_dom_document(view);
119 WebKitWebView* view = (WebKitWebView*)fixture->webView; local
120 g_assert(view);
121 WebKitDOMDocument* document = webkit_web_view_get_dom_document(view);
144 WebKitWebView* view local
164 WebKitWebView* view = (WebKitWebView*)fixture->webView; local
200 WebKitWebView* view = (WebKitWebView*)fixture->webView; local
[all...]

Completed in 419 milliseconds

1234567891011>>