Searched defs:remove (Results 126 - 150 of 552) sorted by relevance

1234567891011>>

/external/smack/src/org/jivesoftware/smack/packet/
H A DRegistration.java46 * <li>remove -- empty flag to remove account.
57 private boolean remove = false; field in class:Registration
129 public void setRemove(boolean remove){ argument
130 this.remove = remove;
136 if (instructions != null && !remove) {
139 if (attributes != null && attributes.size() > 0 && !remove) {
147 else if(remove){
148 buf.append("</remove>");
[all...]
/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractEmptyIterator.java69 public void remove() { method in class:AbstractEmptyIterator
/external/smali/dexlib2/src/main/java/org/jf/dexlib2/dexbacked/util/
H A DVariableSizeListIterator.java106 @Override public void remove() { throw new UnsupportedOperationException(); } method in class:VariableSizeListIterator
/external/srec/tools/grxmlcompile/
H A Dhashmap.cpp63 bool HashMap<T1,T2>::remove( T1 const & index ) function in class:HashMap
/external/antlr/antlr-3.4/runtime/ActionScript/project/src/org/antlr/runtime/
H A DTokenRewriteStream.as159 public function remove(index:int, programName:String = DEFAULT_PROGRAM_NAME):void { function
241 indexToOp[i] = undefined; // remove so any left have index size-1
/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 DIntervalSet.java122 iter.remove(); // remove this one
167 intervals.remove(i); // remove next one
682 public void remove(int el) { method in class:IntervalSet
683 throw new NoSuchMethodError("IntervalSet.remove() unimplemented");
/external/apache-http/src/org/apache/http/message/
H A DBasicTokenIterator.java149 public final void remove() method in class:BasicTokenIterator
/external/chromium_org/base/android/java/src/org/chromium/base/
H A DObserverList.java92 mObservers.remove(index);
158 mObservers.remove(i);
232 public void remove() { method in class:ObserverList.ObserverListIterator
/external/chromium_org/base/test/android/javatests/src/org/chromium/base/test/util/
H A DInMemorySharedPreferences.java187 public SharedPreferences.Editor remove(String key) { method in class:InMemorySharedPreferences.InMemoryEditor
224 mData.remove(key);
/external/chromium_org/chrome/common/extensions/docs/examples/api/cookies/
H A Dmanager.js63 this.remove = function(cookie) {
134 chrome.cookies.remove({"url": url, "name": cookie.name});
223 cache.remove(info.cookie);
/external/chromium_org/media/blink/
H A Dwebsourcebuffer_impl.cc114 void WebSourceBufferImpl::remove(double start, double end) { function in class:media::WebSourceBufferImpl
/external/chromium_org/testing/gtest/test/
H A Dgtest-filepath_test.cc67 // Windows CE doesn't have the remove C function.
68 int remove(const char* path) { function in namespace:testing::internal::__anon10870
504 remove(testdata_file_.c_str());
505 remove(unique_file0_.c_str());
506 remove(unique_file1_.c_str());
511 remove(testdata_file_.c_str());
512 remove(unique_file0_.c_str());
513 remove(unique_file1_.c_str());
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v4/
H A Dv8-splay.js111 if (greatest == null) splayTree.remove(key);
112 else splayTree.remove(greatest.key);
184 * @param {number} key Key to find and remove from the tree.
187 SplayTree.prototype.remove = function(key) {
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v5/
H A Dv8-splay.js111 if (greatest == null) splayTree.remove(key);
112 else splayTree.remove(greatest.key);
184 * @param {number} key Key to find and remove from the tree.
187 SplayTree.prototype.remove = function(key) {
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/v8-v6/
H A Dv8-splay.js112 if (greatest == null) splayTree.remove(key);
113 else splayTree.remove(greatest.key);
185 * @param {number} key Key to find and remove from the tree.
188 SplayTree.prototype.remove = function(key) {
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DSpaceSplitString.cpp113 void SpaceSplitString::Data::remove(unsigned index) function in class:blink::SpaceSplitString::Data
116 m_vector.remove(index);
129 bool SpaceSplitString::remove(const AtomicString& string) function in class:blink::SpaceSplitString
139 m_data->remove(i);
171 sharedDataMap().remove(m_keyString);
/external/chromium_org/third_party/WebKit/Source/core/events/
H A DEventListenerMap.cpp140 listenerVector->remove(indexOfRemovedListener);
144 bool EventListenerMap::remove(const AtomicString& eventType, EventListener* listener, bool useCapture, size_t& indexOfRemovedListener) function in class:blink::EventListenerMap
152 m_entries.remove(i);
180 listenerVector->remove(i);
195 m_entries.remove(i);
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLOptionsCollection.cpp100 void HTMLOptionsCollection::remove(int index) function in class:blink::HTMLOptionsCollection
102 toHTMLSelectElement(ownerNode()).remove(index);
141 base.remove(index);
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DRadioButtonGroupScope.cpp40 void remove(HTMLInputElement*);
138 void RadioButtonGroup::remove(HTMLInputElement* button) function in class:blink::RadioButtonGroup
145 m_members.remove(it);
274 group->remove(element);
276 // We don't remove an empty RadioButtonGroup from m_nameToGroupMap for
/external/chromium_org/third_party/WebKit/Source/core/html/track/
H A DTextTrackList.cpp212 void TextTrackList::remove(TextTrack* track) function in class:TextTrackList
235 tracks->remove(index);
319 // media element, then the user agent must remove the track element's
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorState.cpp61 void InspectorState::remove(const String& propertyName) function in class:blink::InspectorState
63 m_properties->remove(propertyName);
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DImageQualityController.cpp52 void ImageQualityController::remove(RenderObject* renderer) function in class:blink::ImageQualityController
105 innerMap->remove(layer);
124 m_objectLayerSizeMap.remove(object);
197 // Live resize has ended, paint in HQ and remove this object from the list.
207 // There is no scale in effect. If we had a scale in effect before, we can just remove this object from the list.
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/tests/
H A Dproto.js100 remove: function(item) {},
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DTextFinderTest.cpp382 void remove() function in class:__anon11405::TextFinderFakeTimerTest::TimeProxyPlatform
446 m_proxyTimePlatform.remove();

Completed in 1608 milliseconds

1234567891011>>