/external/libxkbcommon/xkbcommon/ |
D | .uncrustify.cfg | 131 sp_inside_paren=remove 132 sp_paren_paren=remove 138 sp_after_byref=remove 141 sp_inside_sparen=remove 142 sp_inside_sparen_close=remove 146 sp_before_semi=remove 150 sp_before_square=remove 151 sp_inside_square=remove 153 sp_before_comma=remove 158 sp_before_case_colon=remove [all …]
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/testers/ |
D | CollectionRemoveTester.java | 36 * A generic JUnit test which tests {@code remove} operations on a collection. 49 assertTrue("remove(present) should return true", in testRemove_present() 50 collection.remove(samples.e0)); in testRemove_present() 51 assertEquals("remove(present) should decrease a collection's size by one.", in testRemove_present() 62 assertTrue(collection.remove(samples.e0)); in testRemovePresentConcurrentWithIteration() 72 assertFalse("remove(notPresent) should return false", in testRemove_notPresent() 73 collection.remove(samples.e3)); in testRemove_notPresent() 83 assertTrue("remove(null) should return true", collection.remove(null)); in testRemove_nullPresent() 84 assertEquals("remove(present) should decrease a collection's size by one.", in testRemove_nullPresent() 93 collection.remove(samples.e0); in testRemove_unsupported() [all …]
|
D | MapRemoveTester.java | 37 * A generic JUnit test which tests {@code remove} operations on a map. Can't be 51 assertEquals("remove(present) should return the associated value", in testRemove_present() 52 samples.e0.getValue(), getMap().remove(samples.e0.getKey())); in testRemove_present() 53 assertEquals("remove(present) should decrease a map's size by one.", 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() 102 assertNull("remove(notPresent) should return null", in testRemove_notPresent() 103 getMap().remove(samples.e3.getKey())); in testRemove_notPresent() 113 assertEquals("remove(null) should return the associated value", in testRemove_nullPresent() [all …]
|
D | ListRemoveAtIndexTester.java | 35 * A generic JUnit test which tests {@code remove(int)} operations on a list. 47 getList().remove(0); in testRemoveAtIndex_unsupported() 48 fail("remove(i) should throw"); in testRemoveAtIndex_unsupported() 57 getList().remove(-1); in testRemoveAtIndex_negative() 58 fail("remove(-1) should throw"); in testRemoveAtIndex_negative() 67 getList().remove(getNumElements()); in testRemoveAtIndex_tooLarge() 68 fail("remove(size) should throw"); in testRemoveAtIndex_tooLarge() 92 getList().remove(getNumElements() / 2); in testRemoveAtIndexConcurrentWithIteration() 108 "remove(%d) should return the element at index %d", index, index), in runRemoveTest() 109 getList().get(index), getList().remove(index)); in runRemoveTest() [all …]
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/ |
D | MultisetRemoveTester.java | 39 * Tests for {@code Multiset#remove}, {@code Multiset.removeAll}, and {@code Multiset.retainAll} 49 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() 73 assertEquals("multiset.remove(present, 2) didn't return the old count", in testRemove_occurrences_present() 74 1, getMultiset().remove(samples.e0, 2)); in testRemove_occurrences_present() 75 assertFalse("multiset contains present after multiset.remove(present, 2)", in testRemove_occurrences_present() 84 assertEquals("multiset.remove(present, 2) didn't return the old count", in testRemove_some_occurrences_present() 85 3, getMultiset().remove(samples.e0, 2)); in testRemove_some_occurrences_present() 86 assertTrue("multiset contains present after multiset.remove(present, 2)", in testRemove_some_occurrences_present() [all …]
|
D | MultimapRemoveEntryTester.java | 40 * Tests for {@link Multimap#remove(Object, Object)}. 48 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() [all …]
|
/external/guava/guava-gwt/test-super/com/google/common/collect/testing/google/super/com/google/common/collect/testing/google/ |
D | MultisetRemoveTester.java | 36 * Tests for {@code Multiset#remove}, {@code Multiset.removeAll}, and {@code Multiset.retainAll} 46 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() 70 assertEquals("multiset.remove(present, 2) didn't return the old count", in testRemove_occurrences_present() 71 1, getMultiset().remove(samples.e0, 2)); in testRemove_occurrences_present() 72 assertFalse("multiset contains present after multiset.remove(present, 2)", in testRemove_occurrences_present() 81 assertEquals("multiset.remove(present, 2) didn't return the old count", in testRemove_some_occurrences_present() 82 3, getMultiset().remove(samples.e0, 2)); in testRemove_some_occurrences_present() 83 assertTrue("multiset contains present after multiset.remove(present, 2)", in testRemove_some_occurrences_present() [all …]
|
/external/curl/tests/data/ |
D | test1309 | 130 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/ltp/testcases/open_posix_testsuite/ |
D | AUTHORS | 1 geoffrey.r.gustafson REMOVE-THIS AT intel DOT com 2 inaky.perez-gonzalez REMOVE-THIS AT intel DOT com 3 julie.n.fleischer REMOVE-THIS AT intel DOT com 4 majid.awad REMOVE-THIS AT intel DOT com 5 rolla.n.selbak REMOVE-THIS AT intel DOT com 6 rusty.lynch REMOVE-THIS AT intel DOT com 7 salwan.searty REMOVE-THIS AT intel DOT com 8 sunyi REMOVE-THIS AT users DOT sourceforge DOT net
|
/external/valgrind/tests/ |
D | filter_stderr_basic | 12 # Remove ==pid== and --pid-- and **pid** strings 15 # Do NOT remove debug level output, i.e. lines beginning with --pid: 16 # Doing so would also remove asserts from the address space manager 19 # Remove "Command: line". (If wrapping occurs, it won't remove the 23 # Remove "WARNING: assuming toc 0x.." strings 26 # Remove "Using Valgrind-$VERSION and LibVEX..." line. 30 # Anonymise line numbers in vg_replace_malloc.c, remove dirname if present 42 # Remove line info out of order warnings 58 # Remove any ": dumping core" message as the user might have a 62 # Remove the size in "The main thread stack size..." message. [all …]
|
/external/guava/guava-tests/test/com/google/common/cache/ |
D | EmptyCachesTest.java | 161 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/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/perf/targets/ |
D | Target01.java | 30 c++; // some side effect, otherwise the JIT will remove the method in call() 40 c++; // some side effect, otherwise the JIT will remove the method in m1() 49 c++; // some side effect, otherwise the JIT will remove the method in m2() 58 c++; // some side effect, otherwise the JIT will remove the method in m3() 67 c++; // some side effect, otherwise the JIT will remove the method in m4() 76 c++; // some side effect, otherwise the JIT will remove the method in m5() 85 c++; // some side effect, otherwise the JIT will remove the method in m6() 94 c++; // some side effect, otherwise the JIT will remove the method in m7() 103 c++; // some side effect, otherwise the JIT will remove the method in m8() 112 c++; // some side effect, otherwise the JIT will remove the method in m9() [all …]
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/ |
D | PKIXCertPathValidatorSpi.java | 395 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/webrtc/webrtc/common_audio/ |
D | swap_queue_unittest.cc | 52 EXPECT_TRUE(queue.Remove(&i)); in TEST() 54 EXPECT_TRUE(queue.Remove(&i)); in TEST() 74 EXPECT_TRUE(queue.Remove(&i)); in TEST() 76 EXPECT_TRUE(queue.Remove(&i)); in TEST() 83 EXPECT_FALSE(queue.Remove(&i)); in TEST() 85 EXPECT_TRUE(queue.Remove(&i)); in TEST() 86 EXPECT_FALSE(queue.Remove(&i)); in TEST() 104 EXPECT_FALSE(queue.Remove(&i)); in TEST() 119 EXPECT_TRUE(queue.Remove(&valid_chunk)); in TEST() 132 EXPECT_TRUE(queue.Remove(&valid_chunk)); in TEST() [all …]
|
/external/javaparser/javaparser-testing/src/test/java/com/github/javaparser/remove/ |
D | NodeRemovalTest.java | 22 package com.github.javaparser.remove; 43 boolean remove = testClass.remove(); in testRemoveClassFromCompilationUnit() 44 assertEquals(true, remove); in testRemoveClassFromCompilationUnit() 54 boolean remove = addField.remove(); in testRemoveFieldFromClass() 55 assertEquals(true, remove); in testRemoveFieldFromClass() 67 boolean remove = addStatement.remove(); in testRemoveStatementFromMethodBody() 68 assertEquals(true, remove); in testRemoveStatementFromMethodBody()
|
/external/guava/guava/src/com/google/common/collect/ |
D | StandardTable.java | 50 * #columnMap()} have iterators that don't support {@code remove()}. Otherwise, 144 @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() 182 /** Remove a row key / column key / value mapping, if present. */ 185 remove(rowKey, columnKey); in removeMapping() 246 @Override public void remove() { in remove() method in StandardTable.CellIterator 247 columnIterator.remove(); in remove() [all …]
|
/external/libmojo/mojo/edk/system/ |
D | awakable_list_unittest.cc | 33 // Double-remove okay: in TEST() 34 awakable_list.Remove(thread.waiter()); in TEST() 76 awakable_list.Remove(thread.waiter()); in TEST() 89 awakable_list.Remove(thread.waiter()); in TEST() 90 // Double-remove okay: in TEST() 91 awakable_list.Remove(thread.waiter()); in TEST() 107 awakable_list.Remove(thread.waiter()); in TEST() 125 awakable_list.Remove(thread.waiter()); in TEST() 137 awakable_list.Remove(thread.waiter()); in TEST() 152 awakable_list.Remove(thread.waiter()); in TEST() [all …]
|
/external/replicaisland/src/com/replica/replicaisland/ |
D | SetPreferencesActivity.java | 64 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/mesa3d/src/compiler/glsl/ |
D | opt_dead_code_local.cpp | 84 entry->remove(); in use_channels() 88 entry->remove(); in use_channels() 130 entry->remove(); in visit_leave() 199 printf("looking for %s.0x%01x to remove\n", var->name, in process_assignment() 211 int remove = entry->unused & ir->write_mask; in process_assignment() local 216 remove, entry->ir->write_mask & ~remove); in process_assignment() 218 if (remove) { in process_assignment() 227 entry->ir->write_mask &= ~remove; in process_assignment() 228 entry->unused &= ~remove; in process_assignment() 231 entry->ir->remove(); in process_assignment() [all …]
|
/external/abi-dumper/ |
D | Makefile.pl | 4 # Install/remove the tool for GNU/Linux 44 sudo perl $0 -remove -prefix /usr 56 -remove 57 Command to remove the tool. 73 my ($PREFIX, $DESTDIR, $Help, $Install, $Remove); 80 "remove!" => \$Remove 90 if(not $Install and not $Remove) 92 print STDERR "ERROR: command is not selected (-install or -remove)\n"; 97 { # remove old version first 98 $Remove = 1; [all …]
|
/external/antlr/antlr-3.4/tool/src/test/java/org/antlr/test/ |
D | TestFastQueue.java | 59 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/libcxx/test/std/experimental/filesystem/fs.op.funcs/fs.op.remove/ |
D | remove.pass.cpp | 14 // bool remove(const path& p); 15 // bool remove(const path& p, error_code& ec) noexcept; 32 ASSERT_SAME_TYPE(decltype(fs::remove(p)), bool); in TEST_CASE() 33 ASSERT_SAME_TYPE(decltype(fs::remove(p, ec)), bool); in TEST_CASE() 35 ASSERT_NOT_NOEXCEPT(fs::remove(p)); in TEST_CASE() 36 ASSERT_NOEXCEPT(fs::remove(p, ec)); in TEST_CASE() 45 fs::remove(f); in TEST_CASE() 70 TEST_CHECK(!fs::remove(p, ec)); in TEST_CASE() 84 TEST_CHECK(!fs::remove(p, ec)); in TEST_CASE() 104 TEST_CHECK(remove(p, ec)); in TEST_CASE()
|
/external/autotest/client/tests/xfstests/ |
D | control.plain | 29 # Remove 347: crbug:616822 30 TEST_RANGE['generic'].remove('347') 38 TEST_RANGE['ext4'].remove('307') 39 TEST_RANGE['generic'].remove('013') 40 TEST_RANGE['generic'].remove('070') 41 TEST_RANGE['generic'].remove('083') 42 TEST_RANGE['generic'].remove('224') 46 TEST_RANGE['generic'].remove('223')
|
D | control | 29 # Remove 347: crbug:616822 30 TEST_RANGE['generic'].remove('347') 38 TEST_RANGE['ext4'].remove('307') 39 TEST_RANGE['generic'].remove('013') 40 TEST_RANGE['generic'].remove('070') 41 TEST_RANGE['generic'].remove('083') 42 TEST_RANGE['generic'].remove('224') 46 TEST_RANGE['generic'].remove('223')
|
/external/libcxx/test/std/containers/sequences/forwardlist/forwardlist.ops/ |
D | remove.pass.cpp | 12 // void remove(const value_type& v); 40 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() [all …]
|