Searched refs:param (Results 1 - 25 of 46) sorted by relevance

12

/libcore/ojluni/src/main/java/java/sql/
H A DParameterMetaData.java59 * @param param the first parameter is 1, the second is 2, ...
67 int isNullable(int param) throws SQLException; argument
90 * @param param the first parameter is 1, the second is 2, ...
95 boolean isSigned(int param) throws SQLException; argument
107 * @param param the first parameter is 1, the second is 2, ...
112 int getPrecision(int param) throws SQLException; argument
118 * @param para
123 getScale(int param) argument
134 getParameterType(int param) argument
145 getParameterTypeName(int param) argument
161 getParameterClassName(int param) argument
195 getParameterMode(int param) argument
[all...]
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/lang/reflect/
H A DMethodTest.java110 public void publicVoidVarargs(Object... param){} argument
111 public void publicVoidArray(Object[] param){} argument
124 public void invokeCastTest1(byte param) { argument
127 public void invokeCastTest1(short param) { argument
130 public void invokeCastTest1(int param) { argument
133 public void invokeCastTest1(long param) { argument
136 public void invokeCastTest1(float param) { argument
139 public void invokeCastTest1(double param) { argument
142 public void invokeCastTest1(char param) { argument
145 public void invokeCastTest1(boolean param) { argument
[all...]
H A DGenericMethodsTests.java34 public <T> void paramNoReturn(T param) {} argument
39 public <T> T paramReturn(T param) {return param;} argument
53 * @param method the method
64 * @param method the method
77 * @param method the declaring method
H A DWildcardTypeTest.java33 public <T extends BoundedWildcardsGenericMethods> void lowerBoundedParamNoReturn( BoundedWildcardsGenericMethods<? super T> param) {} argument
35 public <T extends BoundedWildcardsGenericMethods> void upperBoundedParamNoReturn( BoundedWildcardsGenericMethods<? extends T> param) {} argument
37 public <T extends BoundedWildcardsGenericMethods> T lowerBoundedParamReturn(BoundedWildcardsGenericMethods<? super T> param) { return (T) new Object(); } argument
39 public <T extends BoundedWildcardsGenericMethods> T upperBoundedParamReturn(BoundedWildcardsGenericMethods<? extends T> param) { return (T) new Object();} argument
55 * @param method the declaring method
/libcore/luni/src/test/java/tests/security/interfaces/
H A DDSAKeyTest.java36 DSAParams param = new DSAParameterSpec(Util.P, Util.Q, Util.G);
39 gen.initialize((DSAParameterSpec) param);
44 assertDSAParamsEquals(param, key.getParams());
48 assertDSAParamsEquals(param, key.getParams());
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/javax/net/ssl/
H A DKeyStoreBuilderParametersTest.java78 String[] param = {"Parameter1", "Parameter2", "Parameter3"};
80 for (int i = 0; i < param.length; i++) {
81 ls.add(param[i]);
91 assertEquals(res.length, param.length);
93 assertEquals(param[i], res[i]);
/libcore/luni/src/test/java/tests/java/security/
H A DAlgorithmParameterGeneratorSpiTest.java48 AlgorithmParameters param = algParGen.engineGenerateParameters();
49 assertNull("Not null parameters", param);
/libcore/support/src/test/java/org/apache/harmony/security/tests/support/
H A DMySignature2.java75 protected void engineSetParameter(String param, Object value) argument
80 protected Object engineGetParameter(String param) argument
H A DMyKeyPairGenerator1.java82 public void initialize(AlgorithmParameterSpec param, SecureRandom random) argument
87 if (param == null) {
88 throw new InvalidAlgorithmParameterException("Incorrect param");
90 paramSpec = param;
H A DMySignature1.java60 * @param algorithm
103 protected void engineSetParameter(String param, Object value) argument
108 protected Object engineGetParameter(String param) argument
H A DTestKeyStoreSpi.java162 public void engineLoad(LoadStoreParameter param) throws IOException, argument
164 if (param == null) {
169 ProtectionParameter pParam = param.getProtectionParameter();
241 public void engineStore(LoadStoreParameter param) throws IOException, argument
243 if (param == null) {
247 ProtectionParameter pParam = param.getProtectionParameter();
H A DMyKeyStore.java225 public void engineStore(KeyStore.LoadStoreParameter param) argument
227 if (param == null) {
228 throw new IOException("param is null");
232 public void engineLoad(KeyStore.LoadStoreParameter param) argument
234 if (!(param instanceof MyLoadStoreParams)) {
235 throw new IllegalArgumentException("param is not MyLoadStoreParams: " + param);
/libcore/ojluni/src/main/java/sun/security/ssl/
H A DRSASignature.java179 protected void engineSetParameter(String param, Object value) argument
181 if (param.equals("hashes") == false) {
183 ("Parameter not supported: " + param);
194 protected Object engineGetParameter(String param) argument
/libcore/luni/src/test/java/libcore/java/security/
H A DMockSignatureSpi.java99 protected void engineSetParameter(String param, Object value) throws InvalidParameterException { argument
107 protected Object engineGetParameter(String param) throws InvalidParameterException { argument
/libcore/luni/src/test/java/libcore/java/security/cert/
H A DFakeOidProvider.java60 protected void engineSetParameter(String param, Object value) argument
65 protected Object engineGetParameter(String param) throws InvalidParameterException { argument
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DSignatureSpiTest.java95 protected Object engineGetParameter(String param)
113 protected void engineSetParameter(String param, Object value)
148 public Object engineGetParameter(String param) { argument
162 public void engineSetParameter(String param, Object value) { argument
182 public Object engineGetParameter(String param) { argument
196 public void engineSetParameter(String param, Object value) { argument
223 protected Object engineGetParameter(String param) argument
243 protected void engineSetParameter(String param, Object value) argument
/libcore/ojluni/src/main/java/sun/security/jca/
H A DGetInstance.java140 * @param type the type of engine (e.g. MessageDigest)
141 * @param clazz the Spi class that the implementation must subclass
144 * @param algorithm the name of the algorithm (or alias), e.g. MD5
145 * @param provider the provider (String or Provider object)
146 * @param param the parameter to pass to the Spi constructor
185 String algorithm, Object param) throws NoSuchAlgorithmException {
190 return getInstance(s, clazz, param);
210 String algorithm, Object param, String provider)
212 return getInstance(getService(type, algorithm, provider), clazz, param);
184 getInstance(String type, Class clazz, String algorithm, Object param) argument
209 getInstance(String type, Class clazz, String algorithm, Object param, String provider) argument
221 getInstance(String type, Class clazz, String algorithm, Object param, Provider provider) argument
241 getInstance(Service s, Class clazz, Object param) argument
[all...]
/libcore/ojluni/src/main/native/
H A Djvm_md.h35 #include <sys/param.h> /* For MAXPATHLEN */
/libcore/luni/src/test/java/libcore/java/lang/
H A DClassTest.java34 public void foo(T param); argument
38 public void bar(T param); argument
/libcore/ojluni/src/main/java/java/security/
H A DKeyStoreSpi.java63 * @param alias the alias name
64 * @param password the password for recovering the key
84 * @param alias the alias name
108 * @param alias the alias name
118 * @param alias the alias name
137 * @param alias the alias name
138 * @param key the key to be associated with the alias
139 * @param password the password to protect the key
140 * @param chain the certificate chain for the corresponding public
165 * @param alia
317 engineStore(KeyStore.LoadStoreParameter param) argument
379 engineLoad(KeyStore.LoadStoreParameter param) argument
[all...]
H A DSignatureSpi.java64 * @param publicKey the public key of the identity whose signature is
77 * @param privateKey the private key of the identity whose signature
93 * @param privateKey the private key of the identity whose signature
95 * @param random the source of randomness
111 * @param b the byte to use for the update.
122 * @param b the array of bytes
123 * @param off the offset to start from in the array of bytes
124 * @param len the number of bytes to use, starting at offset
139 * @param input the ByteBuffer
202 * @param outbu
307 engineSetParameter(String param, Object value) argument
374 engineGetParameter(String param) argument
[all...]
/libcore/luni/src/test/java/tests/targets/security/
H A DSignatureTestMD2withRSA.java136 protected Object engineGetParameter(String param) argument
152 protected void engineSetParameter(String param, Object value) argument
/libcore/luni/src/main/native/
H A Dcanonicalize_path.cpp34 #include <sys/param.h>
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DConstructor.java45 * @param <T> the class in which the constructor is declared
351 String param = (params[j] instanceof Class<?>)?
355 param = param.replaceFirst("\\[\\]$", "...");
356 sb.append(param);
401 * @param args array of objects to be passed as arguments to
426 // Android changed param name s/initargs/args
H A DMethod.java425 String param = (params[j] instanceof Class)?
429 param = param.replaceFirst("\\[\\]$", "...");
430 sb.append(param);
483 * @param receiver the object the underlying method is invoked from
484 * @param args the arguments used for the method call

Completed in 358 milliseconds

12