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

1 2 3

  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/
Opcode.java 37 NOP((short)0x00, "nop", ReferenceType.none, Format.Format10x, Opcode.CAN_CONTINUE),
38 MOVE((short)0x01, "move", ReferenceType.none, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
39 MOVE_FROM16((short)0x02, "move/from16", ReferenceType.none, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
40 MOVE_16((short)0x03, "move/16", ReferenceType.none, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
41 MOVE_WIDE((short)0x04, "move-wide", ReferenceType.none, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
42 MOVE_WIDE_FROM16((short)0x05, "move-wide/from16", ReferenceType.none, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
43 MOVE_WIDE_16((short)0x06, "move-wide/16", ReferenceType.none, Format.Format32x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER | Opcode.SETS_WIDE_REGISTER),
44 MOVE_OBJECT((short)0x07, "move-object", ReferenceType.none, Format.Format12x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
45 MOVE_OBJECT_FROM16((short)0x08, "move-object/from16", ReferenceType.none, Format.Format22x, Opcode.CAN_CONTINUE | Opcode.SETS_REGISTER),
46 MOVE_OBJECT_16((short)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);
InstructionWithJumboReference.java 36 import org.jf.dexlib.Code.ReferenceType;
46 protected InstructionWithJumboReference(Opcode opcode, Item referencedItem, ReferenceType referenceType) {
47 super(opcode, referencedItem, referenceType);
  /external/llvm/lib/MC/
MCExternalSymbolizer.cpp 48 uint64_t ReferenceType;
50 ReferenceType = LLVMDisassembler_ReferenceType_In_Branch;
52 ReferenceType = LLVMDisassembler_ReferenceType_InOut_None;
54 const char *Name = SymbolLookUp(DisInfo, Value, &ReferenceType, Address,
64 if(ReferenceType == LLVMDisassembler_ReferenceType_Out_SymbolStub)
139 uint64_t ReferenceType = LLVMDisassembler_ReferenceType_In_PCrel_Load;
141 (void)SymbolLookUp(DisInfo, Value, &ReferenceType, Address, &ReferenceName);
142 if(ReferenceType == LLVMDisassembler_ReferenceType_Out_LitPool_SymAddr ||
143 ReferenceType == LLVMDisassembler_ReferenceType_Out_LitPool_CstrAddr)
  /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/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,
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/test/utils/
named_params.hpp 170 template<typename T, typename unique_id,typename ReferenceType=T&>
172 : nfp_detail::named_parameter_base<named_parameter<T, unique_id,ReferenceType> >
176 typedef ReferenceType ref_type;
  /external/clang/lib/Sema/
SemaExceptionSpec.cpp 31 else if (const ReferenceType *RefTy = T->getAs<ReferenceType>())
66 } else if (const ReferenceType *RT = T->getAs<ReferenceType>()) {
613 if (const ReferenceType *RefTy = CanonicalSubT->getAs<ReferenceType>())
633 if (const ReferenceType *RefTy = CanonicalSuperT->getAs<ReferenceType>())
811 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
    [all...]
SemaTemplateDeduction.cpp     [all...]
SemaCast.cpp 549 const ReferenceType *DestReference = 0;
552 } else if ((DestReference = DestType->getAs<ReferenceType>())) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/
ListHashSet.h 284 typedef ValueType& ReferenceType;
297 ReferenceType operator*() const { return *get(); }
327 typedef const ValueType& ReferenceType;
348 ReferenceType operator*() const { return *get(); }
396 typedef ValueType& ReferenceType;
409 ReferenceType operator*() const { return *get(); }
439 typedef const ValueType& ReferenceType;
460 ReferenceType operator*() const { return *get(); }
    [all...]
HashTable.h 76 typedef const ValueType& ReferenceType;
108 ReferenceType operator*() const { return *get(); }
151 typedef ValueType& ReferenceType;
165 ReferenceType operator*() const { return *get(); }
    [all...]
HashMap.h 31 typedef T& ReferenceType;
34 typedef T& ReferenceType;
60 typedef typename ReferenceTypeMaker<MappedPassInType>::ReferenceType MappedPassInReferenceType;
  /external/clang/include/clang/AST/
CanonicalType.h 47 /// converted to @c CanQual<ReferenceType>. Note that any @c CanQual type can
491 struct CanProxyAdaptor<ReferenceType> : public CanProxyBase<ReferenceType> {
676 if (CanQual<ReferenceType> RefType = getAs<ReferenceType>())
Type.h     [all...]
  /external/clang/lib/AST/
Type.cpp 419 if (const ReferenceType *RT = getAs<ReferenceType>())
523 else if (const ReferenceType *RT = getAs<ReferenceType>())
567 AutoType *VisitReferenceType(const ReferenceType *T) {
    [all...]
DeclCXX.cpp 534 const ReferenceType *ParamTy =
535 Method->getParamDecl(0)->getType()->getAs<ReferenceType>();
    [all...]
  /art/runtime/verifier/
reg_type_cache.cc 187 entry = new ReferenceType(klass, descriptor, entries_.size());
225 entry = new ReferenceType(klass, descriptor, entries_.size());
388 entry = new ReferenceType(klass, "", entries_.size());
  /external/clang/lib/StaticAnalyzer/Checkers/
DeadStoresChecker.cpp 214 if (VD->getType()->getAs<ReferenceType>())
324 if (V->getType()->getAs<ReferenceType>())
  /external/clang/lib/StaticAnalyzer/Core/
Store.cpp 389 if (const ReferenceType *RT = T->getAs<ReferenceType>())
  /external/clang/lib/ARCMigrate/
Transforms.cpp 374 else if (const ReferenceType *RT = T->getAs<ReferenceType>())
  /external/clang/lib/CodeGen/
CodeGenTypes.cpp 409 const ReferenceType *RTy = cast<ReferenceType>(Ty);
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.jdt.debug_3.6.1.v20100715_r361/
jdi.jar 

Completed in 803 milliseconds

1 2 3