OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
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) {
/dalvik/dx/src/com/android/dx/gen/
MethodId.java
28
public final class
MethodId
<D, R> {
38
MethodId
(Type<D> declaringType, Type<R> returnType, String name, TypeList parameters) {
88
return o instanceof
MethodId
89
&& ((
MethodId
<?, ?>) o).declaringType.equals(declaringType)
90
&& ((
MethodId
<?, ?>) o).name.equals(name)
91
&& ((
MethodId
<?, ?>) o).parameters.equals(parameters)
92
&& ((
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 */
/prebuilt/sdk/tools/lib/
dx.jar
Completed in 629 milliseconds