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

1 2 3

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
Opcode.java 37 NOP((byte)0x00, "nop", ReferenceType.none, Format.Format10x, Opcode.CAN_CONTINUE),
38 MOVE((byte)0x01, "move", ReferenceType.none, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
39 MOVE_FROM16((byte)0x02, "move/from16", ReferenceType.none, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
40 MOVE_16((byte)0x03, "move/16", ReferenceType.none, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
41 MOVE_WIDE((byte)0x04, "move-wide", ReferenceType.none, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
42 MOVE_WIDE_FROM16((byte)0x05, "move-wide/from16", ReferenceType.none, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
43 MOVE_WIDE_16((byte)0x06, "move-wide/16", ReferenceType.none, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
44 MOVE_OBJECT((byte)0x07, "move-object", ReferenceType.none, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
45 MOVE_OBJECT_FROM16((byte)0x08, "move-object/from16", ReferenceType.none, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
46 MOVE_OBJECT_16((byte)0x09, "move-object/16", ReferenceType.none, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER)
    [all...]
ReferenceType.java 33 public enum ReferenceType
43 private ReferenceType(int validationErrorReferenceType) {
61 public static ReferenceType fromValidationErrorReferenceType(int validationErrorReferenceType) {
InstructionWithReference.java 36 private ReferenceType referenceType;
41 this.referenceType = opcode.referenceType;
45 protected InstructionWithReference(Opcode opcode, Item referencedItem, ReferenceType referenceType) {
48 this.referenceType = referenceType;
55 this.referenceType = readReferenceType(opcode, buffer, bufferIndex);
64 public ReferenceType getReferenceType()
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Format/
Instruction20bc.java 47 private static ReferenceType getReferenceType(Item item) {
49 return ReferenceType.type;
52 return ReferenceType.field;
55 return ReferenceType.method;
67 protected ReferenceType readReferenceType(Opcode opcode, byte[] buffer, int bufferIndex) {
69 short referenceType = (short)(val >> 6);
70 return ReferenceType.fromValidationErrorReferenceType(referenceType);
  /external/llvm/include/llvm-c/
Disassembler.h 104 * for the ReferenceValue NULL is returned. The ReferenceType of the
107 * indirectly in ReferenceType along with ReferenceName if any, or that is set
112 uint64_t *ReferenceType,
  /external/javassist/src/main/javassist/util/
HotSwapper.java 156 ReferenceType classtype = toRefType(className);
185 private ReferenceType toRefType(String className) {
190 return (ReferenceType)list.get(0);
  /external/clang/lib/StaticAnalyzer/Checkers/
AdjustedReturnValueChecker.cpp 76 if (actualResultTy->getAs<ReferenceType>())
DeadStoresChecker.cpp 159 if (VD->getType()->getAs<ReferenceType>())
268 if (V->getType()->getAs<ReferenceType>())
  /external/llvm/lib/Target/X86/Disassembler/
X86Disassembler.cpp 213 uint64_t ReferenceType;
215 ReferenceType = LLVMDisassembler_ReferenceType_In_Branch;
217 ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
219 const char *Name = SymbolLookUp(DisInfo, Value, &ReferenceType, Address,
229 if(ReferenceType == LLVMDisassembler_ReferenceType_Out_SymbolStub)
303 uint64_t ReferenceType = LLVMDisassembler_ReferenceType_In_PCrel_Load;
305 (void)SymbolLookUp(DisInfo, Value, &ReferenceType, Address, &ReferenceName);
306 if(ReferenceType == LLVMDisassembler_ReferenceType_Out_LitPool_CstrAddr)
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 31 else if (const ReferenceType *RefTy = T->getAs<ReferenceType>())
64 } else if (const ReferenceType* IT = T->getAs<ReferenceType>()) {
594 if (const ReferenceType *RefTy = CanonicalSubT->getAs<ReferenceType>())
614 if (const ReferenceType *RefTy = CanonicalSuperT->getAs<ReferenceType>())
795 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
    [all...]
SemaCast.cpp 548 const ReferenceType *DestReference = 0;
551 } else if ((DestReference = DestType->getAs<ReferenceType>())) {
    [all...]
SemaTemplateDeduction.cpp     [all...]
SemaType.cpp     [all...]
  /external/clang/include/clang/AST/
CanonicalType.h 47 /// converted to @c CanQual<ReferenceType>. Note that any @c CanQual type can
493 struct CanProxyAdaptor<ReferenceType> : public CanProxyBase<ReferenceType> {
720 if (CanQual<ReferenceType> RefType = getAs<ReferenceType>())
Type.h     [all...]
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 228 if (const ReferenceType *RT = T->getAs<ReferenceType>())
  /external/clang/lib/AST/
Type.cpp 380 if (const ReferenceType *RT = getAs<ReferenceType>())
520 AutoType *VisitReferenceType(const ReferenceType *T) {
    [all...]
ASTContext.cpp 754 if (const ReferenceType* RT = T->getAs<ReferenceType>()) {
    [all...]
  /external/webkit/Source/JavaScriptCore/wtf/
ListHashSet.h 255 typedef ValueType& ReferenceType;
268 ReferenceType operator*() const { return *get(); }
298 typedef const ValueType& ReferenceType;
319 ReferenceType operator*() const { return *get(); }
HashTable.h 101 typedef const ValueType& ReferenceType;
163 ReferenceType operator*() const { return *get(); }
229 typedef ValueType& ReferenceType;
243 ReferenceType operator*() const { return *get(); }
    [all...]
  /external/clang/lib/ARCMigrate/
Transforms.cpp 313 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 386 const ReferenceType *RTy = cast<ReferenceType>(Ty);
CGVTables.cpp 174 (isa<ReferenceType>(typeL) && isa<ReferenceType>(typeR))));
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdi.jar 
  /external/clang/tools/libclang/
CIndexUSRs.cpp 624 if (const ReferenceType *RT = T->getAs<ReferenceType>()) {

Completed in 478 milliseconds

1 2 3