OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:instructionIndex
(Results
1 - 19
of
19
) sorted by null
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
AnalyzedInstruction.java
48
protected final int
instructionIndex
;
83
public AnalyzedInstruction(Instruction instruction, int
instructionIndex
, int registerCount) {
86
this.
instructionIndex
=
instructionIndex
;
97
return
instructionIndex
;
165
if (predecessors.first().
instructionIndex
== -1) {
192
verifiedInstructions.clear(
instructionIndex
);
333
//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?
334
if (
instructionIndex
< analyzedInstruction.
instructionIndex
) {
[
all
...]
MethodAnalyzer.java
189
instructionsToAnalyze.set(successor.
instructionIndex
);
314
instructionsToVerify.set(successor.
instructionIndex
);
418
return instructions.keyAt(instruction.
instructionIndex
);
445
for (int
instructionIndex
=changedInstructions.nextSetBit(0);
446
instructionIndex
>=0;
447
instructionIndex
=changedInstructions.nextSetBit(
instructionIndex
+1)) {
449
changedInstructions.clear(
instructionIndex
);
451
propagateRegisterToSuccessors(instructions.valueAt(
instructionIndex
), registerNumber,
472
changedInstructions.set(successor.
instructionIndex
);
[
all
...]
/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/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/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/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
;
/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/dexlib/src/main/java/org/jf/dexlib/
CodeItem.java
504
int
instructionIndex
= 0;
511
instructionIndex
= i;
534
instructions[
instructionIndex
] = replacementInstruction;
[
all
...]
/external/antlr/antlr-3.4/lib/
antlr-3.4-complete.jar
/prebuilts/misc/common/antlr/
antlr-3.4-complete.jar
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
Antlr.Runtime.pas
[
all
...]
/prebuilts/sdk/tools/lib/
lombok-ast-0.2.jar
/prebuilts/tools/common/lombok-ast/
lombok-ast-0.2.1.jar
lombok-ast-0.2.jar
Completed in 1969 milliseconds