Searched refs:oldChild (Results 1 - 25 of 91) sorted by relevance

1234

/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAMultipleCommand.java78 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
83 if(i.next() == oldChild)
89 oldChild.parent(null);
94 oldChild.parent(null);
H A DASequenceExpression.java78 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
83 if(i.next() == oldChild)
89 oldChild.parent(null);
94 oldChild.parent(null);
H A DAFunctionExpression.java115 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
118 if(this._name_ == oldChild)
126 if(i.next() == oldChild)
132 oldChild.parent(null);
137 oldChild.parent(null);
H A DADefCommand.java183 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
186 if(this._position_ == oldChild)
194 if(i.next() == oldChild)
200 oldChild.parent(null);
205 oldChild.parent(null);
212 if(i.next() == oldChild)
218 oldChild.parent(null);
223 oldChild.parent(null);
228 if(this._command_ == oldChild)
H A DACallCommand.java146 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
149 if(this._position_ == oldChild)
157 if(i.next() == oldChild)
163 oldChild.parent(null);
168 oldChild.parent(null);
175 if(i.next() == oldChild)
181 oldChild.parent(null);
186 oldChild.parent(null);
H A DAOptimizedMultipleCommand.java40 void replaceChild(Node oldChild, Node newChild) { argument
46 if (commands[i] == oldChild) {
49 oldChild.parent(null);
H A DAEachCommand.java194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
197 if(this._position_ == oldChild)
203 if(this._variable_ == oldChild)
209 if(this._expression_ == oldChild)
215 if(this._command_ == oldChild)
H A DAIfCommand.java194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
197 if(this._position_ == oldChild)
203 if(this._expression_ == oldChild)
209 if(this._block_ == oldChild)
215 if(this._otherwise_ == oldChild)
H A DALoopToCommand.java194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
197 if(this._position_ == oldChild)
203 if(this._variable_ == oldChild)
209 if(this._expression_ == oldChild)
215 if(this._command_ == oldChild)
H A DAWithCommand.java194 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
197 if(this._position_ == oldChild)
203 if(this._variable_ == oldChild)
209 if(this._expression_ == oldChild)
215 if(this._command_ == oldChild)
H A DALoopIncCommand.java268 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
271 if(this._position_ == oldChild)
277 if(this._variable_ == oldChild)
283 if(this._start_ == oldChild)
289 if(this._end_ == oldChild)
295 if(this._increment_ == oldChild)
301 if(this._command_ == oldChild)
H A DALoopCommand.java231 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
234 if(this._position_ == oldChild)
240 if(this._variable_ == oldChild)
246 if(this._start_ == oldChild)
252 if(this._end_ == oldChild)
258 if(this._command_ == oldChild)
H A DAAddExpression.java120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
123 if(this._left_ == oldChild)
129 if(this._right_ == oldChild)
H A DAAndExpression.java120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
123 if(this._left_ == oldChild)
129 if(this._right_ == oldChild)
H A DACommaExpression.java120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
123 if(this._left_ == oldChild)
129 if(this._right_ == oldChild)
H A DACommentCommand.java120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
123 if(this._position_ == oldChild)
129 if(this._comment_ == oldChild)
H A DAContentTypeCommand.java120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
123 if(this._position_ == oldChild)
129 if(this._string_ == oldChild)
H A DADescendVariable.java120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
123 if(this._parent_ == oldChild)
129 if(this._child_ == oldChild)
H A DADivideExpression.java120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
123 if(this._left_ == oldChild)
129 if(this._right_ == oldChild)
H A DAEqExpression.java120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
123 if(this._left_ == oldChild)
129 if(this._right_ == oldChild)
H A DAEvarCommand.java120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
123 if(this._position_ == oldChild)
129 if(this._expression_ == oldChild)
H A DAExpandVariable.java120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
123 if(this._parent_ == oldChild)
129 if(this._child_ == oldChild)
H A DAGtExpression.java120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
123 if(this._left_ == oldChild)
129 if(this._right_ == oldChild)
H A DAGteExpression.java120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
123 if(this._left_ == oldChild)
129 if(this._right_ == oldChild)
H A DAHardIncludeCommand.java120 void replaceChild(@SuppressWarnings("unused") Node oldChild, @SuppressWarnings("unused") Node newChild) argument
123 if(this._position_ == oldChild)
129 if(this._expression_ == oldChild)

Completed in 408 milliseconds

1234