Searched defs:parameter (Results 1 - 9 of 9) sorted by relevance

/libcore/ojluni/src/main/java/java/sql/
H A DDataTruncation.java54 * @param index The index of the parameter or column value
55 * @param parameter true if a parameter value was truncated
60 public DataTruncation(int index, boolean parameter, argument
65 this.parameter = parameter;
82 * @param index The index of the parameter or column value
83 * @param parameter true if a parameter value was truncated
93 public DataTruncation(int index, boolean parameter, argument
166 private boolean parameter; field in class:DataTruncation
[all...]
/libcore/dom/src/test/java/org/w3c/domts/
H A DLSDocumentBuilderFactory.java110 * parameter.
121 * @param lsParameter corresponding DOMConfiguration parameter
132 String parameter,
141 setParameterMethod.invoke(domConfig, new Object[] {parameter, value});
153 String parameter) throws Exception {
159 return getParameterMethod.invoke(domConfig, new Object[] {parameter});
362 private boolean hasProperty(String parameter) { argument
364 return ( (Boolean) LSParameterStrategy.getParameter(parser, parameter)).
130 setParameter(DocumentBuilderSetting setting, Object parser, String parameter, Object value) argument
152 getParameter(Object parser, String parameter) argument
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DProviderServiceTest.java248 public boolean supportsParameter(Object parameter) { argument
249 if (parameter.getClass() == String.class) {
/libcore/ojluni/src/main/java/java/lang/reflect/
H A DWeakCache.java38 * {@link #get} method which also takes a {@code parameter}. Sub-keys are
73 * {@code (key, parameter) -> sub-key}
75 * {@code (key, parameter) -> value}
92 * @param parameter parameter used together with key to create sub-key and
95 * @throws NullPointerException if {@code parameter} passed in or
100 public V get(K key, P parameter) { argument
101 Objects.requireNonNull(parameter);
120 Object subKey = Objects.requireNonNull(subKeyFactory.apply(key, parameter));
138 factory = new Factory(key, parameter, subKe
201 private final P parameter; field in class:WeakCache.Factory
205 Factory(K key, P parameter, Object subKey, ConcurrentMap<Object, Supplier<V>> valuesMap) argument
[all...]
/libcore/benchmarks/src/benchmarks/regression/
H A DAnnotatedElementBenchmark.java215 @Marker public void method(@Marker String parameter) {} argument
/libcore/luni/src/test/java/libcore/java/lang/reflect/
H A DClassLoaderReflectionTest.java163 F(B<String> parameter, List<A> anotherParameter) {} argument
164 B<String> method(B<String> parameter, List<A> anotherParameter) { argument
H A DParameterTest.java47 * <p>Tests suffixed with _withMetadata() require parameter metadata compiled in to work properly.
55 * libcore.java.lang.reflect.parameter.ParameterMetadataTestClasses class and its nested
63 * libcore.java.lang.reflect.parameter.MetadataVariations class.
84 * parameter metadata. It is intended to bring readers here for the following:
87 * for parameters, the runtime does not have access to the parameter name from the source and
339 * An inner class, used for checking compiler-inserted parameters: The first parameter is an
453 // between the generic signature for the constructor (which suggests a single parameter)
454 // and the actual parameters (which suggests two). In the absence of parameter metadata
455 // to identify the synthetic parameter the code reverts to using non-Signature (type erased)
959 for (Parameter parameter
1002 private final Parameter parameter; field in class:ParameterTest.ExecutableTestHelper.ParameterTestHelper
1004 ParameterTestHelper(Parameter parameter) argument
[all...]
/libcore/luni/src/test/java/libcore/java/security/
H A DProviderTest.java399 fail("Should throw on non-Key parameter");
418 public Object parameter; field in class:ProviderTest.MockSpi
420 public MockSpi(MockKey parameter) { argument
421 this.parameter = parameter;
657 public boolean supportsParameter(Object parameter) {
1013 /* Holder class for the provider parameter and the parameter for the operation. */
/libcore/ojluni/src/main/java/java/security/
H A DProvider.java1704 // argument as parameter
1720 * Test whether this Service can use the specified parameter.
1721 * Returns false if this service cannot use the parameter. Returns
1722 * true if this service can use the parameter, if a fast test is
1730 * <p>For details and the values of parameter that are valid for the
1737 * @param parameter the parameter to test
1740 * parameter; true if it can possibly use the parameter
1742 * @throws InvalidParameterException if the value of parameter i
1746 supportsParameter(Object parameter) argument
[all...]

Completed in 3571 milliseconds