Home
last modified time | relevance | path

Searched refs:remove (Results 1 – 25 of 3333) sorted by relevance

12345678910>>...134

/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DDockController.js136 body.classList.remove("undocked");
137 body.classList.remove("dock-to-right");
138 body.classList.remove("dock-to-left");
142 body.classList.remove("undocked");
144 body.classList.remove("dock-to-left");
145 body.classList.remove("dock-to-bottom");
148 body.classList.remove("undocked");
149 body.classList.remove("dock-to-right");
151 body.classList.remove("dock-to-bottom");
155 body.classList.remove("dock-to-right");
[all …]
/external/replicaisland/src/com/replica/replicaisland/
DSetPreferencesActivity.java64 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_ROW); in onDialogClosed()
65 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_INDEX); in onDialogClosed()
66 editor.remove(PreferenceConstants.PREFERENCE_LEVEL_COMPLETED); in onDialogClosed()
67 editor.remove(PreferenceConstants.PREFERENCE_LINEAR_MODE); in onDialogClosed()
68 editor.remove(PreferenceConstants.PREFERENCE_TOTAL_GAME_TIME); in onDialogClosed()
69 editor.remove(PreferenceConstants.PREFERENCE_PEARLS_COLLECTED); in onDialogClosed()
70 editor.remove(PreferenceConstants.PREFERENCE_PEARLS_TOTAL); in onDialogClosed()
71 editor.remove(PreferenceConstants.PREFERENCE_ROBOTS_DESTROYED); in onDialogClosed()
72 editor.remove(PreferenceConstants.PREFERENCE_DIFFICULTY); in onDialogClosed()
/external/guava/guava-tests/test/com/google/common/cache/
DEmptyCachesTest.java159 assertFalse(keys.remove(null)); in testKeySet_empty_remove()
160 assertFalse(keys.remove(6)); in testKeySet_empty_remove()
161 assertFalse(keys.remove(-6)); in testKeySet_empty_remove()
177 keys.remove(1); in testKeySet_remove()
178 keys.remove(2); in testKeySet_remove()
179 assertFalse(keys.remove(null)); in testKeySet_remove()
180 assertFalse(keys.remove(6)); in testKeySet_remove()
181 assertFalse(keys.remove(-6)); in testKeySet_remove()
236 assertFalse(values.remove(null)); in testValues_empty_remove()
237 assertFalse(values.remove(6)); in testValues_empty_remove()
[all …]
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/
DTestFastQueue.java59 String o = q.remove(); in testQueueThenRemoveAll()
73 buf.append(q.remove()); in testQueueThenRemoveOneByOne()
75 buf.append(q.remove()); in testQueueThenRemoveOneByOne()
77 buf.append(q.remove()); in testQueueThenRemoveOneByOne()
79 buf.append(q.remove()); in testQueueThenRemoveOneByOne()
81 buf.append(q.remove()); in testQueueThenRemoveOneByOne()
93 try { q.remove(); } in testGetFromEmptyQueue()
106 q.remove(); in testGetFromEmptyQueueAfterSomeAdds()
107 q.remove(); in testGetFromEmptyQueueAfterSomeAdds()
109 try { q.remove(); } in testGetFromEmptyQueueAfterSomeAdds()
[all …]
/external/chromium_org/third_party/polymer/components-chromium/paper-input/
Dpaper-input-extracted.js151 this.$.floatedLabel.classList.remove('hidden');
173 this.$.underlineHighlight.classList.remove('focused');
174 this.$.caret.classList.remove('focused');
177 this.$.floatedLabel.classList.remove('focused');
178 this.$.floatedLabel.classList.remove('focusedColor');
186 this.$.label.classList.remove('hidden');
211 this.$.underlineHighlight.classList.remove('focused');
218 this.$.caret.classList.remove('focused');
247 this.$.underlineHighlight.classList.remove('pressed');
304 this.$.label.classList.remove('focusedColor');
[all …]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DPKIXCertPathValidatorSpi.java370 criticalExtensions.remove(RFC3280CertPathUtilities.KEY_USAGE); in engineValidate()
371 criticalExtensions.remove(RFC3280CertPathUtilities.CERTIFICATE_POLICIES); in engineValidate()
372 criticalExtensions.remove(RFC3280CertPathUtilities.POLICY_MAPPINGS); in engineValidate()
373 criticalExtensions.remove(RFC3280CertPathUtilities.INHIBIT_ANY_POLICY); in engineValidate()
374 criticalExtensions.remove(RFC3280CertPathUtilities.ISSUING_DISTRIBUTION_POINT); in engineValidate()
375 criticalExtensions.remove(RFC3280CertPathUtilities.DELTA_CRL_INDICATOR); in engineValidate()
376 criticalExtensions.remove(RFC3280CertPathUtilities.POLICY_CONSTRAINTS); in engineValidate()
377 criticalExtensions.remove(RFC3280CertPathUtilities.BASIC_CONSTRAINTS); in engineValidate()
378 criticalExtensions.remove(RFC3280CertPathUtilities.SUBJECT_ALTERNATIVE_NAME); in engineValidate()
379 criticalExtensions.remove(RFC3280CertPathUtilities.NAME_CONSTRAINTS); in engineValidate()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
DAbstractMultisetTest.java101 ms.remove("a"); in testCountAfterRemoval()
210 assertEquals(0, ms.remove("a", 0)); in testRemoveNoneFromNone()
216 assertEquals(1, ms.remove("a", 0)); in testRemoveNoneFromSome()
221 assertEquals(0, ms.remove("a", 1)); in testRemoveOneFromNone()
227 assertEquals(1, ms.remove("a", 1)); in testRemoveOneFromOne()
233 assertEquals(5, ms.remove("a", 3)); in testRemoveSomeFromSome()
239 assertEquals(3, ms.remove("a", 5)); in testRemoveTooMany()
245 ms.remove("a", -1); in testRemoveNegative()
417 assertTrue(elementSet.remove("b")); in testRemoveFromElementSetYes()
424 assertFalse(elementSet.remove("b")); in testRemoveFromElementSetNo()
[all …]
DAbstractTableTest.java134 assertNull(table.remove("cat", 1)); in testRemove()
135 assertNull(table.remove("bar", 3)); in testRemove()
137 assertEquals((Character) 'c', table.remove("foo", 3)); in testRemove()
142 assertNull(table.remove(null, 1)); in testRemove()
143 assertNull(table.remove("foo", null)); in testRemove()
144 assertNull(table.remove(null, null)); in testRemove()
148 table.remove("foo", 3); in testRemove()
160 table.remove("foo", 3); in testRowClearAndPut()
162 table.remove("foo", 1); in testRowClearAndPut()
/external/libcxx/test/algorithms/alg.modifying.operations/alg.remove/
DAndroid.mk17 test_makefile := external/libcxx/test/algorithms/alg.modifying.operations/alg.remove/Android.mk
19 test_name := algorithms/alg.modifying.operations/alg.remove/remove_copy_if
23 test_name := algorithms/alg.modifying.operations/alg.remove/remove_copy
27 test_name := algorithms/alg.modifying.operations/alg.remove/remove
28 test_src := remove.pass.cpp
31 test_name := algorithms/alg.modifying.operations/alg.remove/remove_if
/external/smack/src/org/jivesoftware/smack/util/
DCache.java118 oldValue = remove(key, true); in put()
151 cacheObject.lastAccessedListNode.remove(); in get()
162 public synchronized V remove(Object key) { in remove() method in Cache
163 return remove(key, false); in remove()
170 public synchronized V remove(Object key, boolean internal) { in remove() method in Cache
172 CacheObject<V> cacheObject = map.remove(key); in remove()
178 cacheObject.lastAccessedListNode.remove(); in remove()
179 cacheObject.ageListNode.remove(); in remove()
190 remove(key); in clear()
237 public void remove() { in values() method
[all …]
/external/mesa3d/src/glsl/
Dopt_dead_code_local.cpp83 entry->remove(); in kill_channels()
87 entry->remove(); in kill_channels()
188 int remove = entry->available & ir->write_mask; in process_assignment() local
193 remove, entry->ir->write_mask & ~remove); in process_assignment()
195 if (remove) { in process_assignment()
204 entry->ir->write_mask &= ~remove; in process_assignment()
205 entry->available &= ~remove; in process_assignment()
208 entry->ir->remove(); in process_assignment()
209 entry->remove(); in process_assignment()
220 if ((entry->ir->write_mask | remove) & (1 << i)) { in process_assignment()
[all …]
/external/chromium_org/third_party/mesa/src/src/glsl/
Dopt_dead_code_local.cpp83 entry->remove(); in kill_channels()
87 entry->remove(); in kill_channels()
188 int remove = entry->available & ir->write_mask; in process_assignment() local
193 remove, entry->ir->write_mask & ~remove); in process_assignment()
195 if (remove) { in process_assignment()
204 entry->ir->write_mask &= ~remove; in process_assignment()
205 entry->available &= ~remove; in process_assignment()
208 entry->ir->remove(); in process_assignment()
209 entry->remove(); in process_assignment()
220 if ((entry->ir->write_mask | remove) & (1 << i)) { in process_assignment()
[all …]
/external/guava/guava/src/com/google/common/collect/
DStandardTable.java184 @Override public V remove( in remove() method in StandardTable
193 V value = map.remove(columnKey); in remove()
195 backingMap.remove(rowKey); in remove()
206 V value = entry.getValue().remove(column); in removeColumn()
210 iterator.remove(); in removeColumn()
225 remove(rowKey, columnKey); in removeMapping()
296 @Override public boolean remove(Object obj) { in remove() method in StandardTable.CellSet
327 @Override public void remove() { in remove() method in StandardTable.CellIterator
328 columnIterator.remove(); in remove()
330 rowIterator.remove(); in remove()
[all …]
/external/libcxx/test/containers/sequences/forwardlist/forwardlist.ops/
Dremove.pass.cpp29 c1.remove(0); in main()
38 c1.remove(0); in main()
48 c1.remove(0); in main()
56 c1.remove(0); in main()
66 c1.remove(0); in main()
77 c1.remove(0); in main()
86 c1.remove(0); in main()
96 c1.remove(0); in main()
104 c1.remove(0); in main()
114 c1.remove(0); in main()
/external/icu/icu4c/source/test/intltest/
Dsimplepatternformattertest.cpp47 appendTo.remove(); in TestNoPlaceholders()
70 appendTo.remove(); in TestOnePlaceholder()
78 appendTo.remove(); in TestOnePlaceholder()
115 appendTo.remove(); in TestManyPlaceholders()
128 appendTo.remove(); in TestManyPlaceholders()
141 appendTo.remove(); in TestManyPlaceholders()
155 appendTo.remove(); in TestManyPlaceholders()
168 appendTo.remove(); in TestManyPlaceholders()
175 appendTo.remove(); in TestManyPlaceholders()
182 appendTo.remove(); in TestManyPlaceholders()
Dmsfmrgts.cpp120 tempBuffer.remove(); in Test4074764()
127 tempBuffer.remove(); in Test4074764()
214 temp.remove(); in Test4031438()
229 temp1.remove(); in Test4031438()
261 tempBuffer.remove(); in Test4031438()
598 str.remove(); in Test4106661()
601 str.remove(); in Test4106661()
604 str.remove(); in Test4106661()
607 str.remove(); in Test4106661()
610 str.remove(); in Test4106661()
[all …]
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DCollectionRemoveTester.java47 collection.remove(samples.e0)); in testRemove_present()
56 collection.remove(samples.e3)); in testRemove_notPresent()
66 assertTrue("remove(null) should return true", collection.remove(null)); in testRemove_nullPresent()
76 collection.remove(samples.e0); in testRemove_unsupported()
90 collection.remove(samples.e3)); in testRemove_unsupportedNotPresent()
104 collection.remove(null)); in testRemove_nullNotSupported()
112 assertFalse("remove(null) should return false", collection.remove(null)); in testRemove_nullAllowed()
122 iterator.remove(); in testIteratorRemove_unsupported()
133 assertFalse(collection.remove(WrongType.VALUE)); in testRemove_wrongType()
DMapRemoveTester.java46 samples.e0.getValue(), getMap().remove(samples.e0.getKey())); in testRemove_present()
55 getMap().remove(samples.e3.getKey())); in testRemove_notPresent()
66 getValueForNullKey(), getMap().remove(null)); in testRemove_nullPresent()
76 getMap().remove(samples.e0.getKey()); in testRemove_unsupported()
90 getMap().remove(samples.e3.getKey())); in testRemove_unsupportedNotPresent()
104 getMap().remove(null)); in testRemove_nullQueriesNotSupported()
112 assertNull("remove(null) should return null", getMap().remove(null)); in testRemove_nullSupportedMissing()
119 assertNull(getMap().remove(WrongType.VALUE)); in testRemove_wrongType()
/external/smack/src/org/jivesoftware/smack/packet/
DRegistration.java57 private boolean remove = false; field in Registration
129 public void setRemove(boolean remove){ in setRemove() argument
130 this.remove = remove; in setRemove()
136 if (instructions != null && !remove) { in getChildElementXML()
139 if (attributes != null && attributes.size() > 0 && !remove) { in getChildElementXML()
147 else if(remove){ in getChildElementXML()
/external/chromium_org/third_party/WebKit/Source/web/
DWebGeolocationPermissionRequestManager.cpp55 bool WebGeolocationPermissionRequestManager::remove(const WebGeolocationPermissionRequest& permissi… in remove() function in blink::WebGeolocationPermissionRequestManager
62 m_private->m_geolocationIdMap.remove(it); in remove()
63 m_private->m_idGeolocationMap.remove(id); in remove()
67 bool WebGeolocationPermissionRequestManager::remove(int id, WebGeolocationPermissionRequest& permis… in remove() function in blink::WebGeolocationPermissionRequestManager
74 m_private->m_idGeolocationMap.remove(it); in remove()
75 m_private->m_geolocationIdMap.remove(geolocation); in remove()
/external/chromium_org/third_party/WebKit/Source/modules/geolocation/
DGeolocationWatchers.cpp36 void GeolocationWatchers::remove(int id) in remove() function in blink::GeolocationWatchers
42 m_notifierToIdMap.remove(iter->value); in remove()
43 m_idToNotifierMap.remove(iter); in remove()
46 void GeolocationWatchers::remove(GeoNotifier* notifier) in remove() function in blink::GeolocationWatchers
51 m_idToNotifierMap.remove(iter->value); in remove()
52 m_notifierToIdMap.remove(iter); in remove()
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
DLinkedHashMultimap.java211 linkedEntries.remove(createEntry(value)); in clear()
231 public void remove() { in iterator() method
232 delegateIterator.remove(); in iterator()
233 linkedEntries.remove(createEntry(value)); in iterator()
238 @Override public boolean remove(@Nullable Object value) { in remove() method in LinkedHashMultimap
239 boolean changed = delegate.remove(value); in remove()
245 linkedEntries.remove(createEntry(value)); in remove()
268 iterator.remove(); in retainAll()
269 linkedEntries.remove(Maps.immutableEntry(key, value)); in retainAll()
303 public void remove() { in createEntryIterator() method
[all …]
DAbstractBiMap.java106 inverse().remove(value); in putInBothMaps()
123 @Override public V remove(Object key) { in remove() method in AbstractBiMap
128 V oldValue = delegate.remove(key); in removeFromBothMaps()
134 inverse.delegate.remove(oldValue); in removeFromInverseMap()
173 @Override public boolean remove(Object key) { in remove() method in AbstractBiMap.KeySet
204 public void remove() { in iterator() method
207 iterator.remove(); in iterator()
245 @Override public void remove() { in iterator() method
246 iterator.remove(); in iterator()
283 @Override public boolean remove(Object object) {
[all …]
/external/chromium_org/third_party/WebKit/Source/platform/
DPODIntervalTreeTest.cpp112 EXPECT_TRUE(tree.remove(interval1)); in TEST()
115 EXPECT_TRUE(tree.remove(interval2)); in TEST()
245 tree.remove(addedElements[index]); in InsertionAndDeletionTest()
247 addedElements.remove(index); in InsertionAndDeletionTest()
266 removedElements.remove(index); in InsertionAndDeletionTest()
273 ASSERT_TRUE(tree.remove(addedElements[index])) << "Test failed for seed " << seed; in InsertionAndDeletionTest()
275 addedElements.remove(index); in InsertionAndDeletionTest()
318 tree.remove(tree.createInterval(0, 2)); in TEST()
320 tree.remove(tree.createInterval(9, 13)); in TEST()
322 tree.remove(tree.createInterval(0, 2)); in TEST()
[all …]
/external/chromium_org/third_party/icu/source/test/intltest/
Dmsfmrgts.cpp120 tempBuffer.remove(); in Test4074764()
127 tempBuffer.remove(); in Test4074764()
214 temp.remove(); in Test4031438()
229 temp1.remove(); in Test4031438()
261 tempBuffer.remove(); in Test4031438()
598 str.remove(); in Test4106661()
601 str.remove(); in Test4106661()
604 str.remove(); in Test4106661()
607 str.remove(); in Test4106661()
610 str.remove(); in Test4106661()
[all …]

12345678910>>...134