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

/dalvik/libcore/security/src/main/java/org/bouncycastle/i18n/filter/
H A DFilter.java2 package org.bouncycastle.i18n.filter;
8 * Runs the filter on the input String and returns the filtered String
H A DHTMLFilter.java2 package org.bouncycastle.i18n.filter;
H A DSQLFilter.java2 package org.bouncycastle.i18n.filter;
H A DUntrustedInput.java2 package org.bouncycastle.i18n.filter;
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/
H A DDOM3Serializer.java146 * Sets a LSSerializerFilter on the DOM Level 3 Serializer to filter nodes
151 * @param filter the Level 3 LSSerializerFilter
153 public void setNodeFilter(LSSerializerFilter filter); argument
156 * Returns a LSSerializerFilter set on the DOM Level 3 Serializer to filter nodes
/dalvik/libcore/xml/src/main/java/org/w3c/dom/ls/
H A DLSSerializer.java326 * When the application provides a filter, the serializer will call out
327 * to the filter before serializing each Node. The filter implementation
330 * <br> The filter is invoked after the operations requested by the
332 * example, CDATA sections won't be passed to the filter if "<a href='http://www.w3.org/TR/DOM-Level-3-Core/core.html#parameter-cdata-sections'>
339 * When the application provides a filter, the serializer will call out
340 * to the filter before serializing each Node. The filter implementation
343 * <br> The filter is invoked after the operations requested by the
345 * example, CDATA sections won't be passed to the filter i
350 setFilter(LSSerializerFilter filter) argument
[all...]
H A DLSParser.java260 * When a filter is provided, the implementation will call out to the
261 * filter as it is constructing the DOM tree structure. The filter can
264 * <br> The filter is invoked after the operations requested by the
268 * filter.
272 * When a filter is provided, the implementation will call out to the
273 * filter as it is constructing the DOM tree structure. The filter can
276 * <br> The filter is invoked after the operations requested by the
280 * filter
282 setFilter(LSParserFilter filter) argument
[all...]
/dalvik/hit/src/com/android/hit/
H A DArrayInstance.java79 public final void visit(Set<Instance> resultSet, Filter filter) { argument
85 if (null != filter) {
86 if (filter.accept(this)) {
121 instance.visit(resultSet, filter);
H A DClassInstance.java93 public final void visit(Set<Instance> resultSet, Filter filter) { argument
98 if (filter != null) {
99 if (filter.accept(this)) {
134 instance.visit(resultSet, filter);
H A DRootObj.java84 public final void visit(Set<Instance> resultSet, Filter filter) { argument
89 if (filter != null) {
90 if (filter.accept(this)) {
H A DInstance.java58 * of the object graph. If non-null, the filter is applied to each
62 public abstract void visit(Set<Instance> resultSet, Filter filter); argument
H A DClassObj.java178 public final void visit(Set<Instance> resultSet, Filter filter) { argument
183 if (filter != null) {
184 if (filter.accept(this)) {
219 instance.visit(resultSet, filter);
/dalvik/libcore/security/src/main/java/org/bouncycastle/i18n/
H A DLocalizedMessage.java11 import org.bouncycastle.i18n.filter.Filter;
12 import org.bouncycastle.i18n.filter.UntrustedInput;
23 protected Filter filter = null; field in class:LocalizedMessage
124 * Sets the {@link Filter} that is used to filter the arguments of this message
125 * @param filter the {@link Filter} to use. <code>null</code> to disable filtering.
127 public void setFilter(Filter filter) argument
129 if (filter == null)
133 else if (!filter.equals(this.filter))
140 filteredArguments[i] = filter
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/serializer/dom3/
H A DDOM3SerializerImpl.java78 * Returns a LSSerializerFilter set on the DOM Level 3 Serializer to filter nodes
129 * Sets a LSSerializerFilter on the DOM Level 3 Serializer to filter nodes
134 * @param filter the Level 3 LSSerializerFilter
136 public void setNodeFilter(LSSerializerFilter filter) { argument
137 fSerializerFilter = filter;
H A DLSSerializerImpl.java100 // A filter set on the LSSerializer
850 * Set a LSSerilizerFilter on the LSSerializer. When set, the filter is
856 * @param filter A LSSerializerFilter to be applied to the stream to serialize.
858 public void setFilter(LSSerializerFilter filter) { argument
859 fSerializerFilter = filter;
1059 // Set the filter on the DOM3Serializer interface implementation
1169 // Set the filter on the DOM3Serializer interface implementation
1324 // Set the filter on the DOM3Serializer interface implementation
H A DDOM3TreeWalker.java207 LSSerializerFilter filter,
212 fFilter = filter;
470 * Applies a filter on the node to serialize
505 //DocumentType nodes are never passed to the filter
581 // apply the LSSerializer filter after the operations requested by the
613 // REVISIT: We apply the LSSerializer filter for elements before
639 // apply the LSSerializer filter
802 // Default attr's are not passed to the filter and this contraint
813 // apply the filter for Attributes that are not default attributes
897 // apply the LSSerializer filter
204 DOM3TreeWalker( SerializationHandler serialHandler, DOMErrorHandler errHandler, LSSerializerFilter filter, String newLine) argument
[all...]
/dalvik/libcore/security/src/main/java/java/security/
H A DSecurity.java303 * filter. The specified filter must be supplied in one of two formats:
314 * @param filter
315 * case-insensitive filter.
316 * @return the providers which meet the user supplied string filter {@code
317 * filter}. A {@code null} value signifies that none of the
318 * installed providers meets the filter specification.
320 * if an unusable filter is supplied.
322 * if {@code filter} is {@code null}.
324 public static Provider[] getProviders(String filter) { argument
370 getProviders(Map<String,String> filter) argument
[all...]
/dalvik/libcore/logging/src/main/java/java/util/logging/
H A DHandler.java48 // the filter used to filter undesired messages
49 private Filter filter; field in class:Handler
57 * level {@code Level.ALL}. It has no filter and no formatter.
63 this.filter = null;
110 * init the common properties, including filter, level, formatter, and
117 // set filter
118 final String filterName = manager.getProperty(prefix + ".filter"); //$NON-NLS-1$
121 filter = (Filter) getCustomizeInstance(filterName);
123 printInvalidPropMessage("filter", filterNam
[all...]
H A DLogger.java124 /** The filter. */
125 private Filter filter; field in class:Logger
532 * Gets the filter used by this logger.
534 * @return the filter used by this logger, may be {@code null}.
537 return this.filter;
541 * Sets the filter used by this logger.
544 * the filter to set, may be {@code null}.
550 // Anonymous loggers can always set the filter
554 filter = newFilter;
1076 // apply the filter i
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
H A DDTMManager.java269 * @param filter The <code>NodeFilter</code> to be used with this
270 * <code>DTMFilter</code>, or <code>null</code> to indicate no filter.
277 DTMFilter filter, boolean entityReferenceExpansion);
276 createDTMIterator(int whatToShow, DTMFilter filter, boolean entityReferenceExpansion) argument
/dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/
H A DDTMManagerDefault.java361 IncrementalSAXSource_Filter filter =
363 filter.setXMLReader(reader);
364 coParser=filter;
403 // if we're using IncrementalSAXSource.filter().
787 * NEEDSDOC @param filter
792 synchronized public DTMIterator createDTMIterator(int whatToShow, DTMFilter filter, argument
/dalvik/libcore/luni/src/main/java/java/io/
H A DFile.java964 * {@code null} if this file is not a directory. If {@code filter} is
970 * @param filter
971 * the filter to match names against, may be {@code null}.
980 public String[] list(FilenameFilter filter) { argument
982 if (filter == null || filenames == null) {
987 if (filter.accept(this, filename)) {
1015 * file is not a directory. If {@code filter} is {@code null} then all
1021 * @param filter
1022 * the filter to match names against, may be {@code null}.
1027 * @see #list(FilenameFilter filter)
1032 listFiles(FilenameFilter filter) argument
1055 listFiles(FileFilter filter) argument
[all...]
/dalvik/libcore/xml/src/main/java/org/apache/xpath/
H A DXPathContext.java275 * @param filter The <code>NodeFilter</code> to be used with this
276 * <code>TreeWalker</code>, or <code>null</code> to indicate no filter.
283 DTMFilter filter, boolean entityReferenceExpansion)
285 return m_dtmManager.createDTMIterator(whatToShow, filter, entityReferenceExpansion);
282 createDTMIterator(int whatToShow, DTMFilter filter, boolean entityReferenceExpansion) argument
/dalvik/libcore/support/src/test/java/tests/resources/
H A Djunit4-4.3.1.jarMETA-INF/ META-INF/MANIFEST.MF junit/ junit/extensions/ junit/framework/ junit/runner/ junit/textui/ org/ ...
/dalvik/tools/dmtracedump/
H A DTraceDump.c54 /* Some filter constants */
220 // we need to allocate it to one (or many) filter later. This would happen when
221 // we see a method exit that maches a filter, but whose entry we hadn't seen.
1932 printf("\n\nBreak-down of portion of time spent by each thread while waiting on a filter method.\n");
1935 // Draw a table for each filter that measures wait time
2490 fprintf(stderr, " class is %s; filter key is %s\n", method->className, filterKey.keys[index]);
2505 fprintf(stderr, " method is %s; filter key is %s\n", str, filterKey.keys[index]);
2518 * Adds the appropriate times to the given filter based on the given method. Activates and
2521 * A filter is activated when the given method matches the 'entry' key of one of its FilterKeys.
2523 * in the first place. Thus, a filter ma
2535 filterMethod(MethodEntry* method, Filter* filter, int entry, int threadId, int numThreads, uint64_t elapsed, uint64_t remTime) argument
2728 Filter* filter; local
[all...]

Completed in 571 milliseconds