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/css/resolver/
ScopedStyleTree.h 78 void reparentNodes(const ScopedStyleResolver* oldParent, ScopedStyleResolver* newParent);
ScopedStyleTree.cpp 194 inline void ScopedStyleTree::reparentNodes(const ScopedStyleResolver* oldParent, ScopedStyleResolver* newParent)
198 if (it->value->parent() == oldParent)
  /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/chrome/android/java/src/org/chromium/chrome/browser/
BookmarksBridge.java 67 * @param oldParent The parent before the move.
73 BookmarkItem oldParent, int oldIndex, BookmarkItem newParent, int newIndex);
226 BookmarkItem oldParent, int oldIndex, BookmarkItem newParent, int newIndex) {
228 observer.bookmarkNodeMoved(oldParent, oldIndex, newParent, newIndex);
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
CounterNode.cpp 52 CounterNode* oldParent = 0;
60 oldParent = m_parent;
79 child->m_parent = oldParent;
RenderObject.cpp 490 void RenderObject::moveLayers(RenderLayer* oldParent, RenderLayer* newParent)
497 ASSERT(oldParent == layer->parent());
498 if (oldParent)
499 oldParent->removeChild(layer);
505 curr->moveLayers(oldParent, newParent);
    [all...]
RenderObject.h 195 void moveLayers(RenderLayer* oldParent, RenderLayer* newParent);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.h 56 ContainerNode* oldParent()
58 // It's sort of ugly, but we store the |oldParent| in the |child| field
151 void takeAllChildren(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* oldParent);
HTMLConstructionSite.cpp 164 task.parent->parserTakeAllChildrenFrom(*task.oldParent());
710 void HTMLConstructionSite::takeAllChildren(HTMLStackItem* newParent, HTMLElementStack::ElementRecord* oldParent)
714 task.child = oldParent->node();
    [all...]
  /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);
  /external/chromium_org/third_party/WebKit/Source/core/dom/
ContainerNode.cpp 62 if (ContainerNode* oldParent = node.parentNode())
63 oldParent->removeChild(&node, exceptionState);
80 void ContainerNode::parserTakeAllChildrenFrom(ContainerNode& oldParent)
82 while (RefPtr<Node> child = oldParent.firstChild()) {
83 oldParent.parserRemoveChild(*child);
  /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 388 milliseconds