OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:successorlist
(Results
1 - 4
of
4
) sorted by null
/dalvik/dx/src/com/android/dx/ssa/
SsaBasicBlock.java
63
private IntList
successorList
;
129
this.
successorList
= new IntList();
164
result.
successorList
168
if (result.
successorList
.size() != 0) {
358
return
successorList
;
392
IntList result = new IntList(
successorList
.size());
394
int sz =
successorList
.size();
397
result.add(parent.blockIndexToRopLabel(
successorList
.get(i)));
421
newPred.
successorList
.add(index);
463
newSucc.
successorList
.add(other.index)
[
all
...]
/external/dexmaker/src/dx/java/com/android/dx/ssa/
SsaBasicBlock.java
64
private IntList
successorList
;
130
this.
successorList
= new IntList();
165
result.
successorList
169
if (result.
successorList
.size() != 0) {
359
return
successorList
;
393
IntList result = new IntList(
successorList
.size());
395
int sz =
successorList
.size();
398
result.add(parent.blockIndexToRopLabel(
successorList
.get(i)));
422
newPred.
successorList
.add(index);
464
newSucc.
successorList
.add(other.index)
[
all
...]
/dalvik/dx/src/com/android/dx/ssa/back/
SsaToRop.java
298
IntList
successorList
= block.getRopLabelSuccessorList();
307
if (
successorList
.contains(exitRopLabel)) {
308
if (
successorList
.size() > 1) {
313
successorList
= IntList.EMPTY;
320
successorList
.setImmutable();
324
successorList
,
/external/dexmaker/src/dx/java/com/android/dx/ssa/back/
SsaToRop.java
299
IntList
successorList
= block.getRopLabelSuccessorList();
308
if (
successorList
.contains(exitRopLabel)) {
309
if (
successorList
.size() > 1) {
314
successorList
= IntList.EMPTY;
321
successorList
.setImmutable();
325
successorList
,
Completed in 60 milliseconds