HomeSort by relevance Sort by last modified time
    Searched refs:SmaliMethod (Results 1 - 25 of 38) sorted by null

1 2

  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/stub/element/
SmaliMethodElementType.java 40 import org.jf.smalidea.psi.impl.SmaliMethod;
45 public class SmaliMethodElementType extends SmaliStubElementType<SmaliMethodStub, SmaliMethod> {
56 @Override public SmaliMethod createPsi(@NotNull SmaliMethodStub stub) {
57 return new SmaliMethod(stub);
60 @Override public SmaliMethod createPsi(@NotNull ASTNode node) {
61 return new SmaliMethod(node);
64 @Override public SmaliMethodStub createStub(@NotNull SmaliMethod psi, StubElement parentStub) {
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/impl/
SmaliRegisterReference.java 50 public SmaliMethod getParentMethod() {
51 SmaliMethod parentMethod = findAncestorByClass(SmaliMethod.class);
60 SmaliMethod method = getParentMethod();
SmaliRegistersStatement.java 51 private SmaliMethod getParentMethod() {
52 return findAncestorByClass(SmaliMethod.class);
65 SmaliMethod parentMethod = getParentMethod();
SmaliLabelReference.java 72 SmaliMethod method = findAncestorByClass(SmaliMethod.class);
SmaliMethodParameter.java 153 @NotNull public SmaliMethod getParentMethod() {
154 SmaliMethod smaliMethod = findStubOrPsiAncestorOfType(SmaliMethod.class);
155 assert smaliMethod != null;
156 return smaliMethod;
177 SmaliMethod parentMethod = getParentMethod();
184 SmaliMethod parentMethod = getParentMethod();
  /external/smali/smalidea/src/main/java/org/jf/smalidea/debugging/value/
LazyBooleanValue.java 36 import org.jf.smalidea.psi.impl.SmaliMethod;
39 public LazyBooleanValue(SmaliMethod method, Project project, int registerNumber, String type) {
LazyByteValue.java 36 import org.jf.smalidea.psi.impl.SmaliMethod;
39 public LazyByteValue(SmaliMethod method, Project project, int registerNumber, String type) {
LazyCharValue.java 36 import org.jf.smalidea.psi.impl.SmaliMethod;
39 public LazyCharValue(SmaliMethod method, Project project, int registerNumber, String type) {
LazyDoubleValue.java 36 import org.jf.smalidea.psi.impl.SmaliMethod;
39 public LazyDoubleValue(SmaliMethod method, Project project, int registerNumber, String type) {
LazyFloatValue.java 36 import org.jf.smalidea.psi.impl.SmaliMethod;
39 public LazyFloatValue(SmaliMethod method, Project project, int registerNumber, String type) {
LazyIntegerValue.java 36 import org.jf.smalidea.psi.impl.SmaliMethod;
39 public LazyIntegerValue(SmaliMethod method, Project project, int registerNumber, String type) {
LazyLongValue.java 36 import org.jf.smalidea.psi.impl.SmaliMethod;
39 public LazyLongValue(SmaliMethod method, Project project, int registerNumber, String type) {
LazyShortValue.java 36 import org.jf.smalidea.psi.impl.SmaliMethod;
39 public LazyShortValue(SmaliMethod method, Project project, int registerNumber, String type) {
LazyStringReference.java 36 import org.jf.smalidea.psi.impl.SmaliMethod;
39 public LazyStringReference(SmaliMethod method, Project project, int registerNumber, String type) {
LazyVoidValue.java 36 import org.jf.smalidea.psi.impl.SmaliMethod;
39 public LazyVoidValue(SmaliMethod method, Project project, int registerNumber, String type) {
LazyClassLoaderReference.java 37 import org.jf.smalidea.psi.impl.SmaliMethod;
43 public LazyClassLoaderReference(SmaliMethod method, Project project, int registerNumber, String type) {
LazyClassObjectReference.java 37 import org.jf.smalidea.psi.impl.SmaliMethod;
41 public LazyClassObjectReference(SmaliMethod method, Project project, int registerNumber, String type) {
LazyComparablePrimitiveValue.java 36 import org.jf.smalidea.psi.impl.SmaliMethod;
40 public LazyComparablePrimitiveValue(SmaliMethod method, Project project, int registerNumber, String type) {
LazyPrimitiveValue.java 36 import org.jf.smalidea.psi.impl.SmaliMethod;
39 public LazyPrimitiveValue(SmaliMethod method, Project project, int registerNumber, String type) {
LazyThreadGroupReference.java 37 import org.jf.smalidea.psi.impl.SmaliMethod;
44 public LazyThreadGroupReference(SmaliMethod method, Project project, int registerNumber, String type) {
LazyArrayReference.java 39 import org.jf.smalidea.psi.impl.SmaliMethod;
44 public LazyArrayReference(SmaliMethod method, Project project, int registerNumber, String type) {
  /external/smali/smalidea/src/main/java/org/jf/smalidea/psi/stub/
SmaliMethodStub.java 38 import org.jf.smalidea.psi.impl.SmaliMethod;
42 public class SmaliMethodStub extends StubBase<SmaliMethod> {
SmaliModifierListStub.java 36 import org.jf.smalidea.psi.impl.SmaliMethod;
39 public class SmaliModifierListStub extends StubBase<SmaliMethod> {
  /external/smali/smalidea/src/main/java/org/jf/smalidea/util/
InstructionUtils.java 40 import org.jf.smalidea.psi.impl.SmaliMethod;
46 @NotNull SmaliMethod method, @NotNull Opcode opcode, int targetOffset) {
  /external/smali/smalidea/src/test/java/org/jf/smalidea/
SmaliMethodTest.java 58 SmaliMethod methodElement = (SmaliMethod)leafElement.getParent();
78 SmaliMethod methodElement = (SmaliMethod)leafElement.getParent();
95 SmaliMethod smaliMethod = smaliClass.getMethods()[0];
97 Assert.assertEquals(127, smaliMethod.getRegisterCount());
98 Assert.assertEquals(4, smaliMethod.getParameterRegisterCount());
100 Assert.assertEquals(0, smaliMethod.getParameterList().getParameters()[0].getParameterRegisterNumber());
101 Assert.assertEquals(123, smaliMethod.getParameterList().getParameters()[0].getRegisterNumber())
    [all...]

Completed in 465 milliseconds

1 2