HomeSort by relevance Sort by last modified time
    Searched refs:oldParent (Results 1 - 24 of 24) sorted by null

  /frameworks/base/tests/TransitionTests/src/com/android/transitiontests/
Reparenting.java 64 ViewGroup oldParent = (ViewGroup) v.getParent();
65 ViewGroup newParent = oldParent == mContainer1 ? mContainer2 : mContainer1;
66 oldParent.removeView(v);
  /frameworks/base/core/java/android/preference/
EditTextPreference.java 112 ViewParent oldParent = editText.getParent();
113 if (oldParent != view) {
114 if (oldParent != null) {
115 ((ViewGroup) oldParent).removeView(editText);
  /external/chromium/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_controller.h 361 parent:(const BookmarkNode*)oldParent index:(int)index;
365 oldParent:(const BookmarkNode*)oldParent oldIndex:(int)oldIndex
368 parent:(const BookmarkNode*)oldParent index:(int)index;
  /external/chromium_org/chrome/browser/ui/cocoa/bookmarks/
bookmark_bar_controller.h 369 parent:(const BookmarkNode*)oldParent index:(int)index;
373 oldParent:(const BookmarkNode*)oldParent oldIndex:(int)oldIndex
376 parent:(const BookmarkNode*)oldParent index:(int)index;
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
ActionBarContextView.java 102 final ViewGroup oldParent = (ViewGroup) mMenuView.getParent();
103 if (oldParent != null) {
104 oldParent.removeView(mMenuView);
118 final ViewGroup oldParent = (ViewGroup) mMenuView.getParent();
119 if (oldParent != null) {
120 oldParent.removeView(mMenuView);
ActionBarView.java 331 final ViewGroup oldParent = (ViewGroup) mMenuView.getParent();
332 if (oldParent != null) {
333 oldParent.removeView(mMenuView);
408 final ViewGroup oldParent = (ViewGroup) mMenuView.getParent();
409 if (oldParent != null) {
410 oldParent.removeView(mMenuView);
430 final ViewGroup oldParent = (ViewGroup) menuView.getParent();
431 if (oldParent != null && oldParent != this) {
432 oldParent.removeView(menuView)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.h 54 ContainerNode* oldParent()
56 // It's sort of ugly, but we store the |oldParent| in the |child| field
125 void takeAllChildren(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* oldParent);
HTMLConstructionSite.cpp 154 task.parent->takeAllChildrenFrom(task.oldParent());
618 void HTMLConstructionSite::takeAllChildren(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* oldParent)
622 task.child = oldParent->node();
    [all...]
  /libcore/luni/src/main/java/java/util/logging/
LogManager.java 255 Logger oldParent = child.getParent();
256 if (parent == oldParent && (name.length() == 0 || child.getName().startsWith(nameDot))) {
259 if (oldParent != null) {
261 oldParent.children.remove(child);
  /frameworks/base/core/java/com/android/internal/widget/
ActionBarContextView.java 116 final ViewGroup oldParent = (ViewGroup) mMenuView.getParent();
117 if (oldParent != null) oldParent.removeView(mMenuView);
130 final ViewGroup oldParent = (ViewGroup) mMenuView.getParent();
131 if (oldParent != null) oldParent.removeView(mMenuView);
ActionBarView.java 319 final ViewGroup oldParent = (ViewGroup) mMenuView.getParent();
320 if (oldParent != null) {
321 oldParent.removeView(mMenuView);
398 final ViewGroup oldParent = (ViewGroup) mMenuView.getParent();
399 if (oldParent != null) {
400 oldParent.removeView(mMenuView);
419 final ViewGroup oldParent = (ViewGroup) menuView.getParent();
420 if (oldParent != null && oldParent != this) {
421 oldParent.removeView(menuView)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
CounterNode.cpp 49 CounterNode* oldParent = 0;
57 oldParent = m_parent;
76 child->m_parent = oldParent;
RenderObject.cpp 519 void RenderObject::moveLayers(RenderLayer* oldParent, RenderLayer* newParent)
526 ASSERT(oldParent == layer->parent());
527 if (oldParent)
528 oldParent->removeChild(layer);
534 curr->moveLayers(oldParent, newParent);
    [all...]
RenderObject.h 200 void moveLayers(RenderLayer* oldParent, RenderLayer* newParent);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
FrameTree.cpp 67 Frame* oldParent = child->tree()->parent();
68 if (oldParent == m_thisFrame)
71 if (oldParent)
72 oldParent->tree()->removeChild(child.get());
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNode.cpp 69 if (ContainerNode* oldParent = node->parentNode())
70 oldParent->removeChild(node, es);
87 void ContainerNode::takeAllChildrenFrom(ContainerNode* oldParent)
90 getChildNodes(oldParent, children);
92 if (oldParent->document()->hasMutationObserversOfType(MutationObserver::ChildList)) {
93 ChildListMutationScope mutation(oldParent);
101 oldParent->removeDetachedChildren();
110 // (if the document changed or oldParent was in a shadow tree, AND *this is in a shadow tree).
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/resolver/
ScopedStyleResolver.h 133 void reparentNodes(const ScopedStyleResolver* oldParent, ScopedStyleResolver* newParent);
ScopedStyleResolver.cpp 204 inline void ScopedStyleTree::reparentNodes(const ScopedStyleResolver* oldParent, ScopedStyleResolver* newParent)
208 if (it->value->parent() == oldParent)
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaConnection.java 658 public void updateParent(CdmaCall oldParent, CdmaCall newParent){
659 if (newParent != oldParent) {
660 if (oldParent != null) {
661 oldParent.detach(this);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
SelectionManager.java 767 CanvasViewInfo oldParent = old.getParent();
768 if (oldParent != null) {
769 CanvasViewInfo newParent = findCorresponding(oldParent, newRoot);
774 List<CanvasViewInfo> oldSiblings = oldParent.getChildren();
    [all...]
  /external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/
BeautifulSoup.py 130 oldParent = self.parent
142 oldParent.insert(myIndex, replaceWith)
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.jface.databinding_1.4.0.I20100601-0800.jar 
org.eclipse.ui.workbench_3.6.1.M20101117-0800.jar 
  /prebuilts/tools/common/eclipse/
org.eclipse.ui.workbench_3.6.2.M20110210-1200.jar 

Completed in 2323 milliseconds