Searched refs:remove (Results 101 - 125 of 1847) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/Java/src/main/java/org/antlr/runtime/misc/
H A DLookaheadStream.java74 /** Get and remove first element in queue; override FastQueue.remove();
77 public T remove() { method in class:LookaheadStream
88 /** Make sure we have at least one element to remove, even if EOF */
91 prevElement = remove();
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/misc/
H A DOrderedHashSet.java54 super.remove(oldElement); // now update the set: remove/add
71 public boolean remove(Object o) { method in class:OrderedHashSet
74 elements.remove(o);
75 return super.remove(o);
/external/apache-http/src/org/apache/http/impl/client/
H A DBasicCookieStore.java87 // first remove any old cookie that is equivalent
90 it.remove();
143 it.remove();
/external/apache-http/src/org/apache/http/message/
H A DBasicListHeaderIterator.java186 public void remove() method in class:BasicListHeaderIterator
190 throw new IllegalStateException("No header to remove.");
192 this.allHeaders.remove(this.lastIndex);
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DObjectPool.java113 Object result = freeStack.remove(freeStack.size() - 1);
148 Object result = freeStack.remove(freeStack.size() - 1);
/external/chromium/chrome/browser/resources/shared/js/cr/ui/
H A Dfocus_outline_manager.js51 this.classList_.remove(CLASS_NAME);
/external/chromium/chrome/browser/resources/shared/js/
H A Devent_tracker.js7 * listeners that have been added and makes it easy to remove some or all of
63 * @param {!Node} node The DOM node to remove a listener from.
64 * @param {string} eventType The type of event to remove.
66 remove: function(node, eventType) {
88 * @param {EventTracker.Entry} h The entry describing the listener to remove.
/external/chromium-trace/trace-viewer/src/
H A Dfocus_outline_manager.js52 this.classList_.remove(CLASS_NAME);
/external/dropbear/debian/
H A Ddropbear.postrm10 update-rc.d dropbear remove >/dev/null
/external/e2fsprogs/lib/
H A DMakefile.elf-lib60 $(Q) $(STRIP) --strip-unneeded --remove-section=.comment \
61 --remove-section=.note $(DESTDIR)$(ELF_INSTALL_DIR)/$(ELF_LIB)
65 $(Q) $(STRIP) --strip-unneeded --remove-section=.comment \
66 --remove-section=.note $(DESTDIR)$(ELF_INSTALL_DIR)/$(ELF_LIB)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.eclipse.build.tools/src/org/eclipse/releng/generators/
H A DAbstractApplication.java45 // implements the method List.remove(int) and ArrayList does.
70 commands.remove(index);
79 commands.remove(index);
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/reflect/
H A DClassMap.java48 public void remove(Class<?> key) { method in class:ClassMap
49 getMap(key).remove(key);
/external/guava/guava/src/com/google/common/collect/
H A DMultiset.java46 * or remove multiple occurrences of an element at once, or to set the count of
49 * #add(Object)} or {@link #remove(Object)} are encouraged to implement the
79 * does not automatically remove zeros.
132 * {@code remove(element)}.
134 * @param element the element to conditionally remove occurrences of
135 * @param occurrences the number of occurrences of the element to remove. May
140 int remove(@Nullable Object element, int occurrences); method in interface:Multiset
146 * @param element the element to add or remove occurrences of; may be null
395 * <p>This method refines {@link Collection#remove} to further specify that it
399 * @param element the element to remove on
403 boolean remove(@Nullable Object element); method in interface:Multiset
[all...]
/external/guava/guava-tests/test/com/google/common/collect/
H A DAbstractMultimapAsMapImplementsMapTest.java63 * view collection that changes in the course of a call to {@code remove()}.
64 * Thus, the expectation doesn't hold that {@code map.remove(x)} returns the
79 map.remove(keyToRemove);
86 map.remove(keyToRemove);
/external/guava/guava-tests/test/com/google/common/primitives/
H A DPrimitivesTest.java58 primitives.remove(boolean.class);
73 wrappers.remove(Boolean.class);
/external/icu4c/samples/translit/answers/
H A Dmain_1.cpp48 str.remove();
56 str.remove();
H A Dmain_2.cpp56 str.remove();
64 str.remove();
/external/jmonkeyengine/engine/src/core/com/jme3/asset/
H A DAssetCache.java89 return smartCache.remove(key) != null;
91 return regularCache.remove(key) != null;
/external/jsilver/src/com/google/clearsilver/jsilver/resourceloader/
H A DInMemoryResourceLoader.java59 public void remove(String name) { method in class:InMemoryResourceLoader
60 items.remove(name);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAMultipleCommand.java69 if(this._command_.remove(child))
93 i.remove();
H A DASequenceExpression.java69 if(this._args_.remove(child))
93 i.remove();
/external/kernel-headers/original/linux/
H A Dtransport_class.h23 int (*remove)(struct transport_container *, struct device *, member in struct:transport_class
33 .remove = rm, \
/external/mesa3d/src/glsl/
H A Dopt_dead_code.cpp41 * Note that this will remove assignments to globals, so it is not suitable
83 entry->assign->remove();
93 * then we can remove its declaration.
103 entry->var->remove();
/external/openssl/
H A DAndroid.mk9 # that import_openssl.sh import won't remove them.
/external/webkit/Source/JavaScriptCore/qt/api/
H A Dqscriptvalueiterator.cpp46 If you want to remove properties as you iterate over the
47 QScriptValue, use remove(). If you want to modify the value of a
201 void QScriptValueIterator::remove() function in class:QScriptValueIterator
203 d_ptr->remove();

Completed in 3097 milliseconds

1234567891011>>