Searched refs:filter (Results 1 - 25 of 1025) sorted by relevance

1234567891011>>

/openjdk10/nashorn/test/script/basic/
H A DJDK-8007060.js25 * JDK-8007060 : Primitive wrap filter throws ClassCastException in test262parallel
71 [1, 2, 3].filter(F, 1);
72 [1, 2, 3].filter(F, {});
73 [1, 2, 3].filter(F, "hello");
74 [1, 2, 3].filter(F, 1);
75 [1, 2, 3].filter(F, {});
76 [1, 2, 3].filter(F, "hello");
77 [1, 2, 3].filter(F, 1);
78 [1, 2, 3].filter(F, {});
79 [1, 2, 3].filter(
[all...]
/openjdk10/jdk/src/java.naming/share/classes/com/sun/jndi/ldap/
H A DFilter.java45 * First convert filter string into byte[].
49 * Then parse the byte[] as a filter, converting \hh to
50 * a single byte, and encoding the resulting filter
57 throw new InvalidSearchFilterException("Empty filter");
59 byte[] filter;
62 filter = filterStr.getBytes("UTF8");
64 filter = filterStr.getBytes("8859_1");
66 filterLen = filter.length;
69 System.err.println("String filter: " + filterStr);
71 dprint("original: ", filter,
77 encodeFilter(BerEncoder ber, byte[] filter, int filterStart, int filterEnd) argument
317 encodeSimpleFilter(BerEncoder ber, byte[] filter, int filtStart, int filtEnd) argument
583 encodeSubstringFilter(BerEncoder ber, byte[] filter, int typeStart, int typeEnd, int valueStart, int valueEnd) argument
642 encodeComplexFilter(BerEncoder ber, byte[] filter, int filterType, int filtOffset[], int filtEnd) argument
672 findRightParen(byte[] filter, int filtOffset[], int end) argument
710 encodeFilterList(BerEncoder ber, byte[] filter, int filterType, int start, int end) argument
755 encodeExtensibleMatch(BerEncoder ber, byte[] filter, int matchStart, int matchEnd, int valueStart, int valueEnd) argument
[all...]
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/Filter/src/com/sun/hotspot/igv/filter/
H A DFilterChainProvider.java24 package com.sun.hotspot.igv.filter;
H A DFilterChain.java24 package com.sun.hotspot.igv.filter;
94 public void addFilter(Filter filter) { argument
95 assert filter != null;
96 filters.add(filter);
97 filter.getChangedEvent().addListener(changedListener);
101 public boolean containsFilter(Filter filter) { argument
102 return filters.contains(filter);
105 public void removeFilter(Filter filter) { argument
106 assert filters.contains(filter);
107 filters.remove(filter);
112 moveFilterUp(Filter filter) argument
122 moveFilterDown(Filter filter) argument
[all...]
/openjdk10/langtools/test/tools/javac/generics/inference/
H A DNestedCapture.java35 abstract <E> List<E> filter(List<E> lx); method in class:NestedCapture
38 copyOf(filter(lx));
42 copyOf(filter(lx));
/openjdk10/jdk/test/java/util/stream/test/org/openjdk/tests/java/util/stream/
H A DFilterOpTest.java42 assertCountSum(countTo(0).stream().filter(pTrue), 0, 0);
43 assertCountSum(countTo(10).stream().filter(pFalse), 0, 0);
44 assertCountSum(countTo(10).stream().filter(pEven), 5, 30);
45 assertCountSum(countTo(10).stream().filter(pOdd), 5, 25);
46 assertCountSum(countTo(10).stream().filter(pTrue), 10, 55);
47 assertCountSum(countTo(10).stream().filter(pEven).filter(pOdd), 0, 0);
49 exerciseOps(countTo(1000), s -> s.filter(pTrue), countTo(1000));
50 exerciseOps(countTo(1000), s -> s.filter(pFalse), countTo(0));
51 exerciseOps(countTo(1000), s -> s.filter(
[all...]
/openjdk10/jdk/test/javax/sound/midi/Gervill/SoftFilter/
H A DTestProcessAudio.java43 SoftFilter filter = new SoftFilter(format.getSampleRate());
49 if(t == 0) filter.setFilterType(SoftFilter.FILTERTYPE_BP12);
50 if(t == 1) filter.setFilterType(SoftFilter.FILTERTYPE_HP12);
51 if(t == 2) filter.setFilterType(SoftFilter.FILTERTYPE_HP24);
52 if(t == 3) filter.setFilterType(SoftFilter.FILTERTYPE_LP12);
53 if(t == 4) filter.setFilterType(SoftFilter.FILTERTYPE_LP24);
54 if(t == 5) filter.setFilterType(SoftFilter.FILTERTYPE_LP6);
55 if(t == 6) filter.setFilterType(SoftFilter.FILTERTYPE_NP12);
61 filter.reset();
62 filter
[all...]
/openjdk10/jdk/src/java.xml.crypto/share/classes/javax/xml/crypto/dsig/spec/
H A DXPathType.java72 * Represents the filter set operation.
91 * The intersect filter operation.
96 * The subtract filter operation.
101 * The union filter operation.
107 private final Filter filter; field in class:XPathType
112 * expression and filter.
115 * @param filter the filter operation ({@link Filter#INTERSECT},
118 * <code>filter</code> is <code>null</code>
120 public XPathType(String expression, Filter filter) { argument
149 XPathType(String expression, Filter filter, Map<String,String> namespaceMap) argument
[all...]
/openjdk10/make/
H A DModuleWrapper.gmk51 FILES := $(filter $(TO_BIN_FILTER), \
52 $(filter $(SUPPORT_OUTPUTDIR)/modules_libs/$(MODULE)/%, \
59 FILES := $(filter-out $(TO_BIN_FILTER), \
60 $(filter $(SUPPORT_OUTPUTDIR)/modules_libs/$(MODULE)/%, \
68 FILES := $(filter %$(SHARED_LIBRARY_SUFFIX), \
69 $(filter $(SUPPORT_OUTPUTDIR)/modules_libs/$(MODULE)/%, \
75 FILES := $(filter-out %$(SHARED_LIBRARY_SUFFIX), \
76 $(filter $(SUPPORT_OUTPUTDIR)/modules_libs/$(MODULE)/%, \
86 FILES := $(filter $(SUPPORT_OUTPUTDIR)/modules_include/$(MODULE)/%, \
93 FILES := $(filter
[all...]
/openjdk10/hotspot/src/share/tools/IdealGraphVisualizer/FilterWindow/src/com/sun/hotspot/igv/filterwindow/
H A DFilterChainProviderImplementation.java26 import com.sun.hotspot.igv.filter.FilterChain;
27 import com.sun.hotspot.igv.filter.FilterChainProvider;
H A DFilterNode.java27 import com.sun.hotspot.igv.filter.Filter;
28 import com.sun.hotspot.igv.filter.FilterChain;
50 private Filter filter; field in class:FilterNode
53 public FilterNode(Filter filter) { argument
54 this(filter, new InstanceContent());
57 private FilterNode(Filter filter, InstanceContent content) { argument
59 content.add(filter);
61 content.add(filter.getEditor());
62 this.filter = filter;
[all...]
/openjdk10/jaxp/src/java.xml/share/classes/org/w3c/dom/traversal/
H A DDocumentTraversal.java65 * filter, if any, are not considered when setting this position. The
72 * @param filter The <code>NodeFilter</code> to be used with this
74 * filter.
84 NodeFilter filter,
106 * @param filter The <code>NodeFilter</code> to be used with this
107 * <code>TreeWalker</code>, or <code>null</code> to indicate no filter.
118 NodeFilter filter,
82 createNodeIterator(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion) argument
116 createTreeWalker(Node root, int whatToShow, NodeFilter filter, boolean entityReferenceExpansion) argument
/openjdk10/jdk/src/jdk.jdwp.agent/share/native/libjdwp/
H A DeventFilter.c134 * The following macros extract filter info (EventFilters) from private
143 /***** filter set-up / destruction *****/
160 Filter *filter; local
168 for (i = 0, filter = FILTERS_ARRAY(node);
170 i++, filter++) {
171 filter->modifier = JDWP_REQUEST_NONE;
179 * Free up global refs held by the filter.
188 Filter *filter = FILTERS_ARRAY(node); local
190 for (i = 0; i < FILTER_COUNT(node); ++i, ++filter) {
191 switch (filter
383 Filter *filter = FILTERS_ARRAY(node); local
567 Filter *filter = FILTERS_ARRAY(node); local
621 Filter *filter; local
687 Filter *filter = FILTERS_ARRAY(node); local
705 ConditionalFilter *filter = &FILTER(node, index).u.Conditional; local
718 CountFilter *filter = &FILTER(node, index).u.Count; local
736 ThreadFilter *filter = &FILTER(node, index).u.ThreadOnly; local
757 LocationFilter *filter = &FILTER(node, index).u.LocationOnly; local
784 FieldFilter *filter = &FILTER(node, index).u.FieldOnly; local
807 ClassFilter *filter = &FILTER(node, index).u.ClassOnly; local
833 ExceptionFilter *filter = &FILTER(node, index).u.ExceptionOnly; local
859 InstanceFilter *filter = &FILTER(node, index).u.InstanceOnly; local
880 MatchFilter *filter = &FILTER(node, index).u.ClassMatch; local
901 MatchFilter *filter = &FILTER(node, index).u.ClassExclude; local
924 StepFilter *filter = &FILTER(node, index).u.Step; local
951 SourceNameFilter *filter = &FILTER(node, index).u.SourceNameOnly; local
976 Filter *filter; local
998 Filter *filter = FILTERS_ARRAY(node); local
1023 Filter *filter; local
1053 Filter *filter; local
1103 Filter *filter = FILTERS_ARRAY(node); local
1127 Filter *filter; local
1158 Filter *filter; local
1190 Filter *filter = FILTERS_ARRAY(node); local
[all...]
/openjdk10/hotspot/make/
H A DCopyToExplodedJdk.gmk27 LIB_TARGETS := $(filter $(LIB_OUTPUTDIR)/%, $(TARGETS))
32 FILES := $(filter-out %.lib, $(LIB_TARGETS)), \
38 FILES := $(filter %.lib, $(LIB_TARGETS))))
45 FILES := $(filter %$(SHARED_LIBRARY_SUFFIX), $(LIB_TARGETS)), \
50 FILES := $(filter-out %$(SHARED_LIBRARY_SUFFIX), $(LIB_TARGETS)), \
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.phases.common/src/org/graalvm/compiler/phases/common/util/
H A DHashSetNodeEventListener.java43 private final Set<NodeEvent> filter; field in class:HashSetNodeEventListener
50 this.filter = EnumSet.allOf(NodeEvent.class);
55 * filter.
57 public HashSetNodeEventListener(Set<NodeEvent> filter) { argument
59 this.filter = filter;
66 filter.remove(e);
72 if (filter.contains(e)) {
/openjdk10/jdk/src/java.management/share/classes/com/sun/jmx/remote/internal/
H A DClientListenerInfo.java45 NotificationFilter filter,
51 this.filter = filter;
65 return filter;
92 public boolean sameAs(ObjectName name, NotificationListener listener, NotificationFilter filter, Object handback) { argument
95 getNotificationFilter() == filter &&
101 private final NotificationFilter filter; field in class:ClientListenerInfo
42 ClientListenerInfo(Integer listenerID, ObjectName name, NotificationListener listener, NotificationFilter filter, Object handback, Subject delegationSubject) argument
/openjdk10/jdk/src/java.desktop/share/native/libfontmanager/layout/
H A DSingleSubstitutionSubtables.cpp42 le_uint32 SingleSubstitutionSubtable::process(const LEReferenceTo<SingleSubstitutionSubtable> &base, GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter) const
53 return subtable->process(subtable, glyphIterator, success, filter);
60 return subtable->process(subtable, glyphIterator, success, filter);
68 le_uint32 SingleSubstitutionFormat1Subtable::process(const LEReferenceTo<SingleSubstitutionFormat1Subtable> &base, GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter) const
79 if (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, substitute), success)) {
89 le_uint32 SingleSubstitutionFormat2Subtable::process(const LEReferenceTo<SingleSubstitutionFormat2Subtable> &base, GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter) const
102 if (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, substitute), success)) {
H A DSingleSubstitutionSubtables.h50 le_uint32 process(const LEReferenceTo<SingleSubstitutionSubtable> &base, GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter = NULL) const;
57 le_uint32 process(const LEReferenceTo<SingleSubstitutionFormat1Subtable> &base, GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter = NULL) const;
65 le_uint32 process(const LEReferenceTo<SingleSubstitutionFormat2Subtable> &base, GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter = NULL) const;
/openjdk10/hotspot/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.hotspot.test/src/org/graalvm/compiler/hotspot/test/
H A DAheadOfTimeCompilationTest.java79 assertDeepEquals(2, result.getNodes().filter(ReadNode.class).count());
87 assertDeepEquals(0, result.getNodes().filter(ReadNode.class).count());
98 NodeIterable<ConstantNode> filter = getConstantNodes(result);
99 assertDeepEquals(1, filter.count());
101 assertDeepEquals(type.klass(), filter.first().asConstant());
103 assertDeepEquals(1, result.getNodes().filter(ReadNode.class).count());
110 NodeIterable<ConstantNode> filter = getConstantNodes(result);
111 assertDeepEquals(1, filter.count());
112 JavaConstant c = filter.first().asJavaConstant();
115 assertDeepEquals(0, result.getNodes().filter(ReadNod
[all...]
/openjdk10/jaxws/src/java.xml.bind/share/classes/com/sun/xml/internal/fastinfoset/stax/util/
H A DStAXFilteredParser.java42 public StAXFilteredParser(XMLStreamReader reader, StreamFilter filter) { argument
44 _filter = filter;
47 public void setFilter(StreamFilter filter) { argument
48 _filter = filter;
/openjdk10/jdk/src/java.desktop/share/classes/java/awt/peer/
H A DFileDialogPeer.java62 * Sets the filename filter for filtering the displayed files.
64 * @param filter the filter to set
68 void setFilenameFilter(FilenameFilter filter); argument
/openjdk10/jdk/src/java.rmi/share/classes/sun/rmi/server/
H A DUnicastServerRef2.java64 * liveRef and filter.
67 ObjectInputFilter filter)
69 super(ref, filter);
90 ObjectInputFilter filter)
92 super(new LiveRef(port, csf, ssf), filter);
66 UnicastServerRef2(LiveRef ref, ObjectInputFilter filter) argument
87 UnicastServerRef2(int port, RMIClientSocketFactory csf, RMIServerSocketFactory ssf, ObjectInputFilter filter) argument
/openjdk10/jdk/src/java.management/share/classes/javax/management/
H A DNotificationEmitter.java40 * If a filter was provided with that listener, and if the filter's
54 * <p>If the method call of a filter or listener throws an {@link Exception}, then that
76 * <code>filter</code>, and <code>handback</code> parameters. If
79 * <p>The <code>filter</code> and <code>handback</code> parameters
85 * @param filter The filter that was specified when the listener
92 * given filter and handback.
95 NotificationFilter filter,
94 removeNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback) argument
/openjdk10/jdk/src/java.naming/share/classes/javax/naming/event/
H A DEventDirContext.java40 *<P>Using the search filter, it is possible to register interest in objects
42 * satisfy the filter. However, there might be limitations in the extent
44 * protocol/service. If the caller submits a filter that cannot be
67 * when objects identified by the search filter {@code filter} at
80 * @param filter The nonnull string filter (see RFC2254).
89 void addNamingListener(Name target, String filter, SearchControls ctls, argument
94 * objects identified by the search filter {@code filter} a
109 addNamingListener(String target, String filter, SearchControls ctls, NamingListener l) argument
136 addNamingListener(Name target, String filter, Object[] filterArgs, SearchControls ctls, NamingListener l) argument
157 addNamingListener(String target, String filter, Object[] filterArgs, SearchControls ctls, NamingListener l) argument
[all...]
/openjdk10/langtools/src/jdk.javadoc/share/classes/com/sun/javadoc/
H A DClassDoc.java218 * @param filter Specify true to filter according to the specified access
225 FieldDoc[] fields(boolean filter); argument
254 * @param filter Specify true to filter according to the specified access
262 MethodDoc[] methods(boolean filter); argument
282 * @param filter Specify true to filter according to the specified access
289 ConstructorDoc[] constructors(boolean filter); argument
314 * @param filter Specif
321 innerClasses(boolean filter) argument
[all...]

Completed in 164 milliseconds

1234567891011>>