Searched refs:filter (Results 101 - 125 of 1025) sorted by relevance

1234567891011>>

/openjdk10/hotspot/test/applications/jcstress/
H A DTestGenerator.java111 private final Predicate<String> filter; field in class:TestGenerator.JcstressGroup
113 private JcstressGroup(String groupName, Predicate<String> filter) { argument
115 this.filter = filter;
129 if (g.filter.test(s)) {
207 .filter(group.filter)
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/messaging/saaj/packaging/mime/internet/
H A DHeaderTokenizer.java248 boolean filter = false;
263 filter = true;
265 filter = true;
278 if (filter) // need to go thru the token again.
299 filter = true;
301 filter = true;
306 if (filter)
/openjdk10/jaxws/src/java.xml.ws/share/classes/com/sun/xml/internal/ws/encoding/
H A DHeaderTokenizer.java241 boolean filter = false;
256 filter = true;
258 filter = true;
271 if (filter) // need to go thru the token again.
292 filter = true;
294 filter = true;
299 if (filter)
/openjdk10/make/
H A DBundles.gmk57 $$$$(filter $$d/%, $$$$($1_FILES)))) \
62 ifneq ($$(filter %.tar.gz, $$($1_BUNDLE_NAME)), )
64 else ifneq ($$(filter %.zip, $$($1_BUNDLE_NAME)), )
165 ifneq ($(filter product-bundles, $(MAKECMDGOALS)), )
172 # Create special filter rules when dealing with unzipped .dSYM directories on
182 $(filter-out \
191 $(filter \
195 $(filter-out \
205 # Create special filter rules when dealing with unzipped .dSYM directories on
214 JRE_BUNDLE_FILES := $(filter
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/ea/
H A DPEAReadEliminationTest.java54 assertDeepEquals(0, graph.getNodes().filter(LoadIndexedNode.class).count());
74 assertDeepEquals(3, graph.getNodes().filter(LoadIndexedNode.class).count());
75 assertDeepEquals(7, graph.getNodes().filter(StoreIndexedNode.class).count());
98 assertDeepEquals(3, graph.getNodes().filter(LoadIndexedNode.class).count());
117 assertDeepEquals(3, graph.getNodes().filter(LoadIndexedNode.class).count());
133 assertDeepEquals(1, graph.getNodes().filter(RawLoadNode.class).count());
146 assertDeepEquals(3, graph.getNodes().filter(RawLoadNode.class).count());
162 assertDeepEquals(1, graph.getNodes().filter(RawLoadNode.class).count());
176 assertDeepEquals(3, graph.getNodes().filter(RawLoadNode.class).count());
192 assertDeepEquals(1, graph.getNodes().filter(RawLoadNod
[all...]
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/
H A DWaitDispatchSupport.java54 private EventFilter filter; field in class:WaitDispatchSupport
135 * while waiting. The filter is removed on completion of the
142 * @param filter {@code EventFilter} to be set
151 EventFilter filter, long interval)
154 this.filter = filter;
187 if (filter == null) {
190 dispatchThread.pumpEventsForFilter(condition, filter);
246 if (filter != null) {
247 dispatchThread.addEventFilter(filter);
149 WaitDispatchSupport(EventDispatchThread dispatchThread, Conditional extCondition, EventFilter filter, long interval) argument
[all...]
H A DFileDialog.java118 * The filter used as the file dialog's filename filter.
120 * names are accepted by this filter.
128 FilenameFilter filter; field in class:FileDialog
563 * Determines this file dialog's filename filter. A filename filter
568 * @return this file dialog's filename filter
573 return filter;
577 * Sets the filename filter for this file dialog window to the
578 * specified filter
586 setFilenameFilter(FilenameFilter filter) argument
[all...]
/openjdk10/jdk/src/java.desktop/share/native/libmlib_image/
H A Dmlib_ImageAffine.c35 * mlib_filter filter,
45 * filter Type of resampling filter.
54 * The resampling filter can be one of the following:
137 mlib_filter filter,
155 switch (filter) {
177 STORE_PARAM(param, filter);
206 if (nchan != 1 || filter != MLIB_NEAREST)
211 switch (filter) {
250 if (filter !
134 mlib_ImageAffine_alltypes(mlib_image *dst, const mlib_image *src, const mlib_d64 *mtx, mlib_filter filter, mlib_edge edge) argument
302 mlib_ImageAffine(mlib_image *dst, const mlib_image *src, const mlib_d64 *mtx, mlib_filter filter, mlib_edge edge) argument
[all...]
/openjdk10/make/common/
H A DIdlCompilation.gmk54 ifneq ($$(filter $7,$4),)
97 # Prepend the source/bin path to the filter expressions.
104 $1_SRCS := $$(filter $$($1_SRC_INCLUDES),$$($1_SRCS))
105 $1_SRCS := $$(filter-out $$($1_SRC_EXCLUDES),$$($1_SRCS))
106 $1_BINS := $$(filter $$($1_BIN_INCLUDES),$$($1_BINS))
107 $1_BINS := $$(filter-out $$($1_BIN_EXCLUDES),$$($1_BINS))
/openjdk10/nashorn/test/src/jdk/nashorn/internal/codegen/test/
H A DCompilerTest.java115 private void compileTestSet(final File testSetDir, final TestFilter filter) { argument
124 compileJSDirectory(testSetDir, filter);
143 private void compileJSDirectory(final File dir, final TestFilter filter) { argument
144 if (filter != null && filter.exclude(dir, null)) {
149 compileJSDirectory(f, filter);
151 compileJSFile(f, filter);
156 private void compileJSFile(final File file, final TestFilter filter) { argument
168 if (filter != null) {
170 excluded = filter
[all...]
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.core.test/src/org/graalvm/compiler/core/test/
H A DLockEliminationTest.java73 assertDeepEquals(1, graph.getNodes().filter(RawMonitorEnterNode.class).count());
74 assertDeepEquals(1, graph.getNodes().filter(MonitorExitNode.class).count());
91 assertDeepEquals(1, graph.getNodes().filter(RawMonitorEnterNode.class).count());
92 assertDeepEquals(1, graph.getNodes().filter(MonitorExitNode.class).count());
111 assertDeepEquals(1, graph.getNodes().filter(RawMonitorEnterNode.class).count());
112 assertDeepEquals(1, graph.getNodes().filter(MonitorExitNode.class).count());
/openjdk10/jaxws/src/jdk.xml.bind/share/classes/com/sun/codemodel/internal/fmt/
H A DJStaticJavaFile.java73 private final LineFilter filter; field in class:JStaticJavaFile
82 this.filter = _filter;
103 LineFilter filter = createLineFilter();
106 line = filter.process(line);
123 // this filter replaces the package declaration.
135 if( filter!=null )
136 return new ChainFilter(filter,f);
/openjdk10/jdk/make/gensrc/
H A DGensrcProperties.gmk70 $1_SRC_FILES := $$(filter %.properties, $$(call CacheFind, $$($1_SRC_DIRS)))
73 $1_SRC_FILES := $$(filter-out $$($1_EXCLUDE), $$($1_SRC_FILES))
113 $$(eval $$(call SetupCopy-zh_HK,$1_HK,$$(filter %_zh_TW.java, $$($1_JAVAS))))
/openjdk10/jdk/src/java.xml.crypto/share/classes/org/jcp/xml/dsig/internal/dom/
H A DDOMXPathFilter2Transform.java92 throw new MarshalException("filter cannot be null");
94 XPathType.Filter filter = null;
96 filter = XPathType.Filter.INTERSECT;
98 filter = XPathType.Filter.SUBTRACT;
100 filter = XPathType.Filter.UNION;
102 throw new MarshalException("Unknown XPathType filter type" +
117 list.add(new XPathType(xPath, filter, namespaceMap));
119 list.add(new XPathType(xPath, filter));
/openjdk10/jdk/test/java/nio/file/DirectoryStream/
H A DBasic.java72 DirectoryStream.Filter<Path> filter = new DirectoryStream.Filter<Path>() {
79 try (DirectoryStream<Path> ds = newDirectoryStream(dir, filter)) {
87 filter = new DirectoryStream.Filter<Path>() {
94 try (DirectoryStream<Path> ds = newDirectoryStream(dir, filter)) {
99 // check that an IOException thrown by a filter is propagated
100 filter = new DirectoryStream.Filter<Path>() {
105 stream = newDirectoryStream(dir, filter);
117 // check that exception or error thrown by filter is not thrown
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.debug/src/org/graalvm/compiler/debug/
H A DDebugConfigImpl.java161 private boolean isEnabled(DebugContext.Scope scope, DebugFilter filter) { argument
162 return getLevel(scope, filter) > 0;
165 private int getLevel(DebugContext.Scope scope, DebugFilter filter) { argument
167 if (filter == null) {
171 level = filter.matchLevel(currentScope);
179 private boolean isEnabledForMethod(DebugContext.Scope scope, DebugFilter filter) { argument
180 return filter != null && checkMethodFilter(scope);
227 private static void add(StringBuilder sb, String name, Object filter) { argument
228 if (filter != null) {
232 if (filter instanceo
[all...]
/openjdk10/hotspot/test/compiler/compilercontrol/share/pool/
H A DPoolHelper.java68 * Gets all methods from the pool using specified filter
70 * @param filter method filter
74 Predicate<Executable> filter) {
76 .filter(pair -> filter.test(pair.first))
73 getAllMethods( Predicate<Executable> filter) argument
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DLigatureSubstSubtables.cpp43 le_uint32 LigatureSubstitutionSubtable::process(const LETableReference &base, GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter) const
84 if (comp == compCount && (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, ligGlyph), success))) {
/openjdk10/jdk/src/java.base/macosx/native/libnio/ch/
H A DKQueue.c54 return offsetof(struct kevent, filter);
74 jint fd, jint filter, jint flags)
81 EV_SET(&changes[0], fd, filter, flags, 0, 0, 0);
73 Java_sun_nio_ch_KQueue_keventRegister(JNIEnv *env, jclass c, jint kqfd, jint fd, jint filter, jint flags) argument
/openjdk10/jdk/test/jdk/internal/jimage/
H A DJImageOpenTest.java49 .filter(p -> p.getNameCount() > 2)
50 .filter(p -> ModuleLayer.boot().findModule(p.getName(1).toString()).isPresent())
53 .filter(s -> s.endsWith(".class") && !s.endsWith("module-info.class"))
/openjdk10/jdk/test/jdk/modules/etc/
H A DUpgradeableModules.java70 .filter(hashedModules::contains)
77 .filter(mn -> !UPGRADEABLE_MODULES.contains(mn))
83 .filter(mn -> !hashedModules.contains(mn))
/openjdk10/jdk/test/tools/jimage/
H A DJImageListTest.java56 .filter(s -> s.startsWith("Module: "))
87 .filter(s -> s.startsWith("Module: "))
94 .filter(s -> { return !s.startsWith("Module: ") && !s.startsWith("Offset"); })
96 .filter(s -> !s.matches("\\s+\\d+\\s+\\d+\\s+\\d+\\s+.*"))
113 .filter(s -> s.startsWith("java/util/zip"))
119 .filter(s -> !s.startsWith("jimage:") && !s.startsWith("Module:"))
128 .filter(s -> !s.startsWith("jimage:") && !s.startsWith("Module:"))
149 .filter(s -> s.startsWith("java/text/"))
156 .filter(s -> !s.startsWith("jimage:") && !s.startsWith("Module:"))
167 .filter(
[all...]
/openjdk10/langtools/test/tools/javap/4111861/
H A DT4111861.java46 if (!filter(out).equals(filter(read(a_java)))) {
86 String filter(String s) throws IOException { method in class:T4111861
/openjdk10/make/devkit/
H A DMakefile75 $(foreach p,$(filter-out $(me),$(platforms)),$(eval $(p) : $$(me)))
87 for p in $@ $(filter-out $@,$(platforms)); do \
95 $(foreach a,i686 x86_64,$(eval $(a) : $(filter $(a)%,$(platforms))))
/openjdk10/jdk/test/javax/management/remote/mandatory/threads/
H A DExecutorShutdownTest.java79 NotificationFilterSupport filter = new NotificationFilterSupport();
80 filter.enableType(NOTIF_TYPE);
81 mbsc.addNotificationListener(emitName, listener, filter, null);

Completed in 299 milliseconds

1234567891011>>