Searched defs:instructionIndex (Results 1 - 10 of 10) sorted by relevance

/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Headers/
H A DANTLRTokenRewriteStream.h44 NSInteger instructionIndex; variable
50 @property (getter=getInstructionIndex, setter=setInstructionIndex:) NSInteger instructionIndex; variable
128 - (void) rollback:(NSInteger)instructionIndex;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/A/Headers/
H A DANTLRTokenRewriteStream.h44 NSInteger instructionIndex; variable
50 @property (getter=getInstructionIndex, setter=setInstructionIndex:) NSInteger instructionIndex; variable
128 - (void) rollback:(NSInteger)instructionIndex;
/external/antlr/antlr-3.4/runtime/ObjC/ANTLR.framework/Versions/Current/Headers/
H A DANTLRTokenRewriteStream.h44 NSInteger instructionIndex; variable
50 @property (getter=getInstructionIndex, setter=setInstructionIndex:) NSInteger instructionIndex; variable
128 - (void) rollback:(NSInteger)instructionIndex;
/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DANTLRTokenRewriteStream.h44 NSInteger instructionIndex; variable
50 @property (getter=getInstructionIndex, setter=setInstructionIndex:) NSInteger instructionIndex; variable
128 - (void) rollback:(NSInteger)instructionIndex;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DTokenRewriteStream.cs104 public int instructionIndex; field in class:Antlr.Runtime.TokenRewriteStream.RewriteOperation
207 public virtual void Rollback(int instructionIndex) { argument
208 Rollback(DEFAULT_PROGRAM_NAME, instructionIndex);
213 * the indicated instruction (via instructionIndex) is no
217 public virtual void Rollback(string programName, int instructionIndex) { argument
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]
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DTokenRewriteStream.cs109 public int instructionIndex; field in class:Antlr.Runtime.TokenRewriteStream.RewriteOperation
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]
[all...]
/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/
H A DTokenRewriteStream.java92 protected int instructionIndex; field in class:TokenRewriteStream.RewriteOperation
187 public void rollback(int instructionIndex) { argument
188 rollback(DEFAULT_PROGRAM_NAME, instructionIndex);
192 * the indicated instruction (via instructionIndex) is no
195 public void rollback(String programName, int instructionIndex) { argument
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, nul
[all...]
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DAnalyzedInstruction.java48 protected final int instructionIndex; field in class:AnalyzedInstruction
83 public AnalyzedInstruction(Instruction instruction, int instructionIndex, int registerCount) { argument
86 this.instructionIndex = instructionIndex;
97 return instructionIndex;
165 if (predecessors.first().instructionIndex == -1) {
192 verifiedInstructions.clear(instructionIndex);
335 //TODO: out of curiosity, check the disassembly of this to see if it retrieves the value of analyzedInstruction.instructionIndex for every access. It should, because the field is final. What about if we set the field to non-final?
336 if (instructionIndex < analyzedInstruction.instructionIndex) {
[all...]
/external/compiler-rt/lib/interception/mach_override/
H A Dmach_override.c779 int instructionIndex = 0; local
806 if (originalInstructionSizes) originalInstructionSizes[instructionIndex] = eaten;
807 instructionIndex += 1;
808 if (originalInstructionCount) *originalInstructionCount = instructionIndex;
/external/antlr/antlr-3.4/lib/
H A Dantlr-3.4-complete.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/antlr/ org/antlr/analysis/ org/antlr/codegen/ org/ ...

Completed in 210 milliseconds