OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:FieldId
(Results
1 - 6
of
6
) sorted by null
/dalvik/dx/src/com/android/dex/
FieldId.java
21
public final class
FieldId
implements Comparable<
FieldId
> {
27
public
FieldId
(Dex dex, int declaringClassIndex, int typeIndex, int nameIndex) {
47
public int compareTo(
FieldId
other) {
/external/dexmaker/dexmaker/src/main/java/com/android/dx/
FieldId.java
29
public final class
FieldId
<D, V> {
38
FieldId
(TypeId<D> declaringType, TypeId<V> type, String name) {
63
return o instanceof
FieldId
64
&& ((
FieldId
<?, ?>) o).declaringType.equals(declaringType)
65
&& ((
FieldId
<?, ?>) o).name.equals(name);
/art/libdexfile/dex/
dex_file_structs.h
68
struct
FieldId
{
74
DISALLOW_COPY_AND_ASSIGN(
FieldId
);
/art/runtime/jdwp/
jdwp.h
56
* Its OK to change MethodId and
FieldId
sizes as long as the size is <= 8 bytes.
59
typedef uint64_t
FieldId
; /* static or instance field */
67
static inline void SetFieldId(uint8_t* buf,
FieldId
val) { return Set8BE(buf, val); }
72
static inline void expandBufAddFieldId(ExpandBuf* pReply,
FieldId
id) { expandBufAdd8BE(pReply, id); }
422
std::string DescribeField(const
FieldId
& field_id) REQUIRES_SHARED(Locks::mutator_lock_);
440
FieldId
ReadFieldId() REQUIRES_SHARED(Locks::mutator_lock_);
/art/dexlayout/
dex_ir.h
50
class
FieldId
;
89
virtual void Dispatch(const
FieldId
* field_id) = 0;
444
IndexedCollectionVector<
FieldId
>& FieldIds() { return field_ids_; }
445
const IndexedCollectionVector<
FieldId
>& FieldIds() const { return field_ids_; }
553
IndexedCollectionVector<
FieldId
> field_ids_;
675
class
FieldId
: public IndexedItem {
677
FieldId
(const TypeId* klass, const TypeId* type, const StringId* name)
679
~
FieldId
() override { }
694
DISALLOW_COPY_AND_ASSIGN(
FieldId
);
721
FieldItem(uint32_t access_flags, const
FieldId
* field_id
[
all
...]
/external/dexmaker/lib/
dalvik-dx-9.0.0_r3.jar
Completed in 4079 milliseconds