Searched refs:primary (Results 1 - 5 of 5) sorted by relevance

/dalvik/dx/src/com/android/dx/cf/code/
H A DLocalsArraySet.java40 * The primary LocalsArray represents the locals as seen from
44 private final OneLocalsArray primary; field in class:LocalsArraySet
61 primary = new OneLocalsArray(maxLocals);
66 * Constructs an instance with the specified primary and secondaries set.
68 * @param primary {@code non-null;} primary locals to use
72 public LocalsArraySet(OneLocalsArray primary, argument
74 super(primary.getMaxLocals() > 0);
76 this.primary = primary;
[all...]
/dalvik/dx/src/com/android/dx/dex/code/
H A DStdCatchBuilder.java220 int primary = block.getPrimarySuccessor();
228 if (((primary == -1) && (succSize != catchSize))
229 || ((primary != -1) &&
231 || (primary != successors.get(catchSize))))) {
233 * Blocks that throw are supposed to list their primary
H A DRopTranslator.java273 * The block has a "primary successor" and that primary
323 * immediately follow it, giving top priority to the primary
336 * block as its primary successor, and so on, until we
379 * unordered successors (hopefully the primary), and so
396 int primary = one.getPrimarySuccessor();
404 } else if ((primary != preferred) && (primary >= 0)
405 && Bits.get(workSet, primary)) {
407 * The primary i
[all...]
/dalvik/dx/src/com/android/dx/command/dump/
H A DSsaDumper.java156 int primary = block.getPrimarySuccessorRopLabel();
166 if (szSuccLabels != 1 && primary == succLabelList.get(i)) {
H A DBlockDumper.java335 int primary = bb.getPrimarySuccessor();
341 if ((ssz != 1) && (succ == primary)) {

Completed in 66 milliseconds