Searched defs:combiner (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/
H A DAccessController.java404 * preserve the combiner across the doPrivileged call
406 private static AccessControlContext preserveCombiner(DomainCombiner combiner, argument
418 if (combiner == null) {
421 return new AccessControlContext(combiner.combine(pds, null),
422 combiner);
H A DAccessControlContext.java91 private DomainCombiner combiner = null; field in class:AccessControlContext
154 * @param combiner the <code>DomainCombiner</code> to be associated
166 DomainCombiner combiner) {
181 // combiner and use the newly provided one.
182 this.combiner = combiner;
188 AccessControlContext(ProtectionDomain context[], DomainCombiner combiner) { argument
192 this.combiner = combiner;
235 * get the assigned combiner fro
165 AccessControlContext(AccessControlContext acc, DomainCombiner combiner) argument
[all...]
/openjdk7/jdk/src/share/classes/java/lang/invoke/
H A DMethodHandles.java2037 * The pre-processing is performed by {@code combiner}, a second method handle.
2039 * are copied to the combiner, which is then called.
2040 * (Here, {@code N} is defined as the parameter count of the combiner.)
2042 * from the combiner inserted before the original {@code N} incoming
2045 * If the combiner returns a value, the first parameter type of the target
2046 * must be identical with the return type of the combiner, and the next
2048 * of the combiner.
2050 * If the combiner has a void return, no result will be inserted,
2052 * must exactly match the parameters of the combiner.
2056 * if it corresponds to the result of the combiner
2108 foldArguments(MethodHandle target, MethodHandle combiner) argument
[all...]

Completed in 30 milliseconds