Searched refs:method (Results 1 - 25 of 1435) sorted by relevance

1234567891011>>

/dalvik/libcore/support/src/test/java/targets/
H A DKeyGenerator.java34 protected abstract void method(); method in class:KeyGenerator.AES
39 protected abstract void method(); method in class:KeyGenerator.DES
44 protected abstract void method(); method in class:KeyGenerator.DESede
49 protected abstract void method(); method in class:KeyGenerator.HMACMD5
54 protected abstract void method(); method in class:KeyGenerator.HMACSHA1
59 protected abstract void method(); method in class:KeyGenerator.HMACSHA256
64 protected abstract void method(); method in class:KeyGenerator.HMACSHA384
69 protected abstract void method(); method in class:KeyGenerator.HMACSHA512
H A DCipher.java19 protected abstract void method(); method in class:Cipher.RSA
24 protected abstract void method(); method in class:Cipher.AES
29 protected abstract void method(); method in class:Cipher.AESWrap
34 protected abstract void method(); method in class:Cipher.DES
39 protected abstract void method(); method in class:Cipher.DESede
44 protected abstract void method(); method in class:Cipher.DESedeWrap
49 protected abstract void method(); method in class:Cipher.PBE
H A DSignatures.java22 protected abstract void method(); method in class:Signatures.SHA512withRSA
27 protected abstract void method(); method in class:Signatures.SHA384withRSA
32 protected abstract void method(); method in class:Signatures.SHA256withRSA
37 protected abstract void method(); method in class:Signatures.SHA224withRSA
42 protected abstract void method(); method in class:Signatures.SHA1withRSA
47 protected abstract void method(); method in class:Signatures.MD5withRSA
52 protected abstract void method(); method in class:Signatures.MD2withRSA
57 protected abstract void method(); method in class:Signatures.SHA1withDSA
62 protected abstract void method(); method in class:Signatures.NONEwithDSA
H A DMac.java34 protected abstract void method(); method in class:Mac.HMACMD5
39 protected abstract void method(); method in class:Mac.HMACSHA1
44 protected abstract void method(); method in class:Mac.HMACSHA256
49 protected abstract void method(); method in class:Mac.HMACSHA384
54 protected abstract void method(); method in class:Mac.HMACSHA512
H A DSecretKeyFactory.java34 protected abstract void method(); method in class:SecretKeyFactory.DES
39 protected abstract void method(); method in class:SecretKeyFactory.DESede
44 protected abstract void method(); method in class:SecretKeyFactory.PBEWITHMD5ANDDES
H A DAlgorithmParameters.java20 protected abstract void method(); method in class:AlgorithmParameters.DES
25 protected abstract void method(); method in class:AlgorithmParameters.DSA
30 protected abstract void method(); method in class:AlgorithmParameters.DESede
35 protected abstract void method(); method in class:AlgorithmParameters.OAEP
40 protected abstract void method(); method in class:AlgorithmParameters.AES
45 protected abstract void method(); method in class:AlgorithmParameters.DH
H A DMessageDigests.java22 protected abstract void method(); method in class:MessageDigests.MD2
27 protected abstract void method(); method in class:MessageDigests.MD5
32 protected abstract void method(); method in class:MessageDigests.SHA_1
37 protected abstract void method(); method in class:MessageDigests.SHA_256
42 protected abstract void method(); method in class:MessageDigests.SHA_384
47 protected abstract void method(); method in class:MessageDigests.SHA_512
H A DAlgorithmParameterGenerators.java22 protected abstract void method(); method in class:AlgorithmParameterGenerators.AES
27 protected abstract void method(); method in class:AlgorithmParameterGenerators.DSA
32 protected abstract void method(); method in class:AlgorithmParameterGenerators.DH
H A DKeyFactories.java22 protected abstract void method(); method in class:KeyFactories.RSA
27 protected abstract void method(); method in class:KeyFactories.DSA
32 protected abstract void method(); method in class:KeyFactories.DH
H A DKeyPairGenerators.java22 protected abstract void method(); method in class:KeyPairGenerators.RSA
27 protected abstract void method(); method in class:KeyPairGenerators.DSA
32 protected abstract void method(); method in class:KeyPairGenerators.DH
/dalvik/dx/tests/098-dex-jsr-ret-throw/
H A Drun17 dx --debug --dump --method=run --rop-blocks 'ViewDebug$ViewServer.class'
/dalvik/libcore/luni/src/test/java/tests/api/java/lang/reflect/
H A DGenericMethodsTests.java56 method = "getTypeParameters",
64 * Tests whether the specified method declares a type parameter T.
65 * @param method the method
67 private void checkTypeParameter(Method method) { argument
68 TypeVariable<Method> typeParameter = getTypeParameter(method);
70 assertEquals(method, typeParameter.getGenericDeclaration());
74 * Tests whether the specified method declares a parameter with the
76 * @param method the method
78 checkParameterType(Method method) argument
91 checkReturnType(Method method) argument
[all...]
H A DWildcardTypeTest.java66 method = "getTypeParameters",
76 * @param method the declaring method
78 private void checkBoundedTypeParameter(Method method) { argument
79 TypeVariable<Method> typeParameter = getTypeParameter(method);
81 assertEquals(method, typeParameter.getGenericDeclaration());
89 private void checkLowerBoundedParameter(Method method) { argument
90 Type genericParameterType = method.getGenericParameterTypes()[0];
104 assertEquals(getTypeParameter(method), lowerBound);
110 private void checkUpperBoundedParameter(Method method) { argument
130 checkReturnType(Method method) argument
[all...]
H A DBoundedGenericMethodsTests.java53 * @param method
54 * the declaring method
56 private void checkBoundedTypeParameter(Method method) { argument
57 TypeVariable<Method> typeParameter = getTypeParameter(method);
59 assertEquals(method, typeParameter.getGenericDeclaration());
68 * Tests whether the specified method declares a parameter with the type of
71 * @param method
72 * the declaring method
74 private void parameterType(Method method) { argument
75 TypeVariable<Method> typeParameter = getTypeParameter(method);
90 checkReturnType(Method method) argument
[all...]
/dalvik/vm/interp/
H A DInterp.h27 void dvmInterpret(Thread* thread, const Method* method, JValue* pResult);
33 * instruction. "method" is the method currently being executed.
35 void dvmThrowVerificationError(const Method* method, int kind, int ref);
47 void dvmAddBreakAddr(Method* method, unsigned int instrOffset);
48 void dvmClearBreakAddr(Method* method, unsigned int instrOffset);
/dalvik/dx/src/com/android/dx/dex/file/
H A DMethodAnnotationStruct.java26 * Association of a method and its annotations.
30 /** {@code non-null;} the method in question */
31 private final CstMethodRef method; field in class:MethodAnnotationStruct
39 * @param method {@code non-null;} the method in question
42 public MethodAnnotationStruct(CstMethodRef method, argument
44 if (method == null) {
45 throw new NullPointerException("method == null");
52 this.method = method;
[all...]
/dalvik/dx/src/com/android/dx/cf/attrib/
H A DAttEnclosingMethod.java33 /** {@code null-ok;} the name-and-type of the innermost enclosing method, if any */
34 private final CstNat method; field in class:AttEnclosingMethod
40 * @param method {@code null-ok;} the name-and-type of the innermost enclosing
41 * method, if any
43 public AttEnclosingMethod(CstType type, CstNat method) { argument
51 this.method = method;
69 * Gets the name-and-type of the innermost enclosing method, if
73 * method, if any
76 return method;
[all...]
/dalvik/libcore/sql/src/test/java/tests/sql/
H A DCallableStatementTest.java44 * Test method for {@link java.sql.CallableStatement#getArray(int)}.
49 method = "getArray",
57 * Test method for {@link java.sql.CallableStatement#getArray(java.lang.String)}.
62 method = "getArray",
70 * Test method for {@link java.sql.CallableStatement#getBigDecimal(int)}.
75 method = "getBigDecimal",
83 * Test method for {@link java.sql.CallableStatement#getBigDecimal(int, int)}.
88 method = "getBigDecimal",
96 * Test method for {@link java.sql.CallableStatement#getBigDecimal(java.lang.String)}.
101 method
[all...]
H A DClobTest.java35 * Test method for {@link java.sql.Clob#getAsciiStream()}.
40 method = "getAsciiStream",
48 * Test method for {@link java.sql.Clob#getCharacterStream()}.
53 method = "getCharacterStream",
61 * Test method for {@link java.sql.Clob#getSubString(long, int)}.
66 method = "getSubString",
74 * Test method for {@link java.sql.Clob#length()}.
79 method = "length",
87 * Test method for {@link java.sql.Clob#position(java.sql.Clob, long)}.
92 method
[all...]
H A DArrayTest.java36 * Test method for {@link java.sql.Array#getArray()}.
41 method = "getArray",
49 * Test method for {@link java.sql.Array#getArray(long, int)}.
54 method = "getArray",
62 * Test method for {@link java.sql.Array#getArray(long, int, java.util.Map)}.
67 method = "getArray",
75 * Test method for {@link java.sql.Array#getArray(java.util.Map)}.
80 method = "getArray",
88 * Test method for {@link java.sql.Array#getBaseType()}.
93 method
[all...]
/dalvik/vm/mterp/armv5te/
H A Ddebug.c29 const Method* method = glue->method; local
32 // method->clazz->descriptor, method->name, method->shorty);
48 saveArea->method, saveArea->xtra.currentPc);
52 saveArea->method, saveArea->xtra.currentPc,
60 void dvmMterpPrintMethod(Method* method) argument
63 * It is a direct (non-virtual) method if it is static, private,
67 ((method
[all...]
/dalvik/vm/mterp/portable/
H A Ddebug.c8 * Set "methodEntry" if we've just entered the method. This detects
9 * method exit by checking to see if the next instruction is "return".
11 * This can't catch native method entry/exit, so we have to handle that
23 * TODO: method entry/exit events are probably less common than location
27 static void updateDebugger(const Method* method, const u2* pc, const u4* fp, argument
67 assert(!dvmIsNativeMethod(method));
71 * Step into method calls. We break when the line number
72 * or method pointer changes. If we're in SS_MIN mode, we
75 if (pCtrl->method != method) {
182 checkDebugAndProf(const u2* pc, const u4* fp, Thread* self, const Method* method, bool* pIsMethodEntry) argument
[all...]
/dalvik/libcore/sql/src/test/java/tests/javax/sql/
H A DRowSetMetaDataTest.java25 method = "setAutoIncrement",
38 method = "setCaseSensitive",
52 method = "setCatalogName",
65 method = "setColumnCount",
78 method = "setColumnDisplaySize",
91 method = "setColumnLabel",
104 method = "setColumnName",
117 method = "setColumnType",
130 method = "setColumnTypeName",
143 method
[all...]
/dalvik/libcore/luni/src/test/java/tests/api/java/net/
H A DSocketImplTest.java34 * Socket.setSocketImplFactory method can be specified only once.
42 method = "accept",
48 method = "available",
54 method = "bind",
60 method = "close",
66 method = "connect",
72 method = "connect",
78 method = "connect",
84 method = "create",
90 method
[all...]
/dalvik/libcore/luni-kernel/src/test/java/java/lang/reflect/
H A DMethodTest.java21 Method method = MethodTestHelper.class.getMethod("m1", new Class[0]);
22 Class[] exceptions = method.getExceptionTypes();
27 exceptions = method.getExceptionTypes();
34 Method method = MethodTestHelper.class.getMethod("m2", expectedParameters);
35 Class[] parameters = method.getParameterTypes();
40 parameters = method.getParameterTypes();

Completed in 413 milliseconds

1234567891011>>