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

1234567891011>>

/openjdk7/jdk/src/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...]
/openjdk7/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;
96 public void addFilter(Filter filter) { argument
97 assert filter != null;
98 filters.add(filter);
104 public void addFilterSameSequence(Filter filter) { argument
105 assert filter != null;
106 filters.add(filter);
112 public boolean containsFilter(Filter filter) { argument
113 return filters.contains(filter);
116 public void removeFilter(Filter filter) { argument
124 moveFilterUp(Filter filter) argument
136 moveFilterDown(Filter filter) argument
[all...]
H A DScriptEngineAbstraction.java25 package com.sun.hotspot.igv.filter;
/openjdk7/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...]
/openjdk7/jdk/src/share/native/sun/font/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))) {
89 le_uint32 SingleSubstitutionFormat2Subtable::process(const LEReferenceTo<SingleSubstitutionFormat2Subtable> &base, GlyphIterator *glyphIterator, LEErrorCode &success, const LEGlyphFilter *filter) const
100 if (filter == NULL || filter->accept(LE_SET_GLYPH(glyph, substitute))) {
H A DMultipleSubstSubtables.cpp42 le_uint32 MultipleSubstitutionSubtable::process(const LETableReference &base, GlyphIterator *glyphIterator, LEErrorCode& success, const LEGlyphFilter *filter) const
50 // If there's a filter, we only want to do the
57 if (filter != NULL && filter->accept(glyph)) {
79 if (filter != NULL && ! filter->accept(LE_SET_GLYPH(glyph, substitute))) {
86 // If there's a filter, make sure all of the output glyphs
88 if (filter != NULL) {
92 if (! filter->accept(substitute)) {
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;
/openjdk7/jdk/src/share/classes/javax/xml/crypto/dsig/spec/
H A DXPathType.java73 * Represents the filter set operation.
92 * The intersect filter operation.
97 * The subtract filter operation.
102 * The union filter operation.
108 private final Filter filter; field in class:XPathType
113 * expression and filter.
116 * @param filter the filter operation ({@link Filter#INTERSECT},
119 * <code>filter</code> is <code>null</code>
121 public XPathType(String expression, Filter filter) { argument
150 XPathType(String expression, Filter filter, Map namespaceMap) argument
[all...]
/openjdk7/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.java29 import com.sun.hotspot.igv.filter.Filter;
30 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...]
/openjdk7/jaxp/src/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
/openjdk7/jdk/src/share/back/
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...]
/openjdk7/jdk/src/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
/openjdk7/jdk/src/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
/openjdk7/jdk/src/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
H A DNotificationBroadcasterSupport.java48 * <p>If the method call of a filter or listener throws an {@link Exception},
50 * if the method call of a filter or of {@code Executor.execute} or of
163 * @param filter The filter object. If filter is null, no
175 NotificationFilter filter,
182 listenerList.add(new ListenerInfo(listener, filter, handback));
196 NotificationFilter filter,
200 ListenerInfo li = new ListenerInfo(listener, filter, handback);
204 "(with this filter an
174 addNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback) argument
195 removeNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback) argument
280 NotificationFilter filter; field in class:NotificationBroadcasterSupport.ListenerInfo
283 ListenerInfo(NotificationListener listener, NotificationFilter filter, Object handback) argument
[all...]
/openjdk7/jdk/src/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 <tt>filter</tt> 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 <tt>filter</t
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...]
/openjdk7/jaxws/src/share/jaxws_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;
/openjdk7/langtools/src/share/classes/com/sun/javadoc/
H A DClassDoc.java200 * @param filter Specify true to filter according to the specified access
207 FieldDoc[] fields(boolean filter); argument
236 * @param filter Specify true to filter according to the specified access
243 MethodDoc[] methods(boolean filter); argument
263 * @param filter Specify true to filter according to the specified access
270 ConstructorDoc[] constructors(boolean filter); argument
295 * @param filter Specif
302 innerClasses(boolean filter) argument
[all...]
/openjdk7/jdk/src/share/classes/sun/management/
H A DNotificationEmitterSupport.java53 NotificationFilter filter,
76 newList.add(new ListenerInfo(listener, filter, handback));
102 NotificationFilter filter,
116 if (li.filter == filter
127 /* We found this listener, but not with the given filter
131 "with this filter and " +
153 if (li.filter == null
154 || li.filter.isNotificationEnabled(notification)) {
173 NotificationFilter filter; field in class:NotificationEmitterSupport.ListenerInfo
52 addNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback) argument
101 removeNotificationListener(NotificationListener listener, NotificationFilter filter, Object handback) argument
176 ListenerInfo(NotificationListener listener, NotificationFilter filter, Object handback) argument
[all...]
/openjdk7/jdk/test/java/security/Security/
H A DNoInstalledProviders.java28 * @summary Make sure getProviders(filter) doesn't throw NPE
53 String filter = "Signature.SHA1withDSA";
55 provs = Security.getProviders(filter);
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DLazySearchEnumerationImpl.java28 * item in enumeration satifies the given filter.
30 * attributes for used by the filter:
54 private AttrFilter filter; field in class:LazySearchEnumerationImpl
60 AttrFilter filter, SearchControls cons) throws NamingException {
62 this.filter = filter;
72 AttrFilter filter, SearchControls cons,
76 this.filter = filter;
90 AttrFilter filter, SearchControl
59 LazySearchEnumerationImpl(NamingEnumeration candidates, AttrFilter filter, SearchControls cons) argument
71 LazySearchEnumerationImpl(NamingEnumeration candidates, AttrFilter filter, SearchControls cons, Context ctx, Hashtable env, boolean useFactory) argument
89 LazySearchEnumerationImpl(NamingEnumeration candidates, AttrFilter filter, SearchControls cons, Context ctx, Hashtable env) argument
[all...]
/openjdk7/jdk/src/share/demo/nio/zipfs/src/com/sun/nio/zipfs/
H A DZipDirectoryStream.java60 private final DirectoryStream.Filter<? super Path> filter; field in class:ZipDirectoryStream
65 DirectoryStream.Filter<? super java.nio.file.Path> filter)
70 this.filter = filter;
84 itr = zipfs.iteratorOf(path, filter);
64 ZipDirectoryStream(ZipPath zipPath, DirectoryStream.Filter<? super java.nio.file.Path> filter) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/codemodel/internal/writer/
H A DZipCodeWriter.java51 filter = new FilterOutputStream(zip){
58 private final OutputStream filter; field in class:ZipCodeWriter
65 return filter;

Completed in 91 milliseconds

1234567891011>>