Home
last modified time | relevance | path

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

12345678910>>...130

/external/curl/tests/data/
Dtest1309130 remove pointer 7, payload 718
181 remove pointer 8, payload 236
231 remove pointer 9, payload 777
280 remove pointer 10, payload 295
328 remove pointer 11, payload 836
375 remove pointer 12, payload 354
421 remove pointer 13, payload 895
466 remove pointer 14, payload 413
510 remove pointer 15, payload 954
553 remove pointer 16, payload 472
[all …]
/external/libgdx/gdx/src/com/badlogic/gdx/graphics/g3d/
DEnvironment.java82 public Environment remove (final BaseLight... lights) { in remove() method in Environment
84 remove(light); in remove()
88 public Environment remove (final Array<BaseLight> lights) { in remove() method in Environment
90 remove(light); in remove()
94 public Environment remove (BaseLight light) { in remove() method in Environment
96 remove((DirectionalLight)light); in remove()
98 remove((PointLight)light); in remove()
100 remove((SpotLight)light); in remove()
106 public Environment remove (DirectionalLight light) { in remove() method in Environment
111 remove(DirectionalLightsAttribute.Type); in remove()
[all …]
/external/libgdx/gdx/src/com/badlogic/gdx/utils/
DDelayedRemovalArray.java30 private IntArray remove = new IntArray(0); field in DelayedRemovalArray
72 for (int i = 0, n = remove.size; i < n; i++) in end()
73 removeIndex(remove.pop()); in end()
77 private void remove (int index) { in remove() method in DelayedRemovalArray
78 for (int i = 0, n = remove.size; i < n; i++) { in remove()
79 int removeIndex = remove.get(i); in remove()
82 remove.insert(i, index); in remove()
86 remove.add(index); in remove()
93 remove(index); in removeValue()
101 remove(index); in removeIndex()
[all …]
/external/guava/guava-tests/test/com/google/common/cache/
DEmptyCachesTest.java161 assertFalse(keys.remove(null)); in testKeySet_empty_remove()
162 assertFalse(keys.remove(6)); in testKeySet_empty_remove()
163 assertFalse(keys.remove(-6)); in testKeySet_empty_remove()
179 keys.remove(1); in testKeySet_remove()
180 keys.remove(2); in testKeySet_remove()
181 assertFalse(keys.remove(null)); in testKeySet_remove()
182 assertFalse(keys.remove(6)); in testKeySet_remove()
183 assertFalse(keys.remove(-6)); in testKeySet_remove()
238 assertFalse(values.remove(null)); in testValues_empty_remove()
239 assertFalse(values.remove(6)); in testValues_empty_remove()
[all …]
/external/autotest/utils/
Dpackager.py83 remove=False): argument
100 if not remove:
147 def process_all_packages(pkgmgr, client_dir, remove=False): argument
178 if not remove:
194 process_packages(pkgmgr, 'test', tests, client_dir, remove=remove)
195 process_packages(pkgmgr, 'test', site_tests, client_dir, remove=remove)
197 remove=remove)
198 process_packages(pkgmgr, 'dep', deps, dep_dir, remove=remove)
200 remove=remove)
275 process_all_packages(pkgmgr, client_dir, remove=remove_flag)
[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-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/
DMultisetRemoveTester.java46 getMultiset().remove(samples.e0, -1); in testRemoveNegative()
55 getMultiset().remove(samples.e0, 2); in testRemoveUnsupported()
63 assertEquals("old count", originalCount, getMultiset().remove(samples.e0, 0)); in testRemoveZeroNoOp()
71 1, getMultiset().remove(samples.e0, 2)); in testRemove_occurrences_present()
82 3, getMultiset().remove(samples.e0, 2)); in testRemove_some_occurrences_present()
91 0, getMultiset().remove(samples.e3, 2)); in testRemove_occurrences_absent()
100 0, getMultiset().remove(samples.e3, 2)); in testRemove_occurrences_unsupported_absent()
108 oldCount, getMultiset().remove(samples.e0, 0)); in testRemove_occurrences_0()
114 getMultiset().remove(samples.e0, -1); in testRemove_occurrences_negative()
122 0, getMultiset().remove(WrongType.VALUE, 1)); in testRemove_occurrences_wrongType()
[all …]
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
DMultisetRemoveTester.java49 getMultiset().remove(samples.e0, -1); in testRemoveNegative()
58 getMultiset().remove(samples.e0, 2); in testRemoveUnsupported()
66 assertEquals("old count", originalCount, getMultiset().remove(samples.e0, 0)); in testRemoveZeroNoOp()
74 1, getMultiset().remove(samples.e0, 2)); in testRemove_occurrences_present()
85 3, getMultiset().remove(samples.e0, 2)); in testRemove_some_occurrences_present()
94 0, getMultiset().remove(samples.e3, 2)); in testRemove_occurrences_absent()
103 0, getMultiset().remove(samples.e3, 2)); in testRemove_occurrences_unsupported_absent()
111 oldCount, getMultiset().remove(samples.e0, 0)); in testRemove_occurrences_0()
117 getMultiset().remove(samples.e0, -1); in testRemove_occurrences_negative()
125 0, getMultiset().remove(WrongType.VALUE, 1)); in testRemove_occurrences_wrongType()
[all …]
DMultimapRemoveEntryTester.java48 assertFalse(multimap().remove(sampleKeys().e0, sampleValues().e1)); in testRemoveAbsent()
55 assertTrue(multimap().remove(sampleKeys().e0, sampleValues().e0)); in testRemovePresent()
68 assertTrue(multimap().remove(null, getValueForNullKey())); in testRemoveNullKeyPresent()
79 assertTrue(multimap().remove(getKeyForNullValue(), null)); in testRemoveNullValuePresent()
87 assertFalse(multimap().remove(null, sampleValues().e0)); in testRemoveNullKeyAbsent()
93 assertFalse(multimap().remove(sampleKeys().e0, null)); in testRemoveNullValueAbsent()
100 multimap().remove(sampleKeys().e0, null); in testRemoveNullValueForbidden()
111 multimap().remove(null, sampleValues().e0); in testRemoveNullKeyForbidden()
132 multimap().remove(key, value); in testRemovePropagatesToGet()
133 expectedCollection.remove(value); in testRemovePropagatesToGet()
[all …]
DBiMapRemoveTester.java41 getMap().remove(samples.e0.getKey()); in testRemoveKeyRemovesFromInverse()
49 getMap().keySet().remove(samples.e0.getKey()); in testRemoveKeyFromKeySetRemovesFromInverse()
57 getMap().values().remove(samples.e0.getValue()); in testRemoveFromValuesRemovesFromInverse()
65 getMap().inverse().remove(samples.e0.getValue()); in testRemoveFromInverseRemovesFromForward()
73 getMap().inverse().keySet().remove(samples.e0.getValue()); in testRemoveFromInverseKeySetRemovesFromForward()
81 getMap().inverse().values().remove(samples.e0.getKey()); in testRemoveFromInverseValuesRemovesFromInverse()
91 iterator.remove(); in testKeySetIteratorRemove()
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
DPKIXCertPathValidatorSpi.java395 criticalExtensions.remove(RFC3280CertPathUtilities.KEY_USAGE); in engineValidate()
396 criticalExtensions.remove(RFC3280CertPathUtilities.CERTIFICATE_POLICIES); in engineValidate()
397 criticalExtensions.remove(RFC3280CertPathUtilities.POLICY_MAPPINGS); in engineValidate()
398 criticalExtensions.remove(RFC3280CertPathUtilities.INHIBIT_ANY_POLICY); in engineValidate()
399 criticalExtensions.remove(RFC3280CertPathUtilities.ISSUING_DISTRIBUTION_POINT); in engineValidate()
400 criticalExtensions.remove(RFC3280CertPathUtilities.DELTA_CRL_INDICATOR); in engineValidate()
401 criticalExtensions.remove(RFC3280CertPathUtilities.POLICY_CONSTRAINTS); in engineValidate()
402 criticalExtensions.remove(RFC3280CertPathUtilities.BASIC_CONSTRAINTS); in engineValidate()
403 criticalExtensions.remove(RFC3280CertPathUtilities.SUBJECT_ALTERNATIVE_NAME); in engineValidate()
404 criticalExtensions.remove(RFC3280CertPathUtilities.NAME_CONSTRAINTS); in engineValidate()
[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/guava/guava-testlib/src/com/google/common/collect/testing/testers/
DMapRemoveTester.java52 samples.e0.getValue(), getMap().remove(samples.e0.getKey())); in testRemove_present()
64 getMap().remove(samples.e0.getKey()); in testRemovePresentConcurrentWithEntrySetIteration()
78 getMap().remove(samples.e0.getKey()); in testRemovePresentConcurrentWithKeySetIteration()
92 getMap().remove(samples.e0.getKey()); in testRemovePresentConcurrentWithValuesIteration()
103 getMap().remove(samples.e3.getKey())); in testRemove_notPresent()
114 getValueForNullKey(), getMap().remove(null)); in testRemove_nullPresent()
124 getMap().remove(samples.e0.getKey()); in testRemove_unsupported()
138 getMap().remove(samples.e3.getKey())); in testRemove_unsupportedNotPresent()
152 getMap().remove(null)); in testRemove_nullQueriesNotSupported()
160 assertNull("remove(null) should return null", getMap().remove(null)); in testRemove_nullSupportedMissing()
[all …]
DCollectionRemoveTester.java50 collection.remove(samples.e0)); in testRemove_present()
62 assertTrue(collection.remove(samples.e0)); in testRemovePresentConcurrentWithIteration()
73 collection.remove(samples.e3)); in testRemove_notPresent()
83 assertTrue("remove(null) should return true", collection.remove(null)); in testRemove_nullPresent()
93 collection.remove(samples.e0); in testRemove_unsupported()
107 collection.remove(samples.e3)); in testRemove_unsupportedNotPresent()
121 collection.remove(null)); in testRemove_nullNotSupported()
129 assertFalse("remove(null) should return false", collection.remove(null)); in testRemove_nullAllowed()
139 iterator.remove(); in testIteratorRemove_unsupported()
150 assertFalse(collection.remove(WrongType.VALUE)); in testRemove_wrongType()
DListRemoveAtIndexTester.java47 getList().remove(0); in testRemoveAtIndex_unsupported()
57 getList().remove(-1); in testRemoveAtIndex_negative()
67 getList().remove(getNumElements()); in testRemoveAtIndex_tooLarge()
92 getList().remove(getNumElements() / 2); in testRemoveAtIndexConcurrentWithIteration()
109 getList().get(index), getList().remove(index)); in runRemoveTest()
111 expected.remove(index); in runRemoveTest()
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/
Dremove.pass.cpp40 c1.remove(0); in main()
49 c1.remove(0); in main()
59 c1.remove(0); in main()
67 c1.remove(0); in main()
77 c1.remove(0); in main()
87 c1.remove(c1.front()); in main()
98 c.remove(c.front()); in main()
114 c1.remove(0); in main()
123 c1.remove(0); in main()
133 c1.remove(0); in main()
[all …]
/external/guava/guava-tests/test/com/google/common/collect/
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()
DEvictingQueueTest.java53 assertFalse(queue.remove("hi")); in testCreateWithZeroSize()
64 queue.remove(); in testCreateWithZeroSize()
109 assertEquals("there", queue.remove()); in testEvictingAfterOne()
133 assertEquals("two", queue.remove()); in testEvictingAfterThree()
155 assertEquals("two", queue.remove()); in testAddAll()
178 assertEquals("one", copy.remove()); in testSerialization()
179 assertEquals("two", copy.remove()); in testSerialization()
180 assertEquals("three", copy.remove()); in testSerialization()
/external/autotest/frontend/client/src/autotest/tko/
DHeaderFieldCollection.java100 public void remove() { in iterator() method
101 baseIterator.remove(); in iterator()
102 fieldsByName.remove(lastElement.getName()); in iterator()
103 fieldsBySqlName.remove(lastElement.getSqlName()); in iterator()
136 public boolean remove(Object o) { in remove() method
142 orderedFields.remove(field); in remove()
143 fieldsByName.remove(field.getName()); in remove()
144 fieldsBySqlName.remove(field.getSqlName()); in remove()
/external/guava/guava/src/com/google/common/collect/
DStandardTable.java144 @Override public V remove( in remove() method in StandardTable
153 V value = map.remove(columnKey); in remove()
155 backingMap.remove(rowKey); in remove()
166 V value = entry.getValue().remove(column); in removeColumn()
170 iterator.remove(); in removeColumn()
185 remove(rowKey, columnKey); in removeMapping()
246 @Override public void remove() { in remove() method in StandardTable.CellIterator
247 columnIterator.remove(); in remove()
249 rowIterator.remove(); in remove()
281 backingMap.remove(rowKey); in maintainEmptyInvariant()
[all …]
/external/icu/icu4c/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 …]
/external/lldb/test/functionalities/process_launch/
DTestProcessLaunch.py48 os.remove (out_file)
53 os.remove (err_file)
82 os.remove (out_file)
103 os.remove (err_file)
145 os.remove (out_file_path)
146 os.remove (err_file_path)
187 os.remove(out_file_path)
188 os.remove(err_file_path)
/external/llvm/lib/Support/
DLockFileManager.cpp48 sys::fs::remove(LockFileName); in readLockFile()
65 sys::fs::remove(LockFileName); in readLockFile()
136 sys::fs::remove(Filename); in ~RemoveUniqueLockFileOnSignal()
189 sys::fs::remove(UniqueLockFileName); in LockFileManager()
216 sys::fs::remove(UniqueLockFileName); in LockFileManager()
228 if ((EC = sys::fs::remove(LockFileName))) { in LockFileManager()
250 sys::fs::remove(LockFileName); in ~LockFileManager()
251 sys::fs::remove(UniqueLockFileName); in ~LockFileManager()
318 return sys::fs::remove(LockFileName); in unsafeRemoveLockFile()
/external/robolectric/v1/src/main/java/com/xtremelabs/robolectric/tester/android/content/
DTestSharedPreferences.java89 listeners.remove(listener); in unregisterOnSharedPreferenceChangeListener()
105 editsThatNeedRemove.remove(key); in putString()
112 editsThatNeedRemove.remove(key); in putInt()
119 editsThatNeedRemove.remove(key); in putLong()
126 editsThatNeedRemove.remove(key); in putFloat()
133 editsThatNeedRemove.remove(key); in putBoolean()
138 public Editor remove(String key) { in remove() method in TestSharedPreferences.TestSharedPreferencesEditor
159 previousContent.remove(key); in commit()

12345678910>>...130