HomeSort by relevance Sort by last modified time
    Searched defs:MethodId (Results 1 - 4 of 4) sorted by null

  /dalvik/dx/src/com/android/dx/io/
MethodId.java 21 public final class MethodId implements Comparable<MethodId> {
27 public MethodId(DexBuffer buffer, int declaringClassIndex, int protoIndex, int nameIndex) {
46 public int compareTo(MethodId other) {
  /external/dexmaker/src/main/java/com/google/dexmaker/
MethodId.java 31 public final class MethodId<D, R> {
41 MethodId(TypeId<D> declaringType, TypeId<R> returnType, String name, TypeList parameters) {
101 return o instanceof MethodId
102 && ((MethodId<?, ?>) o).declaringType.equals(declaringType)
103 && ((MethodId<?, ?>) o).name.equals(name)
104 && ((MethodId<?, ?>) o).parameters.equals(parameters)
105 && ((MethodId<?, ?>) o).returnType.equals(returnType);
  /dalvik/vm/jdwp/
Jdwp.h 41 typedef u4 MethodId; /* any kind of method, including constructors */
51 INLINE MethodId dvmReadMethodId(const u1** pBuf) { return read4BE(pBuf); }
56 INLINE void dvmSetMethodId(u1* buf, MethodId val) { return set4BE(buf, val); }
63 INLINE void expandBufAddMethodId(ExpandBuf* pReply, MethodId id) {
83 MethodId methodId; /* method in which "idx" resides */
  /prebuilts/sdk/tools/lib/
dx.jar 

Completed in 61 milliseconds