HomeSort by relevance Sort by last modified time
    Searched full:child (Results 201 - 225 of 7933) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AMultiplyExpression.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._left_ == child)
110 if(this._right_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
ANameCommand.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._position_ == child)
110 if(this._variable_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
ANeExpression.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._left_ == child)
110 if(this._right_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
ANumericAddExpression.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._left_ == child)
110 if(this._right_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
ANumericEqExpression.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._left_ == child)
110 if(this._right_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
ANumericNeExpression.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._left_ == child)
110 if(this._right_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
AOrExpression.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._left_ == child)
110 if(this._right_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
ASubtractExpression.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._left_ == child)
110 if(this._right_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
AUvarCommand.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._position_ == child)
110 if(this._expression_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
AVarCommand.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._position_ == child)
110 if(this._expression_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
  /external/valgrind/main/memcheck/tests/
err_disable3.c 2 /* Check that a child thread doesn't inherit its parent's disablement
39 pthread_t child; local
49 fprintf(stderr, "\n--------- p: creating child ---------\n\n");
51 r = pthread_create(&child, NULL, child_fn, NULL);
53 sleep(1); // let the child run first (determinism fix)
54 fprintf(stderr, "\n--------- p: join child ---------\n\n");
55 r = pthread_join(child, NULL);
  /frameworks/base/services/core/java/com/android/server/firewall/
NotFilter.java 30 private NotFilter(Filter child) {
31 mChild = child;
45 Filter child = null;
49 if (child == null) {
50 child = filter;
53 "<not> tag can only contain a single child filter.", parser, null);
56 return new NotFilter(child);
  /frameworks/support/v4/java/android/support/v4/app/
NoSaveStateFrameLayout.java 31 static ViewGroup wrap(View child) {
32 NoSaveStateFrameLayout wrapper = new NoSaveStateFrameLayout(child.getContext());
33 ViewGroup.LayoutParams childParams = child.getLayoutParams();
39 child.setLayoutParams(lp);
40 wrapper.addView(child);
49 * Override to prevent freezing of any child views.
57 * Override to prevent thawing of any child views.
  /external/chromium_org/ui/views/layout/
box_layout.cc 38 View* child = host->child_at(i); local
39 if (!child->visible())
43 child->GetPreferredSize().width() + between_child_spacing_;
45 total_main_axis_size += child->GetHeightForWidth(child_area.width()) +
82 View* child = host->child_at(i); local
83 if (child->visible()) {
86 bounds.set_width(child->GetPreferredSize().width() + padding);
90 bounds.set_height(child->GetHeightForWidth(bounds.width()) + padding);
94 // Clamp child view bounds to |child_area|.
96 child->SetBoundsRect(bounds)
106 const View* child = host->child_at(i); local
154 const View* child = host->child_at(i); local
169 const View* child = host->child_at(i); local
    [all...]
  /external/chromium_org/ui/wm/core/
base_focus_rules.cc 97 aura::Window* child = window; local
99 if (IsToplevelWindow(child))
100 return child;
103 child = child->parent();
110 aura::Window* child = window; local
112 if (CanActivateWindow(child))
113 return child;
115 // CanActivateWindow() above will return false if |child| is blocked by a
119 aura::Window* modal_transient = GetModalTransient(child);
    [all...]
  /external/ksoap2/ksoap2-base/src/main/java/org/ksoap2/kdom/
Node.java 45 /** inserts the given child object of the given type at the
48 public void addChild(int index, int type, Object child) {
50 if (child == null)
59 if (!(child instanceof Element))
62 ((Element) child).setParent(this);
64 else if (!(child instanceof String))
67 children.insertElementAt(child, index);
71 /** convenience method for addChild (getChildCount (), child) */
73 public void addChild(int type, Object child) {
74 addChild(getChildCount(), type, child); local
111 Object child = getChild(index); local
205 Element child = getElement(i); local
237 Element child = local
325 Object child = children.elementAt(i); local
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest_xml_test_utils.py 64 * It has an equivalent set of child nodes (including elements and
103 'number of child elements differ in element ' + actual_node.tagName)
104 for child_id, child in expected_children.iteritems():
108 self.AssertEquivalentNodes(child, actual_children[child_id])
119 Fetches all of the child nodes of element, a DOM Element object.
126 four is encountered, if two child elements with the same identifying
131 for child in element.childNodes:
132 if child.nodeType == Node.ELEMENT_NODE:
133 self.assert_(child.tagName in self.identifying_attribute,
134 'Encountered unknown element <%s>' % child.tagName
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderLayerStackingNode.cpp 143 for (RenderLayer* child = layer()->firstChild(); child; child = child->nextSibling()) {
144 if (!layer()->reflectionInfo() || layer()->reflectionInfo()->reflectionLayer() != child)
145 child->stackingNode()->collectLayers(m_posZOrderList, m_negZOrderList);
159 for (RenderObject* child = view->firstChild(); child; child = child->nextSibling())
    [all...]
RenderBlockFlow.cpp 73 // This flag tracks whether we are still looking at child margins that can all collapse together at the beginning of a block.
142 static bool inNormalFlow(RenderBox* child)
144 RenderBlock* curr = child->containingBlock();
145 RenderView* renderView = child->view();
427 for (RenderObject* child = lastChild(); child; child = child->previousSibling()) {
428 if (child->isRenderBlockFlow() && !child->isFloatingOrOutOfFlowPositioned())
903 RenderBox* child = next; local
    [all...]
  /external/gtest/test/
gtest_xml_test_utils.py 64 * It has an equivalent set of child nodes (including elements and
103 'number of child elements differ in element ' + actual_node.tagName)
104 for child_id, child in expected_children.iteritems():
108 self.AssertEquivalentNodes(child, actual_children[child_id])
119 Fetches all of the child nodes of element, a DOM Element object.
126 four is encountered, if two child elements with the same identifying
131 for child in element.childNodes:
132 if child.nodeType == Node.ELEMENT_NODE:
133 self.assert_(child.tagName in self.identifying_attribute,
134 'Encountered unknown element <%s>' % child.tagName
    [all...]
  /external/protobuf/gtest/test/
gtest_xml_test_utils.py 63 * It has an equivalent set of child nodes (including elements and
98 "number of child elements differ in element " + actual_node.tagName)
99 for child_id, child in expected_children.iteritems():
103 self.AssertEquivalentNodes(child, actual_children[child_id])
114 Fetches all of the child nodes of element, a DOM Element object.
121 four is encountered, if two child elements with the same identifying
126 for child in element.childNodes:
127 if child.nodeType == Node.ELEMENT_NODE:
128 self.assert_(child.tagName in self.identifying_attribute,
129 "Encountered unknown element <%s>" % child.tagName
    [all...]
  /ndk/sources/third_party/googletest/googletest/test/
gtest_xml_test_utils.py 64 * It has an equivalent set of child nodes (including elements and
101 'number of child elements differ in element ' + actual_node.tagName)
102 for child_id, child in expected_children.iteritems():
106 self.AssertEquivalentNodes(child, actual_children[child_id])
117 Fetches all of the child nodes of element, a DOM Element object.
124 four is encountered, if two child elements with the same identifying
129 for child in element.childNodes:
130 if child.nodeType == Node.ELEMENT_NODE:
131 self.assert_(child.tagName in self.identifying_attribute,
132 'Encountered unknown element <%s>' % child.tagName
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/widget/sgv/
ReorderHelper.java 31 // and this child supports reordering, the dragged view will be reordered to be next
32 // to this child.
35 // The current child that is being dragged for reordering.
59 * Handle dropping the dragged child.
67 Log.w(TAG, "Current dragged over child does not exist");
71 // reordering areas. Don't update dragged over child if its the same as
72 // it was before or is the same as the child's original item.
88 // Even if the dragged child is not dropped in a reorder area, we
108 * Handles determining which child views should be moved out of the way to
110 * new child view's space is entered by the dragging view
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/accessibility/
AXARIAGrid.cpp 54 bool AXARIAGrid::addTableCellChild(AXObject* child, HashSet<AXObject*>& appendedRows, unsigned& columnCount)
56 if (!child || !child->isTableRow() || child->ariaRoleAttribute() != RowRole)
59 AXTableRow* row = toAXTableRow(child);
100 for (RefPtr<AXObject> child = firstChild(); child; child = child->nextSibling()) {
102 if (!addTableCellChild(child.get(), appendedRows, columnCount))
    [all...]
  /external/lldb/test/pexpect-2.4/examples/
chess2.py 15 self.child = pexpect.spawn (engine)
18 #self.child.expect ('Chess')
19 #if self.child.after != 'Chess':
21 #self.term.process_list (self.child.before)
22 #self.term.process_list (self.child.after)
33 k = self.child.read(1, 10)
58 c = self.child.read(1,10)
68 self.child.sendline (move)
92 self.child.sendline ('switch')
95 self.child.sendline ('depth'
    [all...]

Completed in 1080 milliseconds

1 2 3 4 5 6 7 891011>>