Searched refs:exclude (Results 1 - 23 of 23) sorted by relevance

/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
H A DReachableObjects.java67 public boolean exclude(JavaClass clazz, JavaField f) {
H A DJavaObject.java146 && v.exclude(getClazz().getClassForField(i),
H A DJavaClass.java436 if (!v.exclude(this, f) && f.hasId()) {
/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/jaxws/src/share/jaxws_classes/javax/jws/
H A DWebMethod.java68 boolean exclude() default false;
/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/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/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/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/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);
H A DjvmtiManageCapabilities.hpp54 static jvmtiCapabilities *exclude(const jvmtiCapabilities *a, const jvmtiCapabilities *b, jvmtiCapabilities *result);
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/utils/
H A DXMLUtils.java106 * @param exclude
109 public static void getSet(Node rootNode,Set<Node> result,Node exclude ,boolean com) {
110 if ((exclude!=null) && isDescendantOrSelf(exclude,rootNode)){
113 getSetRec(rootNode,result,exclude,com);
118 final Node exclude ,final boolean com) {
120 if (rootNode==exclude) {
144 getSetRec(r,result,exclude,com);
/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
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/ws/processor/modeler/annotation/
H A DWebServiceVisitor.java345 if (webMethod.exclude()) {
418 if (webMethod != null && webMethod.exclude())
621 //SEI cannot have methods with @WebMethod(exclude=true)
622 if (typeDecl instanceof InterfaceDeclaration && webMethod != null && webMethod.exclude())
623 builder.onError(method.getPosition(), WebserviceapMessages.localizableWEBSERVICEAP_INVALID_SEI_ANNOTATION_ELEMENT_EXCLUDE("exclude=true", typeDecl.getQualifiedName(), method.toString()));
628 if ((webMethod !=null) && webMethod.exclude()) {
/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/src/share/native/sun/awt/libpng/
H A DCHANGES3402 Improved "pngvalid --speed" to exclude more of pngvalid from the time.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/model/
H A DRuntimeModeler.java336 !webMethod.exclude()) {
363 * 1. They are annotated with the javax.jws.WebMethod annotation with the exclude element set to
380 if (webMethod.exclude()) {
381 return false; // @WebMethod(exclude="true")
471 if (webMethod != null && webMethod.exclude())
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/resources/
H A Dhat.js855 exclude: function(clazz, field) {
/openjdk7/jdk/test/
H A DMakefile388 # Create exclude list for this platform and arch
658 -exclude:$(shell $(GETMIXEDPATH) "$(EXCLUDELIST)") \

Completed in 92 milliseconds