HomeSort by relevance Sort by last modified time
    Searched refs:method (Results 726 - 750 of 4969) sorted by null

<<21222324252627282930>>

  /dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
AssertionErrorTest.java 33 method = "AssertionError",
44 method = "AssertionError",
61 method = "AssertionError",
72 method = "AssertionError",
83 method = "AssertionError",
94 method = "AssertionError",
105 method = "AssertionError",
116 method = "AssertionError",
  /dalvik/libcore/luni/src/test/java/tests/api/java/io/
CharConversionExceptionTest.java 34 method = "CharConversionException",
53 method = "CharConversionException",
ExternalizableTest.java 16 method = "readExternal",
20 "libraries that implement this method."
23 method = "writeExternal",
27 "libraries that implement this method."
FileNotFoundExceptionTest.java 34 method = "FileNotFoundException",
53 method = "FileNotFoundException",
IOExceptionTest.java 35 method = "IOException",
55 method = "IOException",
NotActiveExceptionTest.java 34 method = "NotActiveException",
53 method = "NotActiveException",
NotSerializableExceptionTest.java 34 method = "NotSerializableException",
53 method = "NotSerializableException",
ObjectInputOutputStreamTest.java 52 method = "writeBoolean",
58 method = "readBoolean",
97 method = "writeByte",
103 method = "readByte",
142 method = "writeChar",
148 method = "readChar",
187 method = "writeDouble",
193 method = "readDouble",
232 method = "writeFloat",
238 method = "readFloat"
    [all...]
StreamCorruptedExceptionTest.java 34 method = "StreamCorruptedException",
53 method = "StreamCorruptedException",
UTFDataFormatExceptionTest.java 34 method = "UTFDataFormatException",
53 method = "UTFDataFormatException",
UnsupportedEncodingExceptionTest.java 34 method = "UnsupportedEncodingException",
53 method = "UnsupportedEncodingException",
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/
BooleanTest.java 36 method = "booleanValue",
45 method = "booleanValue",
  /dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
TypeVariableTest.java 26 import java.lang.reflect.Method;
40 method = "getGenericDeclaration",
60 notes = "Tests getGenericDeclaration of a type variable on a method.",
61 method = "getGenericDeclaration",
66 Method method = clazz.getDeclaredMethod("b"); local
67 TypeVariable<Method>[] typeParameters = method.getTypeParameters();
69 TypeVariable<Method> typeVariable = typeParameters[0];
70 assertEquals(method, typeVariable.getGenericDeclaration())
146 Method method = clazz.getDeclaredMethod("e"); local
    [all...]
  /dalvik/libcore/math/src/test/java/tests/api/java/math/
MathContextTest.java 39 method = "MathContext",
45 method = "MathContext",
51 method = "MathContext",
57 method = "getPrecision",
63 method = "getRoundingMode",
69 method = "equals",
75 method = "hashCode",
81 method = "toString",
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/
ReadOnlyDirectByteBufferTest.java 38 notes = "Verifies isReadOnly method for read only ByteBuffer.",
39 method = "isReadOnly",
49 method = "hashCode",
  /dalvik/libcore/nio/src/test/java/org/apache/harmony/nio/tests/java/nio/channels/spi/
AbstractInterruptibleChannelTest.java 35 method = "AbstractInterruptibleChannel",
49 method = "close",
55 method = "isOpen",
75 method = "begin",
81 method = "end",
128 method = "begin",
134 method = "end",
140 method = "close",
  /dalvik/libcore/nio_char/src/test/java/tests/api/java/nio/charset/
UTF16CharsetEncoderTest.java 66 method = "CharsetEncoder",
76 method = "canEncode",
91 method = "canEncode",
116 method = "canEncode",
122 method = "canEncode",
135 method = "averageBytesPerChar",
141 method = "maxBytesPerChar",
167 method = "isLegalReplacement",
UTF16CharsetTest.java 46 method = "",
50 // TODO Auto-generated method stub
62 method = "",
66 // TODO Auto-generated method stub
  /dalvik/libcore/security/src/test/java/org/apache/harmony/security/tests/java/security/
