Searched defs:isEmpty (Results 126 - 150 of 176) sorted by relevance

12345678

/openjdk7/jdk/src/share/classes/java/util/
H A DHashtable.java315 public synchronized boolean isEmpty() { method in class:Hashtable
H A DIdentityHashMap.java293 public boolean isEmpty() { method in class:IdentityHashMap
H A DVector.java321 public synchronized boolean isEmpty() { method in class:Vector
H A DHashMap.java397 public boolean isEmpty() { method in class:HashMap
H A DWeakHashMap.java71 * time, for the <tt>isEmpty</tt> method to return <tt>false</tt> and
441 public boolean isEmpty() { method in class:WeakHashMap
855 index = isEmpty() ? 0 : table.length;
/openjdk7/jdk/src/share/classes/java/util/concurrent/
H A DCopyOnWriteArrayList.java151 public boolean isEmpty() { method in class:CopyOnWriteArrayList
H A DConcurrentHashMap.java404 * sufficient accuracy for stability checks in CHM isEmpty()
892 public boolean isEmpty() { method in class:ConcurrentHashMap
1433 public boolean isEmpty() { method in class:ConcurrentHashMap.KeySet
1434 return ConcurrentHashMap.this.isEmpty();
1454 public boolean isEmpty() { method in class:ConcurrentHashMap.Values
1455 return ConcurrentHashMap.this.isEmpty();
1485 public boolean isEmpty() { method in class:ConcurrentHashMap.EntrySet
1486 return ConcurrentHashMap.this.isEmpty();
H A DConcurrentLinkedDeque.java1098 public boolean isEmpty() { method in class:ConcurrentLinkedDeque
H A DLinkedTransferQueue.java770 * none. Used by methods isEmpty, hasWaitingConsumer.
1217 public boolean isEmpty() { method in class:LinkedTransferQueue
/openjdk7/jdk/src/share/classes/javax/management/timer/
H A DTimer.java720 if (v.isEmpty())
985 public boolean isEmpty() { method in class:Timer
986 return (timerTable.isEmpty());
/openjdk7/jdk/src/share/classes/javax/naming/
H A DNameImpl.java569 public boolean isEmpty() { method in class:NameImpl
570 return (components.isEmpty());
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DLdapName.java185 public boolean isEmpty() { method in class:LdapName
186 return rdns.isEmpty();
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/ctx/
H A DAtomicContext.java246 protected boolean isEmpty(String name) { method in class:AtomicContext
584 if (!isEmpty(head)) {
628 if (!isEmpty(tail)) {
/openjdk7/jdk/src/share/classes/java/awt/
H A DRenderingHints.java997 public boolean isEmpty() { method in class:RenderingHints
998 return hintmap.isEmpty();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/saaj/
H A DSAAJMessage.java630 public boolean isEmpty() { method in class:SAAJMessage.SAAJAttachmentSet
632 return attMap.isEmpty();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicyMap.java233 public boolean isEmpty() { method in class:PolicyMap.ScopeMap
234 return internalMap.isEmpty();
268 if (mutators != null && !mutators.isEmpty()) {
491 public boolean isEmpty() { method in class:PolicyMap
492 return serviceMap.isEmpty() && endpointMap.isEmpty() &&
493 operationMap.isEmpty() && inputMessageMap.isEmpty() &&
494 outputMessageMap.isEmpty() && faultMessageMap.isEmpty();
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/
H A DQNameMap.java359 public boolean isEmpty() { method in class:QNameMap
/openjdk7/jdk/src/windows/classes/sun/nio/fs/
H A DWindowsPath.java226 if (isEmpty())
303 private boolean isEmpty() { method in class:WindowsPath
426 if (count == 0 || isEmpty())
526 if (other.isEmpty())
579 if (isEmpty()) {
659 if (other.isEmpty())
660 return this.isEmpty();
690 if (other.isEmpty()) {
691 return this.isEmpty();
/openjdk7/langtools/src/share/classes/com/sun/tools/doclets/formats/html/markup/
H A DHtmlTree.java72 if (attrs.isEmpty())
93 if (content.isEmpty())
107 if (!content.isEmpty()) {
682 public boolean isEmpty() { method in class:HtmlTree
692 return (!content.isEmpty());
701 return (!attrs.isEmpty());
768 if (!value.isEmpty()) {
/openjdk7/jdk/src/share/classes/sun/security/ssl/
H A DHelloExtensions.java109 if (extensions.isEmpty()) {
129 if (extensions.isEmpty()) {
750 boolean isEmpty() { method in class:RenegotiationInfoExtension
/openjdk7/jdk/src/solaris/classes/java/lang/
H A DProcessEnvironment.java229 public boolean isEmpty() {return m.isEmpty();} method in class:ProcessEnvironment.StringEnvironment
325 public boolean isEmpty() {return s.isEmpty();} method in class:ProcessEnvironment.StringEntrySet
367 public boolean isEmpty() {return c.isEmpty();} method in class:ProcessEnvironment.StringValues
394 public boolean isEmpty() {return s.isEmpty();} method in class:ProcessEnvironment.StringKeySet
/openjdk7/jdk/src/share/classes/javax/swing/tree/
H A DDefaultMutableTreeNode.java1380 return (!queue.isEmpty() &&
1446 public boolean isEmpty() { method in class:DefaultMutableTreeNode.BreadthFirstEnumeration.Queue
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextServicesSupport.java239 boolean isEmpty() { return requestors.isEmpty(); } method in class:BeanContextServicesSupport.BCSSChild.BCSSCServiceClassRef
401 if (services.isEmpty()) {
406 if (serviceRequestors.isEmpty()) {
410 if (serviceClassRef.isEmpty()) {
414 if (serviceClasses.isEmpty())
453 if (noMoreRefs = services.isEmpty()) {
465 if (serviceClassRef.isEmpty())
468 if (serviceClasses.isEmpty())
472 if (serviceRequestors != null && serviceRequestors.isEmpty())
[all...]
H A DBeanContextSupport.java223 public boolean isEmpty() { method in class:BeanContextSupport
225 return children.isEmpty();
/openjdk7/jdk/src/share/classes/java/lang/
H A DString.java634 public boolean isEmpty() { method in class:String

Completed in 210 milliseconds

12345678