Searched refs:isEmpty (Results 1 - 25 of 831) sorted by relevance

1234567891011>>

/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/
H A DTagletOutputImpl.java73 public boolean isEmpty() { method in class:TagletOutputImpl
74 return (toString().trim().isEmpty());
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DRawHtml.java78 public boolean isEmpty() { method in class:RawHtml
79 return rawHtmlContent.isEmpty();
H A DComment.java76 public boolean isEmpty() { method in class:Comment
77 return commentText.isEmpty();
/openjdk7/jdk/src/share/classes/java/util/
H A DDictionary.java67 * for the <tt>isEmpty</tt> method is that the result is true if and only
73 abstract public boolean isEmpty(); method in class:Dictionary
101 * The general contract for the <tt>isEmpty</tt> method is that if this
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/message/
H A DAttachmentSet.java56 boolean isEmpty(); method in interface:AttachmentSet
/openjdk7/jdk/test/java/lang/String/
H A DIsEmpty.java26 * @summary Basic isEmpty functionality
39 boolean empty = s.isEmpty();
43 + " isEmpty = " + empty
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DAttachmentSetImpl.java70 public boolean isEmpty() { method in class:AttachmentSetImpl
71 return attList.isEmpty();
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/internal/toolkit/
H A DContent.java73 public abstract boolean isEmpty(); method in class:Content
81 return !isEmpty();
/openjdk7/jdk/src/share/classes/javax/net/ssl/
H A DKeyStoreBuilderParameters.java67 if (parameters.isEmpty()) {
/openjdk7/jdk/src/share/classes/javax/print/attribute/
H A DAttributeSet.java280 public boolean isEmpty(); method in interface:AttributeSet
/openjdk7/jdk/src/share/classes/com/sun/org/apache/xml/internal/security/encryption/
H A DReferenceList.java82 public boolean isEmpty(); method in interface:ReferenceList
/openjdk7/jdk/test/java/net/CookieHandler/
H A DB6791927.java39 if (cookies == null || cookies.isEmpty()) {
/openjdk7/jdk/test/sun/security/smartcardio/
H A DTestDefault.java45 if (terminals.isEmpty()) {
/openjdk7/langtools/test/tools/javac/T7142672/
H A DAnnoProcessor.java39 if(set.isEmpty()) {
/openjdk7/langtools/test/tools/javac/api/lib/
H A DToolTester.java59 if (f.isEmpty())
65 if (files.isEmpty())
71 if (a.isEmpty())
73 if (b.isEmpty())
/openjdk7/langtools/test/tools/javac/processing/model/util/
H A DNoSupers.java46 if (! types.directSupertypes(intType).isEmpty())
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DMessageQueueBackend.java66 while (readList.isEmpty()) {
79 if (readList.isEmpty()) {
90 if (readList.isEmpty()) {
/openjdk7/jdk/src/share/classes/sun/security/x509/
H A DGeneralNames.java92 public boolean isEmpty() { method in class:GeneralNames
93 return names.isEmpty();
115 if (isEmpty()) {
/openjdk7/jdk/test/javax/swing/plaf/basic/BasicSplitPaneUI/
H A DTest6657026.java41 if (new JSplitPane().getFocusTraversalKeys(0).isEmpty()){
50 if (new JSplitPane().getFocusTraversalKeys(0).isEmpty()) {
63 if (new JSplitPane().getFocusTraversalKeys(0).isEmpty()) {
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DEventQueueImpl.java108 if (!eventSet.isEmpty()) {
125 } while (eventSet == null || eventSet.isEmpty());
145 return !closed && eventSets.isEmpty() &&
160 if (!eventSets.isEmpty()) {
197 if (eventSets.isEmpty()) {
/openjdk7/jdk/src/share/classes/sun/util/locale/
H A DLocaleUtils.java209 static boolean isEmpty(String str) { method in class:LocaleUtils
213 static boolean isEmpty(Set<?> set) { method in class:LocaleUtils
214 return set == null || set.isEmpty();
217 static boolean isEmpty(Map<?, ?> map) { method in class:LocaleUtils
218 return map == null || map.isEmpty();
221 static boolean isEmpty(List<?> list) { method in class:LocaleUtils
222 return list == null || list.isEmpty();
/openjdk7/jdk/test/java/util/concurrent/BlockingQueue/
H A DLastElement.java52 check(! q.isEmpty() && q.size() == 2);
55 check(q.isEmpty() && q.size() == 0);
59 check(q.isEmpty() && q.size() == 0);
66 check(! q.isEmpty() && q.size() == 2);
72 check(q.isEmpty() && q.size() == 0);
76 check(q.isEmpty() && q.size() == 0);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/util/
H A DDeferedCollection.java55 public boolean isEmpty() { method in class:DeferedCollection
56 if(archive.isEmpty())
58 return archive.isEmpty();
/openjdk7/jdk/test/java/util/PriorityQueue/
H A DPriorityQueueSort.java70 while (!pq.isEmpty())
77 while (!pq.isEmpty())
88 while (!pq.isEmpty())
/openjdk7/jdk/test/java/util/concurrent/ConcurrentMap/
H A DConcurrentModification.java61 check(m.isEmpty());
67 check(m.isEmpty());
75 check(m.isEmpty());

Completed in 103 milliseconds

1234567891011>>