Searched refs:remove (Results 351 - 375 of 1349) sorted by relevance

<<11121314151617181920>>

/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/bdi/
H A DExecutionManager.java74 sessionListeners.remove(listener);
86 specListeners.remove(cl);
111 jdiListeners.remove(jl);
123 appEchoListeners.remove(l);
135 appOutputListeners.remove(l);
147 appErrorListeners.remove(l);
159 diagnosticsListeners.remove(l);
632 threadInfoMap.remove(thread);
633 threadInfoList.remove(info);
/openjdk7/jdk/src/share/classes/sun/security/provider/certpath/
H A DForwardBuilder.java714 * support forward checking (forwardCheckers) and remove
741 * Look at the remaining extensions and remove any ones we know how
745 unresCritExts.remove(
747 unresCritExts.remove(
749 unresCritExts.remove(
751 unresCritExts.remove(
753 unresCritExts.remove(
755 unresCritExts.remove(
757 unresCritExts.remove(
759 unresCritExts.remove(PKIXExtension
[all...]
H A DSunCertPathBuilder.java578 unresCritExts.remove
580 unresCritExts.remove
582 unresCritExts.remove
584 unresCritExts.remove
586 unresCritExts.remove
588 unresCritExts.remove
590 unresCritExts.remove(PKIXExtensions.
592 unresCritExts.remove
594 unresCritExts.remove
/openjdk7/jdk/src/share/classes/java/beans/beancontext/
H A DBeanContextServicesSupport.java194 // remove a requestor
197 requestors.remove(requestor);
399 services.remove(service);
402 serviceRequestors.remove(requestor);
411 serviceClasses.remove(serviceClassRef.getServiceClass());
449 i1.remove();
454 serviceRequestors.remove(requestor);
466 serviceClasses.remove(serviceClass);
489 requestors.remove();
501 services.remove();
[all...]
/openjdk7/jdk/test/java/util/NavigableMap/
H A DLockStep.java246 new Fun(){void f(){ it.remove(); }});
402 new Fun(){void f(){ it.remove(); }});
590 equal(m.remove(k), null);
601 check(! s.remove(e));
605 return new Fun(){void f(){ it.remove(); }};
620 check(m.remove(k) != null);
632 it.remove();
635 new Fun(){void f(){ it.remove(); }});
642 it.remove();
645 new Fun(){void f(){ it.remove(); }});
[all...]
/openjdk7/jdk/src/share/classes/com/sun/security/auth/module/
H A DJndiLoginModule.java469 subject.getPrincipals().remove(userPrincipal);
470 subject.getPrincipals().remove(UIDPrincipal);
471 subject.getPrincipals().remove(GIDPrincipal);
473 subject.getPrincipals().remove(supplementaryGroups.get(i));
763 sharedState.remove(NAME);
764 sharedState.remove(PWD);
H A DLdapLoginModule.java454 ldapEnvironment.remove(Context.SECURITY_PROTOCOL);
711 principals.remove(ldapPrincipal);
712 principals.remove(userPrincipal);
714 principals.remove(authzPrincipal);
891 // (can remove call to constraints.setReturningObjFlag)
1013 sharedState.remove(USERNAME_KEY);
1014 sharedState.remove(PASSWORD_KEY);
/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaComboBoxPopup.java61 public void updateContents(final boolean remove) { argument
66 if (remove) {
68 this.remove(topStrut);
71 this.remove(bottomStrut);
82 if (remove) remove(scroller);
/openjdk7/jdk/src/windows/classes/sun/nio/ch/
H A DWindowsSelectorImpl.java95 private MapEntry remove(SelectionKeyImpl ski) { method in class:WindowsSelectorImpl.FdMap
99 return remove(fd);
458 threads.remove(i).makeZombie();
582 fdMap.remove(ski); // Remove the key from fdMap, keys and selectedKeys
583 keys.remove(ski);
584 selectedKeys.remove(ski);
/openjdk7/jdk/test/java/nio/file/Files/
H A DPassThroughFileSystem.java107 public void remove() {
108 itr.remove();
291 public void remove() {
292 itr.remove();
511 public void remove() {
512 itr.remove();
/openjdk7/jdk/test/java/util/Collections/
H A DRacingCollections.java83 case 0: l.remove(two); break;
84 case 1: l.remove(0); break;
98 case 0: q.remove(two); break;
113 case 0: q.remove(two); break;
120 m.remove(two);
126 c.remove(two);
/openjdk7/jdk/src/solaris/classes/sun/nio/fs/
H A DSolarisWatchService.java202 children.remove(name);
327 fileKey2WatchKey.remove(key.getFileKey());
334 object2Node.remove(object);
341 object2Node.remove(object);
462 object2Node.remove(object);
468 fileKey2WatchKey.remove( key.getFileKey() );
472 // if entry then remove it from parent
516 // Due to 6636438/6636412 we may get a remove event for cases
678 * Frees all resources for an file_obj object; optionally remove
682 // remove associatio
[all...]
/openjdk7/langtools/test/tools/javac/scope/
H A DStarImportTest.java271 ClassSymbol sym = nestedClasses.remove(rgen.nextInt(i));
274 // remove from star import model
275 starImportModel.remove(sym);
290 // remove from package
291 sym.owner.members().remove(sym);
336 void remove(Symbol sym) { method in class:StarImportTest.Model
341 boolean ok = syms.remove(sym);
348 map.remove(sym.name);
/openjdk7/jdk/src/share/classes/java/util/
H A DCollections.java1068 public void remove() {
1077 public boolean remove(Object o) { method in class:Collections.UnmodifiableCollection
1218 public E remove(int index) { method in class:Collections.UnmodifiableList
1240 public void remove() {
1344 public V remove(Object key) { method in class:Collections.UnmodifiableMap
1405 public void remove() {
1638 public boolean remove(Object o) { method in class:Collections.SynchronizedCollection
1639 synchronized (mutex) {return c.remove(o);}
1887 public E remove(int index) { method in class:Collections.SynchronizedList
1888 synchronized (mutex) {return list.remove(inde
2043 public V remove(Object key) { method in class:Collections.SynchronizedMap
2297 public boolean remove(Object o) { return c.remove(o); } method in class:Collections.CheckedCollection
2517 public E remove(int index) { return list.remove(index); } method in class:Collections.CheckedList
2667 public V remove(Object key) { return m.remove(key); } method in class:Collections.CheckedMap
2816 public boolean remove(Object o) { method in class:Collections.CheckedMap.CheckedEntrySet
3007 public void remove() { throw new IllegalStateException(); } method in class:Collections.EmptyIterator
3902 public boolean remove(Object o) { return m.remove(o) != null; } method in class:Collections.SetFromMap
3957 public E remove() { return q.removeFirst(); } method in class:Collections.AsLIFOQueue
3964 public boolean remove(Object o) { return q.remove(o); } method in class:Collections.AsLIFOQueue
[all...]
H A DArrayList.java74 * {@link ListIterator#remove() remove} or
473 public E remove(int index) { method in class:ArrayList
501 public boolean remove(Object o) { method in class:ArrayList
519 * Private remove method that skips bounds checking and does not
842 public void remove() { method in class:ArrayList.Itr
848 ArrayList.this.remove(lastRet);
1010 public E remove(int index) { method in class:ArrayList.SubList
1013 E result = parent.remove(parentOffset + index);
1100 public void remove() {
[all...]
H A DEnumMap.java50 * presence of a null key or to remove one will, however, function properly.
285 public V remove(Object key) { method in class:EnumMap
399 public boolean remove(Object o) { method in class:EnumMap.KeySet
401 EnumMap.this.remove(o);
437 public boolean remove(Object o) { method in class:EnumMap.Values
482 public boolean remove(Object o) { method in class:EnumMap.EntrySet
530 public void remove() { method in class:EnumMap.EnumMapIterator
574 public void remove() { method in class:EnumMap.EntryIterator
577 super.remove();
H A DRegularEnumSet.java107 public void remove() { method in class:RegularEnumSet.EnumSetIterator
173 public boolean remove(Object e) { method in class:RegularEnumSet
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/util/
H A DXSObjectListImpl.java66 public void remove() {
256 public void remove() { method in class:XSObjectListImpl.XSObjectListIterator
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/
H A DSAXParserFactoryImpl.java138 features.remove(name);
141 features.remove(name);
/openjdk7/corba/src/share/classes/com/sun/corba/se/impl/transport/
H A DCorbaInboundConnectionCacheImpl.java86 public void remove(Connection connection) method in class:CorbaInboundConnectionCacheImpl
89 dprint(".remove: " + connection);
92 connectionCache.remove(connection);
H A DCorbaOutboundConnectionCacheImpl.java94 public void remove(ContactInfo contactInfo) method in class:CorbaOutboundConnectionCacheImpl
97 dprint(".remove: " + contactInfo + " " + contactInfo.hashCode());
101 connectionCache.remove(contactInfo);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DLegacyGlueFocusTraversalPolicy.java66 forwardMap.remove(left);
67 backwardMap.remove(right);
/openjdk7/jdk/src/share/classes/javax/swing/colorchooser/
H A DValueFormatter.java54 public void remove(FilterBypass fb, int offset, int length) throws BadLocationException {
56 fb.remove(offset, length);
/openjdk7/jdk/src/share/classes/sun/awt/
H A DAWTAutoShutdown.java196 busyThreadSet.remove(thread);
357 peerMap.remove(target);
/openjdk7/jdk/src/share/classes/java/beans/
H A DEncoder.java229 public Object remove(Object oldInstance) { method in class:Encoder
230 Expression exp = (Expression)bindings.remove(oldInstance);

Completed in 121 milliseconds

<<11121314151617181920>>