Searched refs:predicate (Results 1 - 25 of 122) sorted by relevance

12345

/openjdk9/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.graph/src/org/graalvm/compiler/graph/iterators/
H A DPredicatedProxyNodeIterator.java32 private final NodePredicate predicate; field in class:PredicatedProxyNodeIterator
34 public PredicatedProxyNodeIterator(Iterator<T> iterator, NodePredicate predicate) { argument
36 this.predicate = predicate;
41 while ((current == null || !current.isAlive() || !predicate.apply(current)) && iterator.hasNext()) {
44 if (current != null && (!current.isAlive() || !predicate.apply(current))) {
H A DFilteredNodeIterable.java32 protected NodePredicate predicate = NodePredicates.alwaysTrue(); field in class:FilteredNodeIterable
39 this.predicate = this.predicate.and(nodePredicate);
45 return new PredicatedProxyNodeIterator<>(nodeIterable.iterator(), predicate);
/openjdk9/hotspot/test/compiler/rtm/cli/
H A DTestRTMAbortRatioOptionOnUnsupportedConfig.java43 import compiler.testlibrary.rtm.predicate.SupportedCPU;
44 import compiler.testlibrary.rtm.predicate.SupportedOS;
45 import compiler.testlibrary.rtm.predicate.SupportedVM;
46 import jdk.test.lib.cli.predicate.AndPredicate;
47 import jdk.test.lib.cli.predicate.NotPredicate;
H A DTestPrintPreciseRTMLockingStatisticsOptionOnUnsupportedConfig.java43 import compiler.testlibrary.rtm.predicate.SupportedCPU;
44 import compiler.testlibrary.rtm.predicate.SupportedOS;
45 import compiler.testlibrary.rtm.predicate.SupportedVM;
46 import jdk.test.lib.cli.predicate.AndPredicate;
47 import jdk.test.lib.cli.predicate.NotPredicate;
H A DTestRTMTotalCountIncrRateOptionOnUnsupportedConfig.java43 import compiler.testlibrary.rtm.predicate.SupportedCPU;
44 import compiler.testlibrary.rtm.predicate.SupportedOS;
45 import compiler.testlibrary.rtm.predicate.SupportedVM;
46 import jdk.test.lib.cli.predicate.AndPredicate;
47 import jdk.test.lib.cli.predicate.NotPredicate;
H A DTestUseRTMDeoptOptionOnUnsupportedConfig.java43 import compiler.testlibrary.rtm.predicate.SupportedCPU;
44 import compiler.testlibrary.rtm.predicate.SupportedOS;
45 import compiler.testlibrary.rtm.predicate.SupportedVM;
47 import jdk.test.lib.cli.predicate.AndPredicate;
48 import jdk.test.lib.cli.predicate.NotPredicate;
H A DTestUseRTMForStackLocksOptionOnUnsupportedConfig.java43 import compiler.testlibrary.rtm.predicate.SupportedCPU;
44 import compiler.testlibrary.rtm.predicate.SupportedOS;
45 import compiler.testlibrary.rtm.predicate.SupportedVM;
48 import jdk.test.lib.cli.predicate.AndPredicate;
49 import jdk.test.lib.cli.predicate.NotPredicate;
H A DTestPrintPreciseRTMLockingStatisticsOptionOnSupportedConfig.java43 import compiler.testlibrary.rtm.predicate.SupportedCPU;
44 import compiler.testlibrary.rtm.predicate.SupportedOS;
45 import compiler.testlibrary.rtm.predicate.SupportedVM;
47 import jdk.test.lib.cli.predicate.AndPredicate;
/openjdk9/hotspot/test/compiler/testlibrary/rtm/predicate/
H A DSupportedVM.java24 package compiler.testlibrary.rtm.predicate;
H A DSupportedCPU.java24 package compiler.testlibrary.rtm.predicate;
/openjdk9/hotspot/test/compiler/intrinsics/sha/sanity/
H A DTestSHA512MultiBlockIntrinsics.java95 import compiler.testlibrary.sha.predicate.IntrinsicPredicates;
H A DTestSHA256MultiBlockIntrinsics.java94 import compiler.testlibrary.sha.predicate.IntrinsicPredicates;
H A DTestSHA512Intrinsics.java78 import compiler.testlibrary.sha.predicate.IntrinsicPredicates;
H A DTestSHA256Intrinsics.java78 import compiler.testlibrary.sha.predicate.IntrinsicPredicates;
H A DTestSHA1MultiBlockIntrinsics.java67 import compiler.testlibrary.sha.predicate.IntrinsicPredicates;
H A DTestSHA1Intrinsics.java59 import compiler.testlibrary.sha.predicate.IntrinsicPredicates;
H A DSHASanityTestBase.java56 private final BooleanSupplier predicate; field in class:SHASanityTestBase
61 * which is expected to be emitted if {@code predicate} is evaluated to
64 * @param predicate The predicate indicating if the intrinsic is expected to
68 protected SHASanityTestBase(BooleanSupplier predicate, String intrinsicID) { argument
69 this.predicate = predicate;
102 String.valueOf(predicate.getAsBoolean()));
/openjdk9/jdk/src/jdk.jlink/share/classes/jdk/tools/jlink/internal/plugins/
H A DStripDebugPlugin.java41 private final Predicate<String> predicate; field in class:StripDebugPlugin
47 StripDebugPlugin(Predicate<String> predicate) { argument
48 this.predicate = predicate;
79 } else if (predicate.test(res.path())) {
/openjdk9/hotspot/test/compiler/intrinsics/sha/cli/
H A DSHAOptionsBase.java26 import compiler.testlibrary.sha.predicate.IntrinsicPredicates;
98 * Returns the predicate indicating whether or not CPU instructions required
101 * @param optionName The name of the option for which a predicate should be
103 * @return The predicate on availability of CPU instructions required by the
135 private final BooleanSupplier predicate; field in class:SHAOptionsBase.TestCase
137 protected TestCase(String optionName, BooleanSupplier predicate) { argument
139 this.predicate = predicate;
144 if (!predicate.getAsBoolean()) {
146 + " due to predicate failur
[all...]
/openjdk9/hotspot/test/compiler/rtm/locking/
H A DTestUseRTMForStackLocks.java45 import compiler.testlibrary.rtm.predicate.SupportedCPU;
46 import compiler.testlibrary.rtm.predicate.SupportedOS;
47 import compiler.testlibrary.rtm.predicate.SupportedVM;
51 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestRTMLockingCalculationDelay.java45 import compiler.testlibrary.rtm.predicate.SupportedCPU;
46 import compiler.testlibrary.rtm.predicate.SupportedOS;
47 import compiler.testlibrary.rtm.predicate.SupportedVM;
51 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestUseRTMForInflatedLocks.java44 import compiler.testlibrary.rtm.predicate.SupportedCPU;
45 import compiler.testlibrary.rtm.predicate.SupportedOS;
46 import compiler.testlibrary.rtm.predicate.SupportedVM;
50 import jdk.test.lib.cli.predicate.AndPredicate;
H A DTestUseRTMDeopt.java45 import compiler.testlibrary.rtm.predicate.SupportedCPU;
46 import compiler.testlibrary.rtm.predicate.SupportedOS;
47 import compiler.testlibrary.rtm.predicate.SupportedVM;
51 import jdk.test.lib.cli.predicate.AndPredicate;
/openjdk9/hotspot/test/compiler/cpuflags/predicate/
H A DAESSupportPredicate.java24 package compiler.cpuflags.predicate;
/openjdk9/hotspot/test/compiler/intrinsics/sha/cli/testcases/
H A DUseSHAIntrinsicsSpecificTestCaseForUnsupportedCPU.java27 import compiler.testlibrary.sha.predicate.IntrinsicPredicates;
31 import jdk.test.lib.cli.predicate.AndPredicate;
32 import jdk.test.lib.cli.predicate.NotPredicate;
33 import jdk.test.lib.cli.predicate.OrPredicate;

Completed in 133 milliseconds

12345