OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:oldRoot
(Results
1 - 13
of
13
) sorted by null
/external/antlr/src/org/antlr/runtime/tree/
TreeAdaptor.java
96
/** If
oldRoot
is a nil root, just copy or move the children to newRoot.
97
* If not a nil root, make
oldRoot
a child of newRoot.
108
* If
oldRoot
was null, it's ok, just return newRoot (even if isNil).
117
* Be advised that it's ok for newRoot to point at
oldRoot
's
122
public Object becomeRoot(Object newRoot, Object
oldRoot
);
150
/** Create a node for newRoot make it the root of
oldRoot
.
151
* If
oldRoot
is a nil root, just copy or move the children to newRoot.
152
* If not a nil root, make
oldRoot
a child of newRoot.
161
public Object becomeRoot(Token newRoot, Object
oldRoot
);
BaseTreeAdaptor.java
111
/** If
oldRoot
is a nil root, just copy or move the children to newRoot.
112
* If not a nil root, make
oldRoot
a child of newRoot.
123
* If
oldRoot
was null, it's ok, just return newRoot (even if isNil).
132
* Be advised that it's ok for newRoot to point at
oldRoot
's
137
public Object becomeRoot(Object newRoot, Object
oldRoot
) {
138
//System.out.println("becomeroot new "+newRoot.toString()+" old "+
oldRoot
);
140
Tree oldRootTree = (Tree)
oldRoot
;
141
if (
oldRoot
==null ) {
153
// add
oldRoot
to newRoot; addChild takes care of case where
oldRoot
[
all
...]
/external/antlr/src/org/antlr/runtime/debug/
DebugTreeAdaptor.java
120
public Object becomeRoot(Object newRoot, Object
oldRoot
) {
121
Object n = adaptor.becomeRoot(newRoot,
oldRoot
);
122
dbg.becomeRoot(newRoot,
oldRoot
);
135
public Object becomeRoot(Token newRoot, Object
oldRoot
) {
137
adaptor.becomeRoot(n,
oldRoot
);
138
dbg.becomeRoot(newRoot,
oldRoot
);
DebugEventRepeater.java
83
public void becomeRoot(Object newRoot, Object
oldRoot
) { listener.becomeRoot(newRoot,
oldRoot
); }
TraceDebugEventListener.java
81
public void becomeRoot(Object newRoot, Object
oldRoot
) {
83
adaptor.getUniqueID(
oldRoot
));
BlankDebugEventListener.java
72
public void becomeRoot(Object newRoot, Object
oldRoot
) {}
DebugEventListener.java
306
public void becomeRoot(Object newRoot, Object
oldRoot
);
DebugEventHub.java
272
public void becomeRoot(Object newRoot, Object
oldRoot
) {
275
listener.becomeRoot(newRoot,
oldRoot
);
DebugEventSocketProxy.java
302
public void becomeRoot(Object newRoot, Object
oldRoot
) {
304
int oldRootID = adaptor.getUniqueID(
oldRoot
);
RemoteDebugEventSocketListener.java
410
ProxyTree
oldRoot
= new ProxyTree(oldRootID);
411
listener.becomeRoot(newRoot,
oldRoot
);
/sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
SdkRepoSource.java
206
Node
oldRoot
= null;
227
oldRoot
= child;
236
if (
oldRoot
== null || prefix == null || prefix.length() == 0) {
255
while ((element = findChild(
oldRoot
, element, prefix, elementNames)) != null) {
/external/webkit/Source/WebCore/dom/
Element.cpp
[
all
...]
/prebuilt/common/jython/
jython.jar
Completed in 266 milliseconds