/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/libmojo/mojo/edk/system/ |
D | awakable_list_unittest.cc | 34 awakable_list.Remove(thread.waiter()); in TEST() 76 awakable_list.Remove(thread.waiter()); in TEST() 89 awakable_list.Remove(thread.waiter()); 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() 154 awakable_list.Remove(thread.waiter()); in TEST() 200 awakable_list.Remove(thread1.waiter()); in TEST() [all …]
|
/external/dng_sdk/source/ |
D | dng_xmp.cpp | 650 void dng_xmp::Remove (const char *ns, in Remove() function in dng_xmp 654 fSDK->Remove (ns, path); in Remove() 682 Remove (ns, path); in RemoveEmptyStringOrArray() 766 Remove (ns, path); in SyncString() 789 Remove (ns, path); in SyncString() 815 Remove (ns, path); in SyncString() 830 Remove (ns, path); in SyncString() 892 Remove (ns, path); in SyncStringList() 1040 Remove (ns, path); in SyncAltLangDefault() 1265 Remove (ns, path); in Sync_uint32() [all …]
|
/external/protobuf/csharp/src/Google.Protobuf.Test/Collections/ |
D | MapFieldTest.cs | 97 map.Remove("b"); in AddPreservesInsertionOrder() 216 Assert.IsFalse(map.Remove("missing")); in Remove_Key() 218 Assert.IsTrue(map.Remove("foo")); in Remove_Key() 220 Assert.Throws<ArgumentNullException>(() => map.Remove(null)); in Remove_Key() 230 Assert.IsFalse(collection.Remove(NewKeyValuePair("wrong key", "bar"))); in Remove_Pair() 232 Assert.IsFalse(collection.Remove(NewKeyValuePair("foo", "wrong value"))); in Remove_Pair() 234 Assert.IsTrue(collection.Remove(NewKeyValuePair("foo", "bar"))); in Remove_Pair() 236 …Assert.Throws<ArgumentException>(() => collection.Remove(new KeyValuePair<string, string>(null, ""… in Remove_Pair() 341 dictionary.Remove("a"); in IDictionary_Remove() 343 dictionary.Remove(5); in IDictionary_Remove() [all …]
|
/external/abi-dumper/ |
D | Makefile.pl | 73 my ($PREFIX, $DESTDIR, $Help, $Install, $Remove); 80 "remove!" => \$Remove 90 if(not $Install and not $Remove) 98 $Remove = 1; 162 if($Remove)
|
/external/lzma/CPP/Windows/ |
D | FileDir.h | 51 ~CTempFile() { Remove(); } in ~CTempFile() 55 bool Remove(); 65 ~CTempDir() { Remove(); } in ~CTempDir() 69 bool Remove();
|
/external/libchrome/base/ |
D | id_map_unittest.cc | 45 map.Remove(id1); in TEST() 49 map.Remove(id2); in TEST() 81 map.Remove(iter.GetCurrentKey()); in TEST() 126 map.Remove(ids_in_iteration_order[1]); in TEST() 131 map.Remove(ids_in_iteration_order[3]); in TEST() 136 map.Remove(ids_in_iteration_order[0]); in TEST() 279 map_external.Remove(map_external_ids[i]); in TEST() 280 map_owned.Remove(map_owned_ids[i]); in TEST() 375 map.Remove(kId1); in TEST()
|
/external/abi-compliance-checker/ |
D | Makefile.pl | 78 my ($PREFIX, $DESTDIR, $Help, $Install, $Remove); 85 "remove!" => \$Remove 95 if(not $Install and not $Remove) 103 $Remove = 1; 169 if($Remove)
|
/external/fmtlib/doc/bootstrap/ |
D | normalize.less | 16 // Remove default margin. 64 // Remove excess height in iOS 5 devices. 86 // Remove the gray background color from active links in IE 10. 181 // Remove border when inside `a` element in IE 8/9/10. 308 // Remove inner padding and border in Firefox 4+. 331 // 2. Remove excess padding in IE 8/9/10. 365 // Remove inner padding and search cancel button in Safari and Chrome on OS X. 387 // 2. Remove padding so people aren't caught out if they zero out fieldsets. 396 // Remove default vertical scrollbar in IE 8/9/10/11. 416 // Remove most spacing between table cells.
|
/external/proguard/src/proguard/gui/ |
D | boilerplate.pro | 93 # Remove - System method calls. Remove all invocations of System 107 # Remove - Math method calls. Remove all invocations of Math 156 # Remove - Number method calls. Remove all invocations of Number 273 # Remove - String method calls. Remove all invocations of String 330 # Remove - StringBuffer method calls. Remove all invocations of StringBuffer 346 # Remove - StringBuilder method calls. Remove all invocations of StringBuilder 362 # Remove debugging - Throwable_printStackTrace calls. Remove all invocations of 368 # Remove debugging - Thread_dumpStack calls. Remove all invocations of 374 # Remove debugging - All logging API calls. Remove all invocations of the 380 # Remove debugging - All Log4j API calls. Remove all invocations of the
|
D | default.pro | 32 # Remove - System method calls. Remove all invocations of System 46 # Remove - Math method calls. Remove all invocations of Math 95 # Remove - Number method calls. Remove all invocations of Number 205 # Remove - String method calls. Remove all invocations of String 262 # Remove - StringBuffer method calls. Remove all invocations of StringBuffer 278 # Remove - StringBuilder method calls. Remove all invocations of StringBuilder
|
/external/protobuf/csharp/src/Google.Protobuf/Collections/ |
D | MapField.cs | 142 public bool Remove(TKey key) in Remove() method in Google.Protobuf.Collections.MapField 148 map.Remove(key); in Remove() 149 node.List.Remove(node); in Remove() 313 bool ICollection<KeyValuePair<TKey, TValue>>.Remove(KeyValuePair<TKey, TValue> item) in Remove() method in Google.Protobuf.Collections.MapField 323 map.Remove(item.Key); in Remove() 324 node.List.Remove(node); in Remove() 503 void IDictionary.Remove(object key) in IDictionary.Remove() 510 Remove((TKey)key); in IDictionary.Remove() 733 public bool Remove(T item) in Remove() method in Google.Protobuf.Collections.MapField.MapView
|
/external/v8/src/arm64/ |
D | code-stubs-arm64.h | 187 saved_regs_.Remove(MacroAssembler::DefaultTmpList()); in RegisterAllocation() 188 saved_fp_regs_.Remove(MacroAssembler::DefaultFPTmpList()); in RegisterAllocation() 196 pool_available.Remove(used_regs); in RegisterAllocation() 202 saved_regs_.Remove(scratch0_); in RegisterAllocation() 203 saved_regs_.Remove(scratch1_); in RegisterAllocation() 204 saved_regs_.Remove(scratch2_); in RegisterAllocation() 268 list.Remove(MacroAssembler::DefaultTmpList()); in GetValidRegistersForAllocation()
|
/external/elfutils/libasm/ |
D | ChangeLog | 14 * asm_*.c: Remove old-style function definitions. 33 * Makefile.am: Remove !MUDFLAP conditions. 41 * asm_newscn.c (asm_newscn): Remove unused variable. 50 * asm_error.c: Always use __thread. Remove all !USE_TLS code. 120 * Makefile.am: Remove lint handling. 131 * asm_end.c (binary_end): Remove shadowing variables.
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonRDFOpt.cpp | 89 bool rewrite(NodeAddr<InstrNode*> IA, SetVector<NodeId> &Remove); 161 SetVector<NodeId> Remove = DeadInstrs; in run() local 168 Changed |= rewrite(SA, Remove); in run() 171 return erase(Remove) || Changed; in run() 201 bool HexagonDCE::rewrite(NodeAddr<InstrNode*> IA, SetVector<NodeId> &Remove) { in rewrite() argument 255 Remove.insert(D.Id); in rewrite()
|
/external/junit/ |
D | README.version | 6 Remove DisableOnDebug (new in 4.12) as it is not supported on Android 7 Remove support for stuck threads
|
/external/naver-fonts/ |
D | README | 10 1. Remove 4,888 Chinese characters 11 2. Remove non-Korean characters other than ASCII (up to U+007F) 12 3. Remove hints
|
/external/bison/ |
D | ChangeLog-2012 | 5 * doc/fdl.texi: Remove file. 25 * lib/lbitset.c (lbitset_elt_find): Remove unnecessary test of "elt", 52 * lib/bitset_stats.c (bitset_stats_list): Remove declaration 76 (GNU pic (Groff 1.18.1) Grammar.): Remove empty %union. 172 * src/system.h (IF_LINT): Remove cpp macro. 510 Remove getHashCode as it's unused. Update all expected output. 671 * doc/bison.texinfo: Remove all uses. 691 * bootstrap: Remove 2011 from copyright years. The bootstrap 933 * tests/.cvsignore: Remove; I don't use CVS to maintain Bison 949 (vc_ignore): Remove. [all …]
|
/external/strace/ |
D | ChangeLog | 25 * capability.c (cap_user_header_t, cap_user_data_t): Remove. 44 * configure.ac (AC_CHECK_FUNCS): Remove pipe2. 73 * tests/mq.expected: Remove. 74 * tests/Makefile.am (EXTRA_DIST): Remove mq.expected. 83 * defs.h (INJECT_OPTS_RVAL_DISABLE): Remove. 142 * tests/ipc_sem.c (main) [__GLIBC__]: Remove. 249 * tests/msg_control.c (VAL_STR): Remove. 356 * defs.h (fault_opts): Remove err field, add rval field. 430 * linux/dummy.h: Remove sys_ustat. 443 * strace.1: Remove misplaced .TP macros. [all …]
|
/external/v8/src/ |
D | compilation-cache.cc | 95 void CompilationSubCache::Remove(Handle<SharedFunctionInfo> function_info) { in Remove() function in v8::internal::CompilationSubCache 101 table->Remove(*function_info); in Remove() 281 void CompilationCache::Remove(Handle<SharedFunctionInfo> function_info) { in Remove() function in v8::internal::CompilationCache 284 eval_global_.Remove(function_info); in Remove() 285 eval_contextual_.Remove(function_info); in Remove() 286 script_.Remove(function_info); in Remove()
|
/external/webrtc/webrtc/base/ |
D | scopedptrcollection_unittest.cc | 60 TEST_F(ScopedPtrCollectionTest, Remove) { in TEST_F() argument 64 collection_->Remove(ic); in TEST_F()
|
D | httpserver.cc | 100 HttpServer::Remove(int connection_id) { in Remove() function in rtc::HttpServer 166 server_->Remove(connection_id_); in InitiateClose() 203 server_->Remove(connection_id_); in onHttpComplete() 226 server_->Remove(connection_id_); in onHttpClosed()
|
/external/compiler-rt/lib/tsan/rtl/ |
D | tsan_mutexset.h | 37 void Remove(u64 id); // Removes the mutex completely (if it's destroyed). 62 void MutexSet::Remove(u64 id) {} in Remove() function
|
/external/ltp/testcases/open_posix_testsuite/ |
D | ChangeLog | 49 - locate-test: Remove -printf argument for 'find' for POSIX conformant. 50 - Makefile: Remove --defined-only option for 'nm' for POSIX conformant. 53 Remove the output. 97 - shm_open/40-1.c: Remove it. This case cannot exit cleanly, 99 - shm_open/33-1.c: Remove. Improper scenario. 102 - pthread_attr_setinheritsched/5-1.c: Remove. Not correct.
|
/external/libchrome/base/trace_event/ |
D | heap_profiler_allocation_register.cc | 108 void AllocationRegister::Remove(const void* address) { in Remove() function in base::trace_event::AllocationRegister 116 allocations_.Remove(index); in Remove() 161 backtraces_.Remove(index); in RemoveBacktrace()
|