HomeSort by relevance Sort by last modified time
    Searched full:instructionindex (Results 1 - 22 of 22) sorted by null

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/util/
InstructionOffsetMap.java 94 private final int instructionIndex;
96 public InvalidInstructionIndex(int instructionIndex) {
97 super("Instruction index out of bounds: %d", instructionIndex);
98 this.instructionIndex = instructionIndex;
102 return instructionIndex;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
AnalyzedInstruction.java 54 protected final int instructionIndex;
88 public AnalyzedInstruction(Instruction instruction, int instructionIndex, int registerCount) {
91 this.instructionIndex = instructionIndex;
102 return instructionIndex;
177 if (predecessors.first().instructionIndex == -1) {
211 verifiedInstructions.clear(instructionIndex);
288 verifiedInstructions.clear(instructionIndex);
393 if (instructionIndex < analyzedInstruction.instructionIndex) {
    [all...]
MethodAnalyzer.java 183 instructionsToAnalyze.set(successor.instructionIndex);
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);
    [all...]
  /external/smali/dexlib2/src/test/java/org/jf/dexlib2/util/
InstructionOffsetMapTest.java 91 int instructionIndex = -1;
93 if (codeOffset == expectedOffsets[instructionIndex+1]) {
95 instructionIndex++;
98 Assert.assertEquals(instructionIndex,
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
TokenRewriteStream.cs 109 public int instructionIndex;
233 public virtual void Rollback( int instructionIndex )
235 Rollback( DEFAULT_PROGRAM_NAME, instructionIndex );
240 * the indicated instruction (via instructionIndex) is no
244 public virtual void Rollback( string programName, int instructionIndex )
250 for ( int i = MIN_TOKEN_INDEX; i <= instructionIndex; i++ )
308 op.instructionIndex = rewrites.Count;
340 op.instructionIndex = rewrites.Count;
587 rewrites[iop.instructionIndex] = null;
593 rewrites[iop.instructionIndex] = null
    [all...]
  /external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
TokenRewriteStream.java 92 protected int instructionIndex;
187 public void rollback(int instructionIndex) {
188 rollback(DEFAULT_PROGRAM_NAME, instructionIndex);
192 * the indicated instruction (via instructionIndex) is no
195 public void rollback(String programName, int instructionIndex) {
198 programs.put(programName, is.subList(MIN_TOKEN_INDEX,instructionIndex));
243 op.instructionIndex = rewrites.size();
269 op.instructionIndex = rewrites.size();
472 rewrites.set(iop.instructionIndex, null);
477 rewrites.set(iop.instructionIndex, null)
    [all...]
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
ANTLRTokenRewriteStream.h 44 NSInteger instructionIndex;
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/
ANTLRTokenRewriteStream.h 44 NSInteger instructionIndex;
50 @property (getter=getInstructionIndex, setter=setInstructionIndex:) NSInteger instructionIndex;
128 - (void) rollback:(NSInteger)instructionIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
ANTLRTokenRewriteStream.h 44 NSInteger instructionIndex;
50 @property (getter=getInstructionIndex, setter=setInstructionIndex:) NSInteger instructionIndex;
128 - (void) rollback:(NSInteger)instructionIndex;
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ANTLRTokenRewriteStream.h 44 NSInteger instructionIndex;
50 @property (getter=getInstructionIndex, setter=setInstructionIndex:) NSInteger instructionIndex;
128 - (void) rollback:(NSInteger)instructionIndex;
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/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
TokenRewriteStream.cs 104 public int instructionIndex;
207 public virtual void Rollback(int instructionIndex) {
208 Rollback(DEFAULT_PROGRAM_NAME, instructionIndex);
213 * the indicated instruction (via instructionIndex) is no
217 public virtual void Rollback(string programName, int instructionIndex) {
221 for (int i = MIN_TOKEN_INDEX; i <= instructionIndex; i++)
271 op.instructionIndex = rewrites.Count;
297 op.instructionIndex = rewrites.Count;
507 rewrites[iop.instructionIndex] = null;
516 rewrites[prevRop.instructionIndex] = null
    [all...]
  /external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
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/antlr/antlr-3.4/runtime/JavaScript/src/org/antlr/runtime/
TokenRewriteStream.js 147 * the indicated instruction (via instructionIndex) is no
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/Python/antlr3/
streams.py 960 self.instructionIndex = None
1097 the indicated instruction (via instructionIndex) is no
1103 instructionIndex = args[1]
1106 instructionIndex = args[0]
1113 p[self.MIN_TOKEN_INDEX:instructionIndex])
    [all...]
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/
MutableMethodImplementation.java 520 public Label newLabelForIndex(int instructionIndex) {
521 if (instructionIndex < 0 || instructionIndex >= instructionList.size()) {
522 throw new IndexOutOfBoundsException(String.format("instruction index %d out of bounds", instructionIndex));
524 MethodLocation referent = instructionList.get(instructionIndex);
    [all...]
  /external/v8/src/crankshaft/
lithium-allocator.cc     [all...]
lithium-allocator.h 51 int InstructionIndex() const {
  /external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas     [all...]
  /prebuilts/tools/common/m2/repository/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr-runtime/3.5.2/
antlr-runtime-3.5.2.jar 
  /prebuilts/tools/common/m2/repository/org/parboiled/parboiled-java/1.0.2/
parboiled-java-1.0.2.jar 

Completed in 1038 milliseconds