AlgorithmParametersSpiTest.java 47 method = "AlgorithmParametersSpi",
53 method = "engineGetEncoded",
59 method = "engineGetEncoded",
65 method = "engineGetParameterSpec",
71 method = "engineInit",
77 method = "engineInit",
83 method = "engineInit",
89 method = "engineToString",
  /dalvik/libcore/sql/src/test/java/tests/javax/sql/
ConnectionEventListenerTest.java 22 method = "connectionClosed",
35 method = "connectionErrorOccurred",
  /dalvik/vm/mterp/x86/
OP_INVOKE_SUPER.S 3 %verify "unknown method"
5 * Handle a "super" method call.
17 movl offGlue_method(rINST_FULL),%eax # eax<- method
25 movl offMethod_clazz(%eax),%eax # eax<- method->clazz
33 * ecx = resolved base method [r0]
34 * eax = method->clazz [r9]
37 movl offClassObject_super(%eax),%eax # eax<- method->clazz->super
40 jae .L${opcode}_nsm # method not present in superclass
47 * ecx = null (needs to be resolved base method)
48 * eax = method->claz
    [all...]
  /dalvik/vm/mterp/x86-atom/
OP_INVOKE_DIRECT.S 19 * Code: Call a non-static direct method. Provides an "isrange" variable and
25 * Description: invoke-direct is used to invoke a non-static direct method;
26 * an instance method that is non-overridable, for example,
27 * either a private instance method or a constructor.
49 FETCH 1, %eax # %eax<- method index
52 movl (%ecx, %eax, 4), %ecx # %ecx<- resolved method to call
64 jne common_invokeMethod${routine} # invoke method common code
75 movl $$METHOD_DIRECT, -8(%esp) # push parameter method type
76 movl offGlue_method(%edx), %edx # %edx<- glue->method
79 movl offMethod_clazz(%edx), %edx # %edx<- glue->method->claz
    [all...]
  /dalvik/vm/reflect/
Reflect.h 63 Method* dvmSlotToMethod(ClassObject* clazz, int slot);
93 * Return the class object that matches the method's signature. For
96 ClassObject* dvmGetBoxedReturnType(const Method* meth);
102 Method* dvmGetMethodFromReflectObj(Object* obj);
104 Object* dvmCreateReflectObjForMethod(const ClassObject* clazz, Method* method);
107 * Quick test to determine if the method in question is a reflection call.
108 * Used for some stack parsing. Currently defined as "the method's declaring
109 * class is java.lang.reflect.Method".
111 INLINE bool dvmIsReflectionMethod(const Method* method
    [all...]
  /external/bluetooth/bluez/test/
simple-agent 19 @dbus.service.method("org.bluez.Agent",
26 @dbus.service.method("org.bluez.Agent",
35 @dbus.service.method("org.bluez.Agent",
41 @dbus.service.method("org.bluez.Agent",
48 @dbus.service.method("org.bluez.Agent",
53 @dbus.service.method("org.bluez.Agent",
62 @dbus.service.method("org.bluez.Agent",
67 @dbus.service.method("org.bluez.Agent",
  /external/openssl/crypto/x509v3/
v3_prn.c 113 X509V3_EXT_METHOD *method; local
117 if(!(method = X509V3_EXT_get(ext)))
120 if(method->it) ext_str = ASN1_item_d2i(NULL, &p, ext->value->length, ASN1_ITEM_ptr(method->it));
121 else ext_str = method->d2i(NULL, &p, ext->value->length);
125 if(method->i2s) {
126 if(!(value = method->i2s(method, ext_str))) {
146 } else if(method->i2v) {
147 if(!(nval = method->i2v(method, ext_str, NULL)))
    [all...]

Completed in 1486 milliseconds

<<21222324252627282930>>