HomeSort by relevance Sort by last modified time
    Searched full:referencetype (Results 1 - 25 of 224) sorted by null

1 2 3 4 5 6 7 8 9

  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/
ReferenceType.java 37 public final class ReferenceType {
44 public static String toString(int referenceType) {
45 switch (referenceType) {
55 throw new InvalidReferenceTypeException(referenceType);
78 public static void validateReferenceType(int referenceType) {
79 if (referenceType < 0 || referenceType > 3) {
80 throw new InvalidReferenceTypeException(referenceType);
85 private final int referenceType;
87 public InvalidReferenceTypeException(int referenceType) {
    [all...]
Opcode.java 36 NOP((short)0x00, "nop", ReferenceType.NONE, Format.Format10x, Opcode.CAN_CONTINUE),
37 MOVE((short)0x01, "move", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
38 MOVE_FROM16((short)0x02, "move/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
39 MOVE_16((short)0x03, "move/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
40 MOVE_WIDE((short)0x04, "move-wide", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
41 MOVE_WIDE_FROM16((short)0x05, "move-wide/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
42 MOVE_WIDE_16((short)0x06, "move-wide/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
43 MOVE_OBJECT((short)0x07, "move-object", ReferenceType.NONE, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
44 MOVE_OBJECT_FROM16((short)0x08, "move-object/from16", ReferenceType.NONE, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
45 MOVE_OBJECT_16((short)0x09, "move-object/16", ReferenceType.NONE, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER)
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/res/
ResourceReferenceResolver.java 11 private String referenceType;
14 ResourceReferenceResolver(String referenceType) {
15 this(referenceType, new String[] { referenceType });
18 ResourceReferenceResolver(String referenceType, String[] allowedReferenceTypesForRawValues) {
19 this.referenceType = referenceType;
28 String valuePointer = referenceType + "/" + name;
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/reference/
DexBackedReference.java 34 import org.jf.dexlib2.ReferenceType;
42 public static Reference makeReference(@Nonnull DexBackedDexFile dexFile, int referenceType, int referenceIndex) {
43 switch (referenceType) {
44 case ReferenceType.STRING:
46 case ReferenceType.TYPE:
48 case ReferenceType.METHOD:
50 case ReferenceType.FIELD:
53 throw new ExceptionWithContext("Invalid reference type: %d", referenceType);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/immutable/reference/
ImmutableReferenceFactory.java 34 import org.jf.dexlib2.ReferenceType;
59 public static ImmutableReference of(int referenceType, Reference reference) {
60 switch (referenceType) {
61 case ReferenceType.STRING:
63 case ReferenceType.TYPE:
65 case ReferenceType.FIELD:
67 case ReferenceType.METHOD:
70 throw new ExceptionWithContext("Invalid reference type: %d", referenceType);
  /external/llvm/lib/Target/AArch64/Disassembler/
AArch64ExternalSymbolizer.cpp 71 uint64_t ReferenceType;
76 ReferenceType = LLVMDisassembler_ReferenceType_In_Branch;
77 const char *Name = SymbolLookUp(DisInfo, Address + Value, &ReferenceType,
86 if (ReferenceType == LLVMDisassembler_ReferenceType_Out_SymbolStub)
88 else if (ReferenceType ==
92 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_ADRP;
100 SymbolLookUp(DisInfo, EncodedInst, &ReferenceType, Address,
109 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_ADDXri;
111 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_LDRXui;
113 ReferenceType = LLVMDisassembler_ReferenceType_In_ARM64_LDRXl
    [all...]
  /external/smali/baksmali/src/main/java/org/jf/baksmali/Adaptors/
ReferenceFormatter.java 31 import org.jf.dexlib2.ReferenceType;
46 public static void writeReference(IndentingWriter writer, int referenceType,
48 switch (referenceType) {
49 case ReferenceType.STRING:
52 case ReferenceType.TYPE:
55 case ReferenceType.METHOD:
58 case ReferenceType.FIELD:
SyntheticAccessCommentMethodItem.java 31 import org.jf.dexlib2.ReferenceType;
112 int referenceType;
114 referenceType = ReferenceType.METHOD;
116 referenceType = ReferenceType.FIELD;
118 ReferenceFormatter.writeReference(writer, referenceType, accessedMember.accessedMember);
  /external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/instruction/
DexBackedInstruction20bc.java 35 import org.jf.dexlib2.ReferenceType;
55 int referenceType = getReferenceType();
56 return DexBackedReference.makeReference(dexFile, referenceType, dexFile.readUshort(instructionStart + 2));
60 int referenceType = (dexFile.readUbyte(instructionStart + 1) >>> 6) + 1;
61 ReferenceType.validateReferenceType(referenceType);
62 return referenceType;
  /external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/threegpp26244/
SegmentIndexBox.java 176 byte referenceType;
186 public Entry(byte referenceType, int referencedSize, long subsegmentDuration, byte startsWithSap, byte sapType, int sapDeltaTime) {
187 this.referenceType = referenceType;
196 return referenceType;
199 public void setReferenceType(byte referenceType) {
200 this.referenceType = referenceType;
246 "referenceType=" + referenceType
    [all...]
  /external/llvm/lib/MC/
MCExternalSymbolizer.cpp 59 uint64_t ReferenceType;
61 ReferenceType = LLVMDisassembler_ReferenceType_In_Branch;
63 ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
65 const char *Name = SymbolLookUp(DisInfo, Value, &ReferenceType, Address,
71 if(ReferenceType == LLVMDisassembler_ReferenceType_DeMangled_Name)
78 if(ReferenceType == LLVMDisassembler_ReferenceType_Out_SymbolStub)
80 else if(ReferenceType == LLVMDisassembler_ReferenceType_Out_Objc_Message)
157 uint64_t ReferenceType = LLVMDisassembler_ReferenceType_In_PCrel_Load;
159 (void)SymbolLookUp(DisInfo, Value, &ReferenceType, Address, &ReferenceName);
160 if(ReferenceType == LLVMDisassembler_ReferenceType_Out_LitPool_SymAddr
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/ReferenceType/
GetValues004Test.java 26 package org.apache.harmony.jpda.tests.jdwp.ReferenceType;
38 * JDWP Unit test for ReferenceType.GetValues command for field from another class.
42 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/GetValues004Debuggee;";
43 static final String anotherClassSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/RFGetValues004AnotherClass;";
46 return "org.apache.harmony.jpda.tests.jdwp.ReferenceType.GetValues004Debuggee";
50 * This testcase exercises ReferenceType.GetValues command for field from another class.
52 * ReferenceType.GetValues command runs correctly for field declaring
59 logWriter.println("==> " + thisTestName + " for ReferenceType.GetValues command: START...");
111 ("\n=> CHECK ReferenceType::GetValues command for debuggeeRefTypeID, anotherClassCheckedFieldID...");
123 checkReplyPacket(getValuesReply, "ReferenceType::GetValues command", JDWPConstants.Error.INVALID_FIELDID)
    [all...]
InterfacesTest.java 26 package org.apache.harmony.jpda.tests.jdwp.ReferenceType;
36 * JDWP Unit test for ReferenceType.Interfaces command.
42 static final String thisCommandName = "ReferenceType.Interfaces command";
43 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/InterfacesDebuggee;";
46 return "org.apache.harmony.jpda.tests.jdwp.ReferenceType.InterfacesDebuggee";
50 * This testcase exercises ReferenceType.Interfaces command.
53 * performs ReferenceType.Interfaces command and checks that returned
61 String checkedClassSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/CheckedClass_Interfaces001;";
65 logWriter.println("=> Checked class = org.apache.harmony.jpda.tests.jdwp.ReferenceType.CheckedClass_Interfaces001");
82 "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/Interface_1_Interfaces001;"
    [all...]
ClassObjectTest.java 26 package org.apache.harmony.jpda.tests.jdwp.ReferenceType;
36 * JDWP Unit test for ReferenceType.ClassObject command.
42 static final String thisCommandName = "ReferenceType.ClassObject command";
43 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/ClassObjectDebuggee;";
46 return "org.apache.harmony.jpda.tests.jdwp.ReferenceType.ClassObjectDebuggee";
50 * This testcase exercises ReferenceType.ClassObject command.
53 * performs ReferenceType.ClassObject command and checks that returned
68 = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/ClassObjectDebuggee_ExtraClass;";
96 checkReplyPacket(referenceTypeReply, "ObjectReference::ReferenceType command");
114 checkReplyPacket(signatureReply, "ReferenceType::Signature command")
    [all...]
GetValues003Test.java 26 package org.apache.harmony.jpda.tests.jdwp.ReferenceType;
38 * JDWP Unit test for ReferenceType.GetValues command for field of super class.
42 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/GetValues003Debuggee;";
43 static final String chekedClassSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/RFGetValues003CheckedClass;";
46 return "org.apache.harmony.jpda.tests.jdwp.ReferenceType.GetValues003Debuggee";
50 * This testcase exercises ReferenceType.GetValues command for field of super class.
52 * ReferenceType.GetValues command runs correctly for field declaring
58 logWriter.println("==> " + thisTestName + " for ReferenceType.GetValues command: START...");
110 ("\n=> CHECK ReferenceType::GetValues command for chekedClassRefTypeID, superClassCheckedFieldID...");
118 checkReplyPacket(getValuesReply, "ReferenceType::GetValues command")
    [all...]
NestedTypesTest.java 26 package org.apache.harmony.jpda.tests.jdwp.ReferenceType;
37 * JDWP Unit test for ReferenceType.NestedTypes command.
43 static final String thisCommandName = "ReferenceType.NestedTypes command";
44 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/NestedTypesDebuggee;";
47 return "org.apache.harmony.jpda.tests.jdwp.ReferenceType.NestedTypesDebuggee";
51 * This testcase exercises ReferenceType.NestedTypes command.
54 * performs ReferenceType.NestedTypes command and checks that returned
82 "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/NestedTypesDebuggee$StatInterf_1;",
83 "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/NestedTypesDebuggee$StatClass_1;",
84 "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/NestedTypesDebuggee$NonStatClass_1;"
    [all...]
ClassFileVersionTest.java 19 package org.apache.harmony.jpda.tests.jdwp.ReferenceType;
36 static final String thisCommandName = "ReferenceType.ClassFileVersion command";
38 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/ClassFileVersionDebuggee;";
40 static final String debuggeeClass = "org/apache/harmony/jpda/tests/jdwp/ReferenceType/ClassFileVersionDebuggee.class";
44 return "org.apache.harmony.jpda.tests.jdwp.ReferenceType.ClassFileVersionDebuggee";
48 * This testcase exercises ReferenceType.ClassFileVersion command. <BR>
51 * performs ReferenceType.ClassFileVersion command and checks that returned
SignatureWithGenericTest.java 26 package org.apache.harmony.jpda.tests.jdwp.ReferenceType;
36 * JDWP Unit test for ReferenceType.SignatureWithGeneric command.
42 static final String thisCommandName = "ReferenceType.SignatureWithGeneric command";
43 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/SignatureWithGenericDebuggee;";
47 return "org.apache.harmony.jpda.tests.jdwp.ReferenceType.SignatureWithGenericDebuggee";
51 * This testcase exercises ReferenceType.SignatureWithGeneric command.
54 * performs ReferenceType.SignatureWithGeneric command and checks that returned
SourceFileTest.java 26 package org.apache.harmony.jpda.tests.jdwp.ReferenceType;
36 * JDWP Unit test for ReferenceType.SourceFile command.
42 static final String thisCommandName = "ReferenceType.SourceFile command";
43 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/SourceFileDebuggee;";
46 return "org.apache.harmony.jpda.tests.jdwp.ReferenceType.SourceFileDebuggee";
50 * This testcase exercises ReferenceType.SourceFile command.
53 * performs ReferenceType.SourceFile command and checks that returned
Signature002Test.java 26 package org.apache.harmony.jpda.tests.jdwp.ReferenceType;
38 * JDWP Unit test for ReferenceType..Signature command with incorrect ReferenceTypeIDs.
42 static final String thisCommandName = "ReferenceType.Signature command";
43 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/Signature002Debuggee;";
46 return "org.apache.harmony.jpda.tests.jdwp.ReferenceType.Signature002Debuggee";
50 * This testcase exercises ReferenceType.Signature command with incorrect ReferenceTypeIDs.
53 * Then the test performs three variants of ReferenceType.Signature commands
73 ("=> Send ReferenceType::GetValues command for received fieldID and get ObjectID to check...");
84 checkReplyPacket(getValuesReply, "ReferenceType::GetValues command");
90 ("\n## FAILURE: ReferenceType::GetValues command returned unexpected number of values:")
    [all...]
GetValuesTest.java 26 package org.apache.harmony.jpda.tests.jdwp.ReferenceType;
38 * JDWP Unit test for ReferenceType.GetValues command.
44 static final String thisCommandName = "ReferenceType.GetValues command";
45 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/GetValuesDebuggee;";
48 return "org.apache.harmony.jpda.tests.jdwp.ReferenceType.GetValuesDebuggee";
52 * This testcase exercises ReferenceType.GetValues command.
55 * performs ReferenceType.Fields command and gets fieldIDs for checked fields.
56 * <BR>Then test performs ReferenceType.GetValues command for checked fields and checks
80 "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/GetValuesDebuggee;",
InstancesTest.java 19 package org.apache.harmony.jpda.tests.jdwp.ReferenceType;
37 static final String thisCommandName = "ReferenceType.Instances command";
41 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/InstancesDebuggee;";
43 static final String mockClassSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/MockClass;";
50 return "org.apache.harmony.jpda.tests.jdwp.ReferenceType.InstancesDebuggee";
57 * ReferenceType.Instances command and checks that returned reachable
157 * This testcase exercises ReferenceType.Instances command. <BR>
160 * ReferenceType.Instances command and checks that returned reachable
171 * This testcase exercises ReferenceType.Instances command. <BR>
174 * ReferenceType.Instances command. Since maximum number of instances is negtive, s
    [all...]
ConstantPoolTest.java 20 package org.apache.harmony.jpda.tests.jdwp.ReferenceType;
33 * JDWP Unit test for ReferenceType.ConstantPool command.
41 static final String thisCommandName = "ReferenceType.ConstantPool command";
43 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/ConstantPoolDebuggee;";
45 static final String debuggeeClass = "org/apache/harmony/jpda/tests/jdwp/ReferenceType/ConstantPoolDebuggee.class";
49 return "org.apache.harmony.jpda.tests.jdwp.ReferenceType.ConstantPoolDebuggee";
53 * This testcase exercises ReferenceType.ConstantPool command.
56 * performs ReferenceType.ConstantPool command and checks that returned
GetValues005Test.java 27 package org.apache.harmony.jpda.tests.jdwp.ReferenceType;
39 * JDWP Unit test for ReferenceType.GetValues command for fields with null value.
43 static final String thisCommandName = "ReferenceType.GetValues command";
44 static final String debuggeeSignature = "Lorg/apache/harmony/jpda/tests/jdwp/ReferenceType/GetValues005Debuggee;";
47 return "org.apache.harmony.jpda.tests.jdwp.ReferenceType.GetValues005Debuggee";
51 * This testcase exercises ReferenceType.GetValues command for fields with null value.
53 * ReferenceType.GetValues command for fields of different
104 ("\n## FAILURE: ReferenceType::GetValues command returned unexpected number of values:");
ClassLoaderTest.java 26 package org.apache.harmony.jpda.tests.jdwp.ReferenceType;
36 * JDWP Unit test for ReferenceType.ClassLoader command.
42 static final String thisCommandName = "ReferenceType.ClassLoader command";
50 * This testcase exercises ReferenceType.ClassLoader command.
53 * performs ReferenceType.ClassLoader command and checks that command

Completed in 2074 milliseconds

1 2 3 4 5 6 7 8 9