Searched defs:get (Results 1 - 25 of 77) sorted by relevance

1234

/dalvik/dexgen/src/com/android/dexgen/rop/
H A DFieldList.java47 public Field get(int n); method in interface:FieldList
H A DStdFieldList.java36 public Field get(int n) { method in class:StdFieldList
H A DAttributeList.java46 public Attribute get(int n); method in interface:AttributeList
H A DStdAttributeList.java37 public Attribute get(int n) { method in class:StdAttributeList
47 result += get(i).byteLength();
58 Attribute att = get(i);
74 Attribute att = get(at);
86 Attribute att = get(at);
/dalvik/dx/src/com/android/dx/cf/iface/
H A DFieldList.java47 public Field get(int n); method in interface:FieldList
H A DMethodList.java46 public Method get(int n); method in interface:MethodList
H A DAttributeList.java46 public Attribute get(int n); method in interface:AttributeList
H A DStdAttributeList.java37 public Attribute get(int n) { method in class:StdAttributeList
47 result += get(i).byteLength();
58 Attribute att = get(i);
74 Attribute att = get(at);
86 Attribute att = get(at);
H A DStdFieldList.java36 public Field get(int n) { method in class:StdFieldList
H A DStdMethodList.java36 public Method get(int n) { method in class:StdMethodList
/dalvik/dexgen/src/com/android/dexgen/dex/file/
H A DHeaderSection.java48 public IndexedItem get(Constant cst) { method in class:HeaderSection
H A DFieldIdsSection.java56 public IndexedItem get(Constant cst) { method in class:FieldIdsSection
63 IndexedItem result = fieldIds.get((CstFieldRef) cst);
105 FieldIdItem result = fieldIds.get(field);
129 FieldIdItem item = fieldIds.get(ref);
H A DMethodIdsSection.java56 public IndexedItem get(Constant cst) { method in class:MethodIdsSection
63 IndexedItem result = methodIds.get((CstBaseMethodRef) cst);
105 MethodIdItem result = methodIds.get(method);
129 MethodIdItem item = methodIds.get(ref);
H A DProtoIdsSection.java56 public IndexedItem get(Constant cst) { method in class:ProtoIdsSection
97 ProtoIdItem result = protoIds.get(prototype);
121 ProtoIdItem item = protoIds.get(prototype);
H A DStringIdsSection.java59 public IndexedItem get(Constant cst) { method in class:StringIdsSection
70 IndexedItem result = strings.get((CstUtf8) cst);
146 StringIdItem already = strings.get(value);
180 StringIdItem s = strings.get(string);
/dalvik/dexgen/src/com/android/dexgen/rop/annotation/
H A DAnnotationsList.java50 Annotations a1 = list1.get(i);
51 Annotations a2 = list2.get(i);
76 public Annotations get(int n) { method in class:AnnotationsList
/dalvik/dexgen/src/com/android/dexgen/rop/cst/
H A DConstantPool.java43 public Constant get(int n); method in interface:ConstantPool
H A DStdConstantPool.java71 return get(n);
75 public Constant get(int n) { method in class:StdConstantPool
/dalvik/dx/src/com/android/dx/cf/code/
H A DByteBlockList.java45 public ByteBlock get(int n) { method in class:ByteBlockList
63 return get(idx);
/dalvik/dx/src/com/android/dx/dex/file/
H A DHeaderSection.java48 public IndexedItem get(Constant cst) { method in class:HeaderSection
/dalvik/dx/src/com/android/dx/io/instructions/
H A DAddressMap.java41 public int get(int keyAddress) { method in class:AddressMap
42 Integer value = map.get(keyAddress);
/dalvik/dx/src/com/android/dx/rop/annotation/
H A DAnnotationsList.java50 Annotations a1 = list1.get(i);
51 Annotations a2 = list2.get(i);
76 public Annotations get(int n) { method in class:AnnotationsList
/dalvik/dx/src/com/android/dx/rop/cst/
H A DConstantPool.java43 public Constant get(int n); method in interface:ConstantPool
H A DStdConstantPool.java71 return get(n);
75 public Constant get(int n) { method in class:StdConstantPool
/dalvik/dx/tests/118-find-usages/
H A DFoo.java49 @Override public T get(int index) { method in class:Foo.MyList

Completed in 2562 milliseconds

1234