Searched defs:exclude (Results 1 - 12 of 12) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/management/loading/
H A DClassLoaderRepository.java87 * ClassLoaderRepository, except <code>exclude</code>, is asked to
104 * @param exclude The class loader to be excluded. May be null,
113 public Class<?> loadClassWithout(ClassLoader exclude, argument
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/model/
H A DAbstractJavaHeapObjectVisitor.java49 public boolean exclude(JavaClass clazz, JavaField f) { method in class:AbstractJavaHeapObjectVisitor
54 * @return true iff exclude might ever return true
H A DJavaHeapObjectVisitor.java49 public boolean exclude(JavaClass clazz, JavaField f); method in interface:JavaHeapObjectVisitor
52 * @return true iff exclude might ever return true
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/implementations/
H A DTransformEnvelopedSignature.java119 Node exclude; field in class:TransformEnvelopedSignature.EnvelopedNodeFilter
121 exclude=n;
124 if ((n==exclude))
132 if ((n==exclude) || XMLUtils.isDescendantOrSelf(exclude,n))
135 //return !XMLUtils.isDescendantOrSelf(exclude,n);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/transforms/params/
H A DXPathFilterCHGPContainer.java81 * @param exclude
85 String excludeButSearch, String exclude) {
125 if ((exclude != null) && (exclude.trim().length() > 0)) {
131 .appendChild(this._doc.createTextNode(indentXPathText(exclude)));
173 * @param exclude
178 String excludeButSearch, String exclude) {
182 exclude);
83 XPathFilterCHGPContainer(Document doc, boolean includeSlashPolicy, String includeButSearch, String excludeButSearch, String exclude) argument
176 getInstance(Document doc, boolean includeSlashPolicy, String includeButSearch, String excludeButSearch, String exclude) argument
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/src/com/sun/jmx/examples/scandir/config/
H A DDirectoryScannerConfig.java277 * @param exclude A filter identifying files that should be excluded.
279 public void addExcludeFiles(FileMatch exclude) { argument
280 if (exclude == null)
283 this.excludeFiles.add(exclude);
348 // in the exclude list...
355 // file is accepted, exclude it.
/openjdk7/hotspot/src/share/vm/prims/
H A DjvmtiManageCapabilities.cpp191 jvmtiCapabilities *JvmtiManageCapabilities::exclude(const jvmtiCapabilities *a, const jvmtiCapabilities *b, function in class:JvmtiManageCapabilities
231 // exclude prohibited capabilities, must be before adding current
232 exclude(&always_capabilities, prohibited, result);
254 if (has_some(exclude(desired, &temp, &temp))) {
264 exclude(&onload_capabilities, &temp, &onload_capabilities);
269 exclude(&onload_solo_capabilities, &temp, &onload_solo_capabilities);
272 exclude(&always_solo_remaining_capabilities, desired, &always_solo_remaining_capabilities);
273 exclude(&onload_solo_remaining_capabilities, desired, &onload_solo_remaining_capabilities);
302 exclude(current, unwanted, result);
/openjdk7/jdk/src/share/demo/jvmti/minst/
H A Dminst.c89 char *exclude; member in struct:__anon540
224 if ( interested((char*)classname, "", gdata->include, gdata->exclude)
309 stdout_message("\t exclude=item\t\t Exclude these classes/methods\n");
339 } else if ( strcmp(token,"exclude")==0 ) {
344 if ( gdata->exclude == NULL ) {
345 gdata->exclude = (char*)calloc(maxlen+1, 1);
348 used = (int)strlen(gdata->exclude);
349 gdata->exclude[used++] = ',';
350 gdata->exclude[used] = 0;
351 gdata->exclude
[all...]
/openjdk7/jdk/src/share/demo/jvmti/mtrace/
H A Dmtrace.c122 char *exclude; member in struct:__anon541
261 gdata->include, gdata->exclude) ) {
288 gdata->include, gdata->exclude) ) {
512 if ( interested((char*)classname, "", gdata->include, gdata->exclude)
622 stdout_message("\t exclude=item\t\t Exclude these classes/methods\n");
663 } else if ( strcmp(token,"exclude")==0 ) {
668 if ( gdata->exclude == NULL ) {
669 gdata->exclude = (char*)calloc(maxlen+1, 1);
672 used = (int)strlen(gdata->exclude);
673 gdata->exclude[use
[all...]
/openjdk7/langtools/test/tools/javac/api/
H A DTestClientCodeWrapper.java96 Set<Method> getMethodsExcept(Class<?> clazz, String... exclude) { argument
102 Set<String> e = new HashSet<String>(Arrays.asList(exclude));
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/code/
H A DSymbol.java320 * Does not exclude methods not inherited due to overriding.
1286 // the exclude list. In normal use, either no names will have been
1287 // provided, in which case the exclude list is empty, or all the names
1289 private Name createArgName(int index, List<Name> exclude) { argument
1293 if (!exclude.contains(argName))
/openjdk7/jdk/test/javax/management/MBeanServer/
H A DOldMBeanServerTest.java832 ClassLoader exclude, String className)
834 return clr.loadClassWithout(exclude, className);
866 ClassLoader exclude, String className)
868 return loadClassWithoutBefore(exclude, null, className);
877 ClassLoader exclude, ClassLoader stop, String className)
880 if (loader == exclude)
865 loadClassWithout( ClassLoader exclude, String className) argument
876 loadClassWithoutBefore( ClassLoader exclude, ClassLoader stop, String className) argument

Completed in 77 milliseconds