Searched refs:compose (Results 1 - 25 of 52) sorted by relevance

123

/openjdk10/langtools/test/tools/javac/lambda/
H A DTargetType10.java16 <A,B,C> Function<A,C> compose(Function<B,C> g, Function<A,? extends B> f) { return null; } method in class:TargetType10.Test
17 { compose(x -> "a" + x, x -> x + "b"); }
H A DTargetType45.java22 static <U, V> Predicate<U> compose(Predicate<? super V> pi, Mapper<? super U, ? extends V> m) { return null; } method in class:TargetType45
27 foos.filter(compose(isOdd, (String e) -> e.length()));
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DCompositeContext.java63 public void compose(Raster src, method in interface:CompositeContext
/openjdk10/nashorn/test/script/basic/
H A DJDK-8031359.js41 // Function.compose is another default method
42 func.compose(new java.util.function.Function() {
44 print("compose called with " + arg);
/openjdk10/jdk/src/java.base/share/classes/java/util/function/
H A DDoubleUnaryOperator.java64 default DoubleUnaryOperator compose(DoubleUnaryOperator before) { method in interface:DoubleUnaryOperator
80 * @see #compose(DoubleUnaryOperator)
H A DIntUnaryOperator.java64 default IntUnaryOperator compose(IntUnaryOperator before) { method in interface:IntUnaryOperator
80 * @see #compose(IntUnaryOperator)
H A DLongUnaryOperator.java64 default LongUnaryOperator compose(LongUnaryOperator before) { method in interface:LongUnaryOperator
80 * @see #compose(LongUnaryOperator)
H A DFunction.java66 default <V> Function<V, R> compose(Function<? super V, ? extends T> before) { method in interface:Function
84 * @see #compose(Function)
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/harfbuzz/
H A Dhb-ot-shape-normalize-private.hh62 bool (*compose) (const hb_ot_shape_normalize_context_t *c, member in struct:hb_ot_shape_normalize_context_t
H A Dhb-unicode-private.hh50 HB_UNICODE_FUNC_IMPLEMENT (compose) \
77 inline hb_bool_t compose (hb_codepoint_t a, hb_codepoint_t b, function in struct:hb_unicode_funcs_t
82 return func.compose (this, a, b, ab, user_data.compose);
H A Dhb-ot-shape-normalize.cc68 * - The complex shapers can customize the compose and decompose functions to
88 return (bool) c->unicode->compose (a, b, ab);
303 plan->shaper->compose ? plan->shaper->compose : compose_unicode
376 if (/* We don't try to compose a non-mark character with it's preceding starter.
377 * This is both an optimization to avoid trying to compose every two neighboring
385 /* And compose. */
386 c.compose (&c,
407 /* Blocked, or doesn't compose. */
H A Dhb-ot-shape-complex-hebrew.cc71 bool found = (bool) c->unicode->compose (a, b, ab);
/openjdk10/nashorn/src/jdk.dynalink/share/classes/jdk/dynalink/support/
H A DSimpleRelinkableCallSite.java109 setTarget(guardedInvocation.compose(relinkAndInvoke));
H A DChainedCallSite.java201 target = inv.compose(target, pruneAndInvokeSwitchPoints, pruneAndInvokeCatches);
/openjdk10/nashorn/src/jdk.dynalink/share/classes/jdk/dynalink/beans/
H A DGuardedInvocationComponent.java154 GuardedInvocationComponent compose(final MethodHandle compositeInvocation, final MethodHandle otherGuard, method in class:GuardedInvocationComponent
156 final Validator compositeValidator = validator.compose(new Validator(otherValidatorClass, otherValidationType));
170 Validator compose(final Validator other) { method in class:GuardedInvocationComponent.Validator
/openjdk10/jdk/test/sun/java2d/loops/
H A DBug7049339.java61 public void compose(Raster src, Raster dstIn,
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DThaiLayoutEngine.cpp83 // NOTE: this assumes that ThaiShaping::compose will allocate the outChars array...
115 glyphCount = ThaiShaping::compose(chars, offset, count, fGlyphSet, fErrorChar, outChars, glyphStorage);
H A DThaiShaping.h96 static le_int32 compose(const LEUnicode *input, le_int32 offset, le_int32 charCount, le_uint8 glyphSet,
/openjdk10/nashorn/src/jdk.dynalink/share/classes/jdk/dynalink/linker/
H A DGuardedInvocation.java448 public MethodHandle compose(final MethodHandle fallback) { method in class:GuardedInvocation
449 return compose(fallback, fallback, fallback);
464 public MethodHandle compose(final MethodHandle guardFallback, final MethodHandle switchpointFallback, final MethodHandle catchFallback) { method in class:GuardedInvocation
/openjdk10/corba/src/java.corba/share/classes/com/sun/corba/se/impl/orb/
H A DParserTable.java273 OperationFactory.compose( OperationFactory.integerRangeAction( 0, 3 ),
493 Operation ttcprtOp = OperationFactory.compose(op2, rtOp);
513 Operation op3 = OperationFactory.compose( op2, uslop ) ;
838 Operation op1 = OperationFactory.compose( rangeop, admap ) ;
839 Operation result = OperationFactory.compose( op1, OperationFactory.convertIntegerToShort() ) ;
861 Operation result = OperationFactory.compose( OperationFactory.integerAction(),
880 Operation result = OperationFactory.compose( gvHelper, gvMain );
929 Operation op1 = OperationFactory.compose( indexOp, clsop ) ;
973 Operation result = OperationFactory.compose( mop, mkinst ) ;
1047 Operation op1 = OperationFactory.compose( indexO
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/sun/java2d/
H A DSunCompositeContext.java91 public void compose(Raster src1, Raster src2, WritableRaster dst) { method in class:SunCompositeContext
/openjdk10/jdk/src/java.base/share/classes/java/lang/module/
H A DModuleFinder.java339 static ModuleFinder compose(ModuleFinder... finders) { method in interface:ModuleFinder
/openjdk10/jdk/test/sun/java2d/pisces/
H A DOpenJDKFillBug.java167 public void compose(Raster src,Raster dstIn,WritableRaster dstOut) method in class:OpenJDKFillBug.CustomComposite.CustomCompositeContext
/openjdk10/jdk/src/java.base/share/classes/sun/text/normalizer/
H A DNorm2AllModes.java208 impl.compose(src, 0, src.length(), onlyContiguous, true, buffer);
220 return impl.compose(s, 0, s.length(),
/openjdk10/jdk/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DGroupByOpTest.java116 new MapperData<>(LambdaTestHelpers.compose(mId, mDoubler), uniqueSize),
117 new MapperData<>(LambdaTestHelpers.compose(mDoubler, mDoubler), uniqueSize),

Completed in 212 milliseconds

123