Searched refs:remove (Results 226 - 250 of 1847) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/ObjC/Framework/
H A DLookaheadStream.h67 /** Get and remove first element in queue; override FastQueue.remove() */
68 public T remove() { function in class:FastQueue
79 /** Make sure we have at least one element to remove, even if EOF */
80 public void consume() { sync(1); remove(); }
/external/antlr/antlr-3.4/runtime/Perl5/t/classes/Test/ANTLR/Runtime/
H A DBitSet.pm63 sub remove : Tests(2) { subroutine
69 $bs->remove(3);
/external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
H A DAbstractMapTest.java44 // that uses the default remove behavior.
100 * @tests java.util.AbstractMap#remove(java.lang.Object)
108 assertSame("HashMap(0)", map1.remove("key"), value);
112 assertSame("IdentityHashMap", map4.remove(key), value);
116 assertSame("LinkedHashMap", map5.remove(key), value);
125 assertSame("TreeMap", map6.remove(key), value);
129 assertSame("WeakHashMap", map7.remove(key), value);
133 Object valueOut = aSpecialMap.remove(specialKey);
330 public void remove() {
392 assertFalse(view.remove(nul
[all...]
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_CollectionTest.java55 // remove
56 assertTrue("CollectionTest - a) remove did not work", col
57 .remove(new Integer(101)));
58 assertTrue("CollectionTest - b) remove did not work", !col
70 col.remove(new Integer(101));
/external/chromium/chrome/browser/resources/shared/js/cr/ui/table/
H A Dtable_splitter.js72 this.ownerDocument.documentElement.classList.remove('col-resize');
/external/chromium/testing/gtest/test/
H A Dgtest_xml_outfiles_test.py80 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + ".xml"))
84 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + ".xml"))
109 # allow both names in the following code. We should remove this
/external/emma/core/java12/com/vladium/jcd/cls/
H A DMethodCollection.java121 public Method_info remove (final int offset) method in class:MethodCollection
123 return (Method_info) m_methods.remove (offset);
/external/gtest/test/
H A Dgtest_xml_outfiles_test.py80 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + ".xml"))
84 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + ".xml"))
109 # allow both names in the following code. We should remove this
/external/guava/guava-tests/test/com/google/common/collect/
H A DForwardingMultimapTest.java79 forward.remove("asdf", false);
80 assertEquals("[remove(Object,Object)]", getCalls());
84 forward.remove("asfd", Collections.<Boolean>emptyList());
85 assertEquals("[remove(Object,Object)]", getCalls());
/external/icu4c/samples/translit/answers/
H A Dmain_3.cpp17 // RuleBasedTransliterator rules to remove accents from characters
75 str.remove();
83 str.remove();
H A Dmain_4.cpp17 // RuleBasedTransliterator rules to remove accents from characters
79 str.remove();
87 str.remove();
/external/icu4c/samples/translit/
H A Dmain.cpp17 // RuleBasedTransliterator rules to remove accents from characters
81 str.remove();
89 str.remove();
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DViewPort.java138 * @param processor The processor to remove
143 processors.remove(processor);
294 sceneList.remove(scene);
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DUniqueStack.java55 "ResourceStack cannot be modyfied by Iterator.remove()";
74 public void remove() { method in class:UniqueStack.ImmutableIterator
140 objectsSet.remove(returnedValue);
/external/jsilver/src/com/google/clearsilver/jsilver/syntax/node/
H A DAFunctionExpression.java106 if(this._args_.remove(child))
136 i.remove();
/external/mesa3d/src/glsl/
H A Dopt_dead_functions.cpp119 /* Now that we've figured out which function signatures are used, remove
120 * the unused ones, and remove function definitions that have no more
127 entry->signature->remove();
146 func->remove();
/external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/mdat/
H A DDummyMap.java56 public V remove(Object key) { method in class:DummyMap
58 keys.remove(key);
/external/nist-sip/java/gov/nist/javax/sip/header/
H A DSIPHeaderList.java282 hlist.remove(0);
291 hlist.remove(hlist.size() - 1);
298 * SIPHeader to remove
301 public boolean remove(HDR obj) { method in class:SIPHeaderList
305 return hlist.remove(obj);
591 * object to remove.
595 public boolean remove(Object obj) { method in class:SIPHeaderList
597 return this.hlist.remove(obj);
604 * index at which to remove the object
607 public HDR remove(in method in class:SIPHeaderList
[all...]
/external/protobuf/gtest/test/
H A Dgtest_xml_outfiles_test.py80 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_1_TEST + ".xml"))
84 os.remove(os.path.join(self.output_dir_, GTEST_OUTPUT_2_TEST + ".xml"))
109 # allow both names in the following code. We should remove this
/external/skia/src/core/
H A DSkMetaData.cpp117 (void)this->remove(name, type);
245 bool SkMetaData::remove(const char name[], Type type) { function in class:SkMetaData
274 return this->remove(name, kS32_Type);
279 return this->remove(name, kScalar_Type);
284 return this->remove(name, kString_Type);
289 return this->remove(name, kPtr_Type);
294 return this->remove(name, kBool_Type);
298 return this->remove(name, kData_Type);
/external/webkit/Source/WebCore/bindings/js/
H A DJSHTMLOptionsCollectionCustom.cpp91 JSValue JSHTMLOptionsCollection::remove(ExecState* exec) function in class:WebCore::JSHTMLOptionsCollection
95 return base->remove(exec);
/external/webkit/Source/WebCore/dom/
H A DSpaceSplitString.h53 void remove(const AtomicString&);
80 void remove(const AtomicString&);
/external/webkit/Source/WebCore/fileapi/
H A DEntry.cpp75 void Entry::remove(PassRefPtr<VoidCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const function in class:WebCore::Entry
78 if (!m_fileSystem->remove(this, successCallback, errorCallback))
H A DEntrySync.cpp87 void EntrySync::remove(ExceptionCode& ec) const function in class:WebCore::EntrySync
91 if (!m_fileSystem->remove(this, helper.successCallback(), helper.errorCallback())) {
/external/webkit/Source/WebCore/html/
H A DDataGridColumnList.cpp80 void DataGridColumnList::remove(DataGridColumn* col) function in class:WebCore::DataGridColumnList
85 m_columns.remove(index);

Completed in 913 milliseconds

1234567891011>>