HomeSort by relevance Sort by last modified time
    Searched refs:parent (Results 151 - 175 of 4974) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
ACallCommand.java 57 this._position_.parent(null);
62 if(node.parent() != null)
64 node.parent().removeChild(node);
67 node.parent(this);
84 if(e.parent() != null)
86 e.parent().removeChild(e);
89 e.parent(this);
104 if(e.parent() != null)
106 e.parent().removeChild(e);
109 e.parent(this)
    [all...]
AAddExpression.java 51 this._left_.parent(null);
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
76 this._right_.parent(null);
81 if(node.parent() != null)
83 node.parent().removeChild(node);
86 node.parent(this);
AAndExpression.java 51 this._left_.parent(null);
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
76 this._right_.parent(null);
81 if(node.parent() != null)
83 node.parent().removeChild(node);
86 node.parent(this);
ACommaExpression.java 51 this._left_.parent(null);
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
76 this._right_.parent(null);
81 if(node.parent() != null)
83 node.parent().removeChild(node);
86 node.parent(this);
ACommentCommand.java 51 this._position_.parent(null);
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
76 this._comment_.parent(null);
81 if(node.parent() != null)
83 node.parent().removeChild(node);
86 node.parent(this);
AContentTypeCommand.java 51 this._position_.parent(null);
56 if(node.parent() != null)
58 node.parent().removeChild(node);
61 node.parent(this);
76 this._string_.parent(null);
81 if(node.parent() != null)
83 node.parent().removeChild(node);
86 node.parent(this);
  /external/smali/util/src/main/java/ds/tree/
Visitor.java 44 * @param parent The parent of the node being visited
47 public void visit(String key, RadixTreeNode<T> parent, RadixTreeNode<T> node);
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
signalbar.h 20 SignalBar(QObject *parent = 0);
  /frameworks/base/core/java/android/widget/
SpinnerAdapter.java 38 * @param parent the parent that this view will eventually be attached to
42 public View getDropDownView(int position, View convertView, ViewGroup parent);
  /external/chromium_org/sync/syncable/
parent_child_index.cc 76 ParentChildrenMap::iterator parent = local
78 DCHECK(parent != parent_children_map_.end());
80 OrderedChildSet* children = parent->second;
87 parent_children_map_.erase(parent);
93 ParentChildrenMap::const_iterator parent = local
95 if (parent == parent_children_map_.end()) {
98 const OrderedChildSet* children = parent->second;
104 ParentChildrenMap::iterator parent = parent_children_map_.find(id); local
105 if (parent == parent_children_map_.end()) {
110 DCHECK(!parent->second->empty())
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
XMLFilterImplTest.java 53 private XMLFilterImpl parent = new MockFilter(logger); field in class:XMLFilterImplTest
55 private XMLFilterImpl child = new XMLFilterImpl(parent);
68 parent.setContentHandler(handler);
69 parent.setDTDHandler(handler);
70 parent.setErrorHandler(handler);
78 assertEquals(null, parent.getParent());
83 assertEquals(null, parent.getParent());
94 child.setParent(parent);
95 assertEquals(parent, child.getParent());
112 // No parent cas
    [all...]
  /external/chromium/chrome/browser/instant/
instant_confirm_dialog.cc 22 void ShowInstantConfirmDialogIfNecessary(gfx::NativeWindow parent,
37 ShowInstantConfirmDialog(parent, profile);
  /external/chromium/chrome/browser/ui/gtk/bookmarks/
bookmark_bar_gtk_unittest.cc 74 const BookmarkNode* parent = model->GetBookmarkBarNode(); local
75 model->AddURL(parent, parent->child_count(),
85 const BookmarkNode* parent = model->GetBookmarkBarNode(); local
86 model->AddURL(parent, parent->child_count(),
88 model->AddURL(parent, parent->child_count(),
  /external/chromium_org/chrome/browser/ui/gtk/bookmarks/
bookmark_bar_gtk_unittest.cc 74 const BookmarkNode* parent = model_->bookmark_bar_node(); local
75 model_->AddURL(parent, parent->child_count(),
83 const BookmarkNode* parent = model_->bookmark_bar_node(); local
84 model_->AddURL(parent, parent->child_count(),
86 model_->AddURL(parent, parent->child_count(),
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AccessibilityMockObject.h 40 virtual void setParent(AccessibilityObject* parent) { m_parent = parent; };
53 // Must be called when the parent object clears its children.
AccessibilitySVGRoot.h 44 void setParent(AccessibilityObject* parent) { m_parent = parent; }
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSRegionRule.cpp 40 CSSRegionRule::CSSRegionRule(StyleRuleRegion* regionRule, CSSStyleSheet* parent)
41 : CSSGroupingRule(regionRule, parent)
CSSSupportsRule.cpp 38 CSSSupportsRule::CSSSupportsRule(StyleRuleSupports* supportsRule, CSSStyleSheet* parent)
39 : CSSGroupingRule(supportsRule, parent)
  /external/chromium_org/third_party/WebKit/Source/core/editing/
EditCommand.cpp 97 void EditCommand::setParent(CompositeEditCommand* parent)
99 ASSERT((parent && !m_parent) || (!parent && m_parent));
100 ASSERT(!parent || !isCompositeEditCommand() || !toCompositeEditCommand(this)->composition());
101 m_parent = parent;
102 if (parent) {
103 m_startingSelection = parent->m_endingSelection;
104 m_endingSelection = parent->m_endingSelection;
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLTablePartElement.cpp 88 ContainerNode* parent = NodeRenderingTraversal::parent(this); local
89 while (parent && !isHTMLTableElement(parent))
90 parent = NodeRenderingTraversal::parent(parent);
91 return toHTMLTableElement(parent);
  /external/chromium_org/third_party/libjingle/source/talk/examples/chat/
textchatreceivetask.cc 34 TextChatReceiveTask::TextChatReceiveTask(XmppTaskParentInterface* parent)
35 : XmppTask(parent, XmppEngine::HL_TYPE) {
  /external/chromium_org/third_party/libjingle/source/talk/xmpp/
jingleinfotask.h 42 explicit JingleInfoTask(XmppTaskParentInterface* parent) :
43 XmppTask(parent, XmppEngine::HL_TYPE) {}
  /external/chromium_org/tools/grit/grit/format/policy_templates/writers/
xml_writer_base_unittest.py 18 def GetXMLOfChildren(self, parent):
19 '''Returns the XML of all child nodes of the given parent node.
21 parent: The XML of the children of this node will be returned.
23 Return: XML of the chrildren of the parent node.
26 child.toprettyxml(indent=' ') for child in parent.childNodes)
  /external/chromium_org/ui/views/controls/menu/
menu_separator.h 18 MenuSeparator(MenuItemView* parent, ui::MenuSeparatorType type)
20 parent_menu_item_(parent) {}
35 // Our parent.
  /external/chromium_org/ui/views/test/
desktop_test_views_delegate.cc 25 if (params->parent && params->type != views::Widget::InitParams::TYPE_MENU) {
27 } else if (!params->parent && !params->context) {

Completed in 1461 milliseconds

1 2 3 4 5 67 8 91011>>