HomeSort by relevance Sort by last modified time
    Searched defs:parentView (Results 1 - 12 of 12) sorted by null

  /external/webkit/Source/WebKit/win/WebCoreSupport/
EmbeddedWidget.cpp 171 FrameView* parentView = m_element->document()->view();
172 clipRect.intersect(parentView->windowClipRectForLayer(layer, true));
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/common/layout/relative/
DependencyGraph.java 72 ViewData parentView = new ViewData(layout, parentId);
73 mNodeToView.put(layout, parentView);
75 mIdToView.put(parentId, parentView);
99 Constraint constraint = new Constraint(type, view, parentView);
101 parentView.dependedOnBy.add(constraint);
  /external/webkit/Source/WebKit/chromium/src/
WebPluginContainerImpl.cpp 476 FrameView* parentView = static_cast<FrameView*>(parent());
483 Frame* containingFrame = parentView->frame();
497 Page* page = parentView->frame()->page();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ResizeGesture.java 85 Object parentView = parentInfo != null ? parentInfo.getViewObject() : null;
87 mHorizontalEdge, mVerticalEdge, childView, parentView);
CanvasViewInfo.java     [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/
Bridge.java 401 ViewParent parentView = view.getParent();
403 if (parentView instanceof ViewGroup) {
404 Status.SUCCESS.createResult(((ViewGroup) parentView).indexOfChild(view));
  /external/webkit/Source/WebCore/plugins/
PluginView.cpp 135 FrameView* parentView = m_element->document()->view();
136 clipRect.intersect(parentView->windowClipRectForLayer(layer, true));
    [all...]
  /external/webkit/Source/WebKit2/WebProcess/Plugins/
PluginView.cpp 627 FrameView* parentView = m_pluginElement->document()->frame()->view();
628 IntRect windowClipRect = parentView->windowClipRectForLayer(layer, true);
    [all...]
  /frameworks/base/core/java/android/view/
AccessibilityInteractionController.java     [all...]
View.java     [all...]
  /frameworks/base/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/
RenderSessionImpl.java 619 public Result insertChild(final ViewGroup parentView, ILayoutPullParser childXml,
630 // get added. We do pass the parentView however to ensure that the layoutParams will
632 final View child = mInflater.inflate(blockParser, parentView, false /*attachToRoot*/);
642 parentView.setLayoutTransition(new LayoutTransition());
643 return addView(parentView, child, index);
648 parentView.setLayoutTransition(null);
656 // add it to the parentView in the correct location
657 Result result = addView(parentView, child, index);
    [all...]
  /external/webkit/Source/WebCore/page/
FrameView.cpp 732 if (FrameView* parentView = parentFrameView())
733 return parentView->isEnclosedInCompositingLayer();
796 FrameView* parentView = static_cast<FrameView*>(parent());
797 if (!parentView->m_nestedLayoutCount) {
798 while (parentView->parent() && parentView->parent()->isFrameView())
799 parentView = static_cast<FrameView*>(parentView->parent());
800 parentView->layout(allowSubtree);
    [all...]

Completed in 246 milliseconds