Searched defs:remove (Results 1 - 25 of 145) sorted by relevance

123456

/external/guava/src/com/google/common/collect/
H A DUnmodifiableIterator.java24 * An iterator that does not support {@link #remove}.
36 public final void remove() { method in class:UnmodifiableIterator
H A DForwardingIterator.java47 public void remove() { method in class:ForwardingIterator
48 delegate().remove();
H A DPeekingIterator.java37 * {@link #remove()}.
62 void remove(); method in interface:PeekingIterator
H A DForwardingConcurrentMap.java43 public boolean remove(Object key, Object value) { method in class:ForwardingConcurrentMap
44 return delegate().remove(key, value);
H A DForwardingQueue.java47 public E remove() { method in class:ForwardingQueue
48 return delegate().remove();
/external/webkit/WebCore/css/
H A DStyleList.cpp48 void StyleList::remove(unsigned position) function in class:WebCore::StyleList
52 m_children.remove(position);
/external/apache-http/src/org/apache/http/impl/client/
H A DRedirectLocations.java67 public boolean remove(final URI uri) { method in class:RedirectLocations
68 return this.uris.remove(uri);
/external/bluetooth/bluez/src/
H A Ddevice.h103 void (*remove) (struct btd_device *device); member in struct:btd_device_driver
/external/icu4c/common/
H A Duset_imp.h52 USetRemove *remove; member in struct:USetAdder
/external/opencore/oscl/oscl/osclutil/src/
H A Doscl_priqueue.cpp109 OSCL_EXPORT_REF int OsclPriorityQueueBase::remove(const OsclAny* input) function in class:OsclPriorityQueueBase
111 //First find the element to remove
117 // It's the last element-- just remove it without any re-ordering.
122 // Move the element to the end & remove.
/external/proguard/src/proguard/
H A DClassPath.java80 public ClassPathEntry remove(int index) method in class:ClassPath
82 return (ClassPathEntry)classPathEntries.remove(index);
/external/srec/portable/include/
H A DArrayList.h73 ESR_ReturnCode(*remove)(struct ArrayList_t* self, const void* element); member in struct:ArrayList_t
/external/srec/shared/include/
H A DHashMap.h61 ESR_ReturnCode(*remove)(struct HashMap_t* self, const LCHAR* key); member in struct:HashMap_t
H A DInt8ArrayList.h56 ESR_ReturnCode(*remove)(struct Int8ArrayList_t* self, asr_int8_t element); member in struct:Int8ArrayList_t
H A DIntArrayList.h56 ESR_ReturnCode(*remove)(struct IntArrayList_t* self, int element); member in struct:IntArrayList_t
/external/srec/srec/Nametag/include/
H A DSR_Nametags.h75 ESR_ReturnCode(*remove)(struct SR_Nametags_t* self, const LCHAR* id); member in struct:SR_Nametags_t
/external/webkit/WebCore/bindings/js/
H A DJSDOMApplicationCacheCustom.cpp73 JSValue JSDOMApplicationCache::remove(ExecState* exec, const ArgList& args) function in class:WebCore::JSDOMApplicationCache
81 impl()->remove(url, ec);
H A DJSHTMLSelectElementCustom.cpp35 JSValue JSHTMLSelectElement::remove(ExecState* exec, const ArgList& args) function in class:WebCore::JSHTMLSelectElement
42 select.remove(static_cast<HTMLOptionElement*>(element)->index());
44 select.remove(args.at(0).toInt32(exec));
52 select->remove(index);
H A DScriptObject.cpp200 bool ScriptGlobalObject::remove(ScriptState* scriptState, const char* name) function in class:WebCore::ScriptGlobalObject
/external/webkit/WebCore/bindings/v8/
H A DScriptObject.cpp185 bool ScriptGlobalObject::remove(ScriptState* scriptState, const char* name) function in class:WebCore::ScriptGlobalObject
/external/webkit/WebCore/html/
H A DHTMLOptionsCollection.cpp70 void HTMLOptionsCollection::remove(int index) function in class:WebCore::HTMLOptionsCollection
72 static_cast<HTMLSelectElement*>(base())->remove(index);
/external/webkit/WebCore/platform/animation/
H A DAnimationList.h47 void remove(size_t i) { m_animations.remove(i); } function in class:WebCore::AnimationList
/external/apache-http/src/org/apache/http/message/
H A DBasicHeaderElementIterator.java157 public void remove() throws UnsupportedOperationException { method in class:BasicHeaderElementIterator
H A DBasicHeaderIterator.java174 public void remove() method in class:BasicHeaderIterator
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);

Completed in 333 milliseconds

123456