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

/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
H A DSecurity2Test.java81 assertEquals("Unexpected number of providers returned for filter " + filterString
125 // for each filter item
126 for (Object filter : filterMap.keySet()) {
127 String filterString = (String) filter;
138 // Is this filter string in the keys of the
150 // handle filter strings with attribute names
162 }// end if filter string with named attribute is
166 }// end while there are more filter strings for current map
184 Map<String, String> filter = new HashMap<String, String>();
185 filter
[all...]
H A DSecurityTest.java242 String filter = "MyService.MyAlgorithm";
243 assertTrue(filter, Arrays.equals(new Provider[] { p }, Security
244 .getProviders(filter)));
246 filter = "MyService.MyAlgorithm KeySize:512";
247 assertTrue(filter, Arrays.equals(new Provider[] { p }, Security
248 .getProviders(filter)));
250 filter = "MyService.MyAlgorithm KeySize:1025";
251 assertNull(filter, Security.getProviders(filter));
254 filter
[all...]
/libcore/luni/src/main/java/java/util/logging/
H A DHandler.java44 // the filter used to filter undesired messages
45 private Filter filter; field in class:Handler
53 * level {@code Level.ALL}. It has no filter and no formatter.
59 this.filter = null;
95 * init the common properties, including filter, level, formatter, and
102 // set filter
103 final String filterName = manager.getProperty(prefix + ".filter");
106 filter = (Filter) getCustomizeInstance(filterName);
108 printInvalidPropMessage("filter", filterNam
[all...]
H A DLogger.java129 /** The filter. */
130 private Filter filter; field in class:Logger
491 * Gets the filter used by this logger.
493 * @return the filter used by this logger, may be {@code null}.
496 return this.filter;
500 * Sets the filter used by this logger.
503 * the filter to set, may be {@code null}.
506 // Anonymous loggers can always set the filter
510 filter = newFilter;
1018 // apply the filter i
[all...]
/libcore/luni/src/main/java/java/security/
H A DSecurity.java207 * filter. The specified filter must be supplied in one of two formats:
218 * @param filter
219 * case-insensitive filter.
220 * @return the providers which meet the user supplied string filter {@code
221 * filter}. A {@code null} value signifies that none of the
222 * installed providers meets the filter specification.
224 * if an unusable filter is supplied.
226 * if {@code filter} is {@code null}.
228 public static Provider[] getProviders(String filter) { argument
272 getProviders(Map<String,String> filter) argument
[all...]
/libcore/luni/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...]
/libcore/luni/src/main/java/java/io/
H A DFile.java758 * {@code null} if this file is not a directory. If {@code filter} is
764 * @param filter
765 * the filter to match names against, may be {@code null}.
768 public String[] list(FilenameFilter filter) { argument
770 if (filter == null || filenames == null) {
775 if (filter.accept(this, filename)) {
798 * file is not a directory. If {@code filter} is {@code null} then all
804 * @param filter
805 * the filter to match names against, may be {@code null}.
808 public File[] listFiles(FilenameFilter filter) { argument
825 listFiles(FileFilter filter) argument
[all...]
/libcore/
H A DAndroid.mk46 ALL_MODULE_TAGS := $(filter-out tests,$(ALL_MODULE_TAGS))
47 ALL_MODULES := $(filter-out $(ALL_MODULE_NAME_TAGS.tests),$(ALL_MODULES))
/libcore/luni/src/test/java/tests/api/org/xml/sax/helpers/
H A DXMLFilterImplTest.java86 XMLFilterImpl filter = new XMLFilterImpl(null);
87 assertEquals(null, filter.getParent());
/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/ ...

Completed in 520 milliseconds