/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/ |
D | AnalyzedInstruction.java | 54 protected final int instructionIndex; field in AnalyzedInstruction 88 public AnalyzedInstruction(Instruction instruction, int instructionIndex, int registerCount) { in AnalyzedInstruction() argument 91 this.instructionIndex = instructionIndex; in AnalyzedInstruction() 102 return instructionIndex; in getInstructionIndex() 177 if (predecessors.first().instructionIndex == -1) { in isBeginningInstruction() 211 verifiedInstructions.clear(instructionIndex); in mergeRegister() 288 verifiedInstructions.clear(instructionIndex); 393 if (instructionIndex < analyzedInstruction.instructionIndex) { 395 } else if (instructionIndex == analyzedInstruction.instructionIndex) {
|
D | MethodAnalyzer.java | 183 instructionsToAnalyze.set(successor.instructionIndex); in analyze() 331 return analyzedInstructions.keyAt(instruction.instructionIndex); 346 for (int instructionIndex=changedInstructions.nextSetBit(0); 347 instructionIndex>=0; 348 instructionIndex=changedInstructions.nextSetBit(instructionIndex+1)) { 350 changedInstructions.clear(instructionIndex); 352 … propagateRegisterToSuccessors(analyzedInstructions.valueAt(instructionIndex), registerNumber, 367 changedInstructions.set(analyzedInstruction.instructionIndex); 409 changedInstructions.set(successor.instructionIndex); 561 …nalyzedInstruction[] exceptionHandlersForSuccessor = exceptionHandlers[successor.instructionIndex]; [all …]
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/ |
D | InstructionOffsetMap.java | 94 private final int instructionIndex; field in InstructionOffsetMap.InvalidInstructionIndex 96 public InvalidInstructionIndex(int instructionIndex) { in InvalidInstructionIndex() argument 97 super("Instruction index out of bounds: %d", instructionIndex); in InvalidInstructionIndex() 98 this.instructionIndex = instructionIndex; in InvalidInstructionIndex() 102 return instructionIndex; in getInstructionIndex()
|
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/ |
D | TokenRewriteStream.cs | 109 public int instructionIndex; field in Antlr.Runtime.TokenRewriteStream.RewriteOperation 233 public virtual void Rollback( int instructionIndex ) in Rollback() argument 235 Rollback( DEFAULT_PROGRAM_NAME, instructionIndex ); in Rollback() 244 public virtual void Rollback( string programName, int instructionIndex ) in Rollback() argument 250 for ( int i = MIN_TOKEN_INDEX; i <= instructionIndex; i++ ) in Rollback() 308 op.instructionIndex = rewrites.Count; in InsertBefore() 340 op.instructionIndex = rewrites.Count; in Replace() 587 rewrites[iop.instructionIndex] = null; in ReduceToSingleOperationPerIndex() 593 rewrites[iop.instructionIndex] = null; in ReduceToSingleOperationPerIndex() 604 rewrites[prevRop.instructionIndex] = null; in ReduceToSingleOperationPerIndex() [all …]
|
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/ |
D | TokenRewriteStream.java | 92 protected int instructionIndex; field in TokenRewriteStream.RewriteOperation 187 public void rollback(int instructionIndex) { in rollback() argument 188 rollback(DEFAULT_PROGRAM_NAME, instructionIndex); in rollback() 195 public void rollback(String programName, int instructionIndex) { in rollback() argument 198 programs.put(programName, is.subList(MIN_TOKEN_INDEX,instructionIndex)); in rollback() 243 op.instructionIndex = rewrites.size(); in insertBefore() 269 op.instructionIndex = rewrites.size(); in replace() 472 rewrites.set(iop.instructionIndex, null); in reduceToSingleOperationPerIndex() 477 rewrites.set(iop.instructionIndex, null); in reduceToSingleOperationPerIndex() 486 rewrites.set(prevRop.instructionIndex, null); in reduceToSingleOperationPerIndex() [all …]
|
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/ |
D | TokenRewriteStream.cs | 104 public int instructionIndex; field in Antlr.Runtime.TokenRewriteStream.RewriteOperation 207 public virtual void Rollback(int instructionIndex) { in Rollback() argument 208 Rollback(DEFAULT_PROGRAM_NAME, instructionIndex); in Rollback() 217 public virtual void Rollback(string programName, int instructionIndex) { in Rollback() argument 221 for (int i = MIN_TOKEN_INDEX; i <= instructionIndex; i++) in Rollback() 271 op.instructionIndex = rewrites.Count; in InsertBefore() 297 op.instructionIndex = rewrites.Count; in Replace() 507 rewrites[iop.instructionIndex] = null; in ReduceToSingleOperationPerIndex() 516 rewrites[prevRop.instructionIndex] = null; in ReduceToSingleOperationPerIndex() 548 rewrites[prevIop.instructionIndex] = null; in ReduceToSingleOperationPerIndex()
|
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/util/ |
D | InstructionOffsetMapTest.java | 91 int instructionIndex = -1; in testInstructionOffsetMap() local 93 if (codeOffset == expectedOffsets[instructionIndex+1]) { in testInstructionOffsetMap() 95 instructionIndex++; in testInstructionOffsetMap() 98 Assert.assertEquals(instructionIndex, in testInstructionOffsetMap()
|
/external/antlr/antlr-3.4/runtime/Python/antlr3/ |
D | streams.py | 960 self.instructionIndex = None 1103 instructionIndex = args[1] 1106 instructionIndex = args[0] 1113 p[self.MIN_TOKEN_INDEX:instructionIndex]) 1164 op.instructionIndex = len(rewrites) 1205 op.instructionIndex = len(rewrites) 1405 rewrites[iop.instructionIndex] = None 1431 rewrites[prevRop.instructionIndex] = None
|
/external/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/ |
D | TokenRewriteStream.js | 152 instructionIndex; 156 instructionIndex = arguments[0]; 159 instructionIndex = arguments[1]; 163 programs[programName] = is.slice(trs.MIN_TOKEN_INDEX, this.instructionIndex);
|
/external/antlr/antlr-3.4/runtime/ObjC/Framework/ |
D | ANTLRTokenRewriteStream.h | 44 NSInteger instructionIndex; variable 50 @property (getter=getInstructionIndex, setter=setInstructionIndex:) NSInteger instructionIndex; 128 - (void) rollback:(NSInteger)instructionIndex;
|
D | ANTLRTokenRewriteStream.m | 45 @synthesize instructionIndex; 245 - (void) rollback:(NSInteger)instructionIndex 247 [self rollback:DEFAULT_PROGRAM_NAME Index:instructionIndex]; 251 * the indicated instruction (via instructionIndex) is no 319 op.instructionIndex = [rewrites count]; 355 op.instructionIndex = [rewrites count]; 575 [rewrites insertObject:nil atIndex:iop.instructionIndex]; 584 [rewrites setObject:nil atIndex:prevRop.instructionIndex]; 614 [rewrites setObject:nil atIndex:prevIop.instructionIndex];
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/ |
D | ANTLRTokenRewriteStream.h | 44 NSInteger instructionIndex; variable 50 @property (getter=getInstructionIndex, setter=setInstructionIndex:) NSInteger instructionIndex; 128 - (void) rollback:(NSInteger)instructionIndex;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/ |
D | ANTLRTokenRewriteStream.h | 44 NSInteger instructionIndex; variable 50 @property (getter=getInstructionIndex, setter=setInstructionIndex:) NSInteger instructionIndex; 128 - (void) rollback:(NSInteger)instructionIndex;
|
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/ |
D | ANTLRTokenRewriteStream.h | 44 NSInteger instructionIndex; variable 50 @property (getter=getInstructionIndex, setter=setInstructionIndex:) NSInteger instructionIndex; 128 - (void) rollback:(NSInteger)instructionIndex;
|
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/ |
D | TokenRewriteStream.as | 102 * the indicated instruction (via instructionIndex) is no 105 public function rollback(instructionIndex:int, programName:String = DEFAULT_PROGRAM_NAME):void { 108 programs[programName] = isn.slice(MIN_TOKEN_INDEX,instructionIndex); 133 op.instructionIndex = rewrites.length; 147 op.instructionIndex = rewrites.length; 327 rewrites[iop.instructionIndex] = null; // delete insert as it's a no-op. 335 rewrites[prevRop.instructionIndex] = null; // delete replace as it's a no-op. 364 rewrites[prevIop.instructionIndex] = null; // delete redundant prior insert 446 internal var instructionIndex:int;
|
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/ |
D | MutableMethodImplementation.java | 520 public Label newLabelForIndex(int instructionIndex) { 521 if (instructionIndex < 0 || instructionIndex >= instructionList.size()) { 522 …w IndexOutOfBoundsException(String.format("instruction index %d out of bounds", instructionIndex)); 524 MethodLocation referent = instructionList.get(instructionIndex);
|
/external/antlr/antlr-3.4/lib/ |
D | antlr-3.4-complete.jar | META-INF/
META-INF/MANIFEST.MF
org/
org/antlr/
org/ ... |