OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:instruction
(Results
126 - 150
of
327
) sorted by null
1
2
3
4
5
6
7
8
9
10
11
>>
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/builder/instruction/
BuilderSwitchElement.java
1
package org.jf.dexlib2.builder.
instruction
;
5
import org.jf.dexlib2.iface.
instruction
.SwitchElement;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction20bc.java
32
package org.jf.dexlib2.dexbacked.
instruction
;
38
import org.jf.dexlib2.iface.
instruction
.formats.Instruction20bc;
DexBackedInstruction21ih.java
32
package org.jf.dexlib2.dexbacked.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction21ih;
DexBackedInstruction22b.java
32
package org.jf.dexlib2.dexbacked.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction22b;
DexBackedInstruction22c.java
32
package org.jf.dexlib2.dexbacked.
instruction
;
37
import org.jf.dexlib2.iface.
instruction
.formats.Instruction22c;
DexBackedInstruction22s.java
32
package org.jf.dexlib2.dexbacked.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction22s;
DexBackedInstruction35c.java
32
package org.jf.dexlib2.dexbacked.
instruction
;
37
import org.jf.dexlib2.iface.
instruction
.formats.Instruction35c;
DexBackedInstruction35mi.java
32
package org.jf.dexlib2.dexbacked.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction35mi;
DexBackedInstruction35ms.java
32
package org.jf.dexlib2.dexbacked.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction35ms;
DexBackedInstruction3rc.java
32
package org.jf.dexlib2.dexbacked.
instruction
;
37
import org.jf.dexlib2.iface.
instruction
.formats.Instruction3rc;
DexBackedPackedSwitchPayload.java
32
package org.jf.dexlib2.dexbacked.
instruction
;
37
import org.jf.dexlib2.iface.
instruction
.SwitchElement;
38
import org.jf.dexlib2.iface.
instruction
.formats.PackedSwitchPayload;
DexBackedSparseSwitchPayload.java
32
package org.jf.dexlib2.dexbacked.
instruction
;
37
import org.jf.dexlib2.iface.
instruction
.SwitchElement;
38
import org.jf.dexlib2.iface.
instruction
.formats.SparseSwitchPayload;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/iface/instruction/
FiveRegisterInstruction.java
32
package org.jf.dexlib2.iface.
instruction
;
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/instruction/
ImmutableArrayPayload.java
32
package org.jf.dexlib2.immutable.
instruction
;
37
import org.jf.dexlib2.iface.
instruction
.formats.ArrayPayload;
67
public static ImmutableArrayPayload of(ArrayPayload
instruction
) {
68
if (
instruction
instanceof ImmutableArrayPayload) {
69
return (ImmutableArrayPayload)
instruction
;
72
instruction
.getElementWidth(),
73
instruction
.getArrayElements());
ImmutableInstruction.java
32
package org.jf.dexlib2.immutable.
instruction
;
37
import org.jf.dexlib2.iface.
instruction
.
Instruction
;
38
import org.jf.dexlib2.iface.
instruction
.formats.*;
44
public abstract class ImmutableInstruction implements
Instruction
{
53
public static ImmutableInstruction of(
Instruction
instruction
) {
54
if (
instruction
instanceof ImmutableInstruction) {
55
return (ImmutableInstruction)
instruction
;
58
switch (
instruction
.getOpcode().format)
[
all
...]
ImmutableInstruction10t.java
32
package org.jf.dexlib2.immutable.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction10t;
52
public static ImmutableInstruction10t of(Instruction10t
instruction
) {
53
if (
instruction
instanceof ImmutableInstruction10t) {
54
return (ImmutableInstruction10t)
instruction
;
57
instruction
.getOpcode(),
58
instruction
.getCodeOffset());
ImmutableInstruction11n.java
32
package org.jf.dexlib2.immutable.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction11n;
55
public static ImmutableInstruction11n of(Instruction11n
instruction
) {
56
if (
instruction
instanceof ImmutableInstruction11n) {
57
return (ImmutableInstruction11n)
instruction
;
60
instruction
.getOpcode(),
61
instruction
.getRegisterA(),
62
instruction
.getNarrowLiteral());
ImmutableInstruction11x.java
32
package org.jf.dexlib2.immutable.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction11x;
52
public static ImmutableInstruction11x of(Instruction11x
instruction
) {
53
if (
instruction
instanceof ImmutableInstruction11x) {
54
return (ImmutableInstruction11x)
instruction
;
57
instruction
.getOpcode(),
58
instruction
.getRegisterA());
ImmutableInstruction12x.java
32
package org.jf.dexlib2.immutable.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction12x;
55
public static ImmutableInstruction12x of(Instruction12x
instruction
) {
56
if (
instruction
instanceof ImmutableInstruction12x) {
57
return (ImmutableInstruction12x)
instruction
;
60
instruction
.getOpcode(),
61
instruction
.getRegisterA(),
62
instruction
.getRegisterB());
ImmutableInstruction20bc.java
32
package org.jf.dexlib2.immutable.
instruction
;
37
import org.jf.dexlib2.iface.
instruction
.formats.Instruction20bc;
59
public static ImmutableInstruction20bc of(Instruction20bc
instruction
) {
60
if (
instruction
instanceof ImmutableInstruction20bc) {
61
return (ImmutableInstruction20bc)
instruction
;
64
instruction
.getOpcode(),
65
instruction
.getVerificationError(),
66
instruction
.getReference());
ImmutableInstruction20t.java
32
package org.jf.dexlib2.immutable.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction20t;
52
public static ImmutableInstruction20t of(Instruction20t
instruction
) {
53
if (
instruction
instanceof ImmutableInstruction20t) {
54
return (ImmutableInstruction20t)
instruction
;
57
instruction
.getOpcode(),
58
instruction
.getCodeOffset());
ImmutableInstruction21c.java
32
package org.jf.dexlib2.immutable.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction21c;
58
public static ImmutableInstruction21c of(Instruction21c
instruction
) {
59
if (
instruction
instanceof ImmutableInstruction21c) {
60
return (ImmutableInstruction21c)
instruction
;
63
instruction
.getOpcode(),
64
instruction
.getRegisterA(),
65
instruction
.getReference());
ImmutableInstruction21ih.java
32
package org.jf.dexlib2.immutable.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction21ih;
55
public static ImmutableInstruction21ih of(Instruction21ih
instruction
) {
56
if (
instruction
instanceof ImmutableInstruction21ih) {
57
return (ImmutableInstruction21ih)
instruction
;
60
instruction
.getOpcode(),
61
instruction
.getRegisterA(),
62
instruction
.getNarrowLiteral());
ImmutableInstruction21lh.java
32
package org.jf.dexlib2.immutable.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction21lh;
55
public static ImmutableInstruction21lh of(Instruction21lh
instruction
) {
56
if (
instruction
instanceof ImmutableInstruction21lh) {
57
return (ImmutableInstruction21lh)
instruction
;
60
instruction
.getOpcode(),
61
instruction
.getRegisterA(),
62
instruction
.getWideLiteral());
ImmutableInstruction21s.java
32
package org.jf.dexlib2.immutable.
instruction
;
36
import org.jf.dexlib2.iface.
instruction
.formats.Instruction21s;
55
public static ImmutableInstruction21s of(Instruction21s
instruction
) {
56
if (
instruction
instanceof ImmutableInstruction21s) {
57
return (ImmutableInstruction21s)
instruction
;
60
instruction
.getOpcode(),
61
instruction
.getRegisterA(),
62
instruction
.getNarrowLiteral());
Completed in 277 milliseconds
1
2
3
4
5
6
7
8
9
10
11
>>