OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:methodAnalyzer
(Results
1 - 6
of
6
) sorted by null
/external/smali/dexlib2/src/test/java/org/jf/dexlib2/analysis/
CustomMethodInlineTableTest.java
75
MethodAnalyzer
methodAnalyzer
= new
MethodAnalyzer
(classPath, method, inlineMethodResolver, false);
77
Instruction deodexedInstruction =
methodAnalyzer
.getInstructions().get(0);
102
MethodAnalyzer
methodAnalyzer
= new
MethodAnalyzer
(classPath, method, inlineMethodResolver, false);
104
Instruction deodexedInstruction =
methodAnalyzer
.getInstructions().get(0);
129
MethodAnalyzer
methodAnalyzer
= new MethodAnalyzer(classPath, method, inlineMethodResolver, false)
[
all
...]
/external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
PreInstructionRegisterInfoMethodItem.java
33
import org.jf.dexlib2.analysis.
MethodAnalyzer
;
44
@Nonnull private final
MethodAnalyzer
methodAnalyzer
;
49
@Nonnull
MethodAnalyzer
methodAnalyzer
,
55
this.
methodAnalyzer
=
methodAnalyzer
;
170
int parameterRegisterCount =
methodAnalyzer
.getParamRegisterCount();
195
writer.printUnsignedLongAsHex(
methodAnalyzer
.getInstructionAddress(predecessor));
MethodDefinition.java
42
import org.jf.dexlib2.analysis.
MethodAnalyzer
;
463
MethodAnalyzer
methodAnalyzer
= new
MethodAnalyzer
(classDef.options.classPath, method,
466
AnalysisException analysisException =
methodAnalyzer
.getAnalysisException();
475
List<AnalyzedInstruction> instructions =
methodAnalyzer
.getAnalyzedInstructions();
517
methodAnalyzer
, registerFormatter, instruction, currentCodeAddress));
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/analysis/
AnalyzedInstruction.java
49
* The
MethodAnalyzer
containing this instruction
52
protected final
MethodAnalyzer
methodAnalyzer
;
97
public AnalyzedInstruction(
MethodAnalyzer
methodAnalyzer
, Instruction instruction, int instructionIndex,
99
this.
methodAnalyzer
=
methodAnalyzer
;
373
MethodAnalyzer
.canNarrowAfterInstanceOf(previousInstruction, this,
methodAnalyzer
.getClassPath())) {
/external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliMethod.java
54
import org.jf.dexlib2.analysis.
MethodAnalyzer
;
312
private
MethodAnalyzer
methodAnalyzer
= null;
315
public
MethodAnalyzer
getMethodAnalyzer() {
316
if (
methodAnalyzer
== null) {
327
methodAnalyzer
= new
MethodAnalyzer
(classPath, new SmalideaMethod(SmaliMethod.this), null, false);
329
methodAnalyzer
= null;
333
return
methodAnalyzer
;
338
methodAnalyzer
= null
[
all
...]
/prebuilts/tools/common/m2/repository/org/smali/dexlib2/2.1.3/
dexlib2-2.1.3.jar
Completed in 368 milliseconds