HomeSort by relevance Sort by last modified time
    Searched full:child (Results 101 - 125 of 3947) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
AGtExpression.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.");
AGteExpression.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.");
AHardIncludeCommand.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.");
AHardLincludeCommand.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.");
AIncludeCommand.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.");
AInlineCommand.java 101 void removeChild(@SuppressWarnings("unused") Node child)
103 // Remove child
104 if(this._position_ == child)
110 if(this._command_ == child)
116 throw new RuntimeException("Not a child.");
122 // Replace child
135 throw new RuntimeException("Not a child.");
ALincludeCommand.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.");
ALtExpression.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.");
ALteExpression.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.");
ALvarCommand.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.");
AModuloExpression.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.");
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/webkit/Source/WebCore/css/
StyleList.cpp 31 void StyleList::append(PassRefPtr<StyleBase> child)
33 StyleBase* c = child.get();
34 m_children.append(child);
38 void StyleList::insert(unsigned position, PassRefPtr<StyleBase> child)
40 StyleBase* c = child.get();
42 m_children.append(child);
44 m_children.insert(position, 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.
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
NotificationRowLayout.java 81 public void onChildViewAdded(View parent, View child) {
82 Slog.d(TAG, "view added: " + child + "; new count: " + getChildCount());
85 public void onChildViewRemoved(View parent, View child) {
86 Slog.d(TAG, "view removed: " + child + "; new count: " + (getChildCount() - 1));
169 public void addView(View child, int index, LayoutParams params) {
170 super.addView(child, index, params);
172 final View childF = child;
175 final ObjectAnimator alphaFade = ObjectAnimator.ofFloat(child, "alpha", 0f, 1f);
187 mAppearingViews.put(child, alphaFade);
203 public void dismissRowAnimated(View child) {
287 final View child = getChildAt(i); local
322 final View child = getChildAt(i); local
345 final View child = getChildAt(i); local
    [all...]
  /external/webkit/LayoutTests/fast/xpath/
document-order.html 14 '<CHILD attr1="val1" attr31="31">' +
18 '</CHILD>' +
19 '<CHILD attr4="4">' +
21 '</CHILD>' +
25 CHILD1 = doc.getElementsByTagName("CHILD")[0];
26 CHILD2 = doc.getElementsByTagName("CHILD")[1];
91 result = doc.evaluate("//CHILD | //@attr1", doc, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
92 checkSnapshot("//CHILD | //@attr1",
96 result = doc.evaluate("//CHILD | //@attr1 | //*[@name='GCHILD12'] | //@attr31", doc, null, XPathResult.ORDERED_NODE_SNAPSHOT_TYPE, null);
97 checkSnapshot("//CHILD | //@attr1 | //*[@name='GCHILD12'] | //@attr31",
    [all...]

Completed in 241 milliseconds

1 2 3 45 6 7 8 91011>>