/external/curl/tests/data/ |
D | test1309 | 1452 removed payload 0[0] 1454 removed payload 39[0] 1455 removed payload 49[0] 1456 removed payload 49[1] 1457 removed payload 59[0] 1458 removed payload 59[1] 1459 removed payload 59[2] 1460 removed payload 98[0] 1461 removed payload 98[1] 1462 removed payload 98[2] [all …]
|
/external/libcxx/lib/abi/ |
D | CHANGELOG.TXT | 8 including what symbols were added, removed, or changed. 29 Symbol removed: __ZNKSt16bad_array_length4whatEv 30 Symbol removed: __ZNKSt16bad_array_length4whatEv 31 Symbol removed: __ZNSt16bad_array_lengthC1Ev 32 Symbol removed: __ZNSt16bad_array_lengthC1Ev 33 Symbol removed: __ZNSt16bad_array_lengthC2Ev 34 Symbol removed: __ZNSt16bad_array_lengthC2Ev 35 Symbol removed: __ZNSt16bad_array_lengthD0Ev 36 Symbol removed: __ZNSt16bad_array_lengthD0Ev 37 Symbol removed: __ZNSt16bad_array_lengthD1Ev [all …]
|
/external/slf4j/slf4j-site/src/site/pages/changes/ |
D | changes-1.3.txt | 16 ERROR: 8001: org.slf4j.impl.BasicMarker: Class org.slf4j.impl.BasicMarker removed 17 ERROR: 8001: org.slf4j.impl.BasicMarkerFactory: Class org.slf4j.impl.BasicMarkerFactory removed 18 ERROR: 8001: org.slf4j.impl.MarkerIgnoringBase: Class org.slf4j.impl.MarkerIgnoringBase removed 19 ERROR: 8001: org.slf4j.impl.MessageFormatter: Class org.slf4j.impl.MessageFormatter removed 20 ERROR: 8001: org.slf4j.impl.Util: Class org.slf4j.impl.Util removed 26 ERROR: 8001: org.slf4j.LoggerFactory: Class org.slf4j.LoggerFactory removed 27 ERROR: 8001: org.slf4j.MarkerFactory: Class org.slf4j.MarkerFactory removed 32 ERROR: 8001: org.slf4j.LoggerFactory: Class org.slf4j.LoggerFactory removed 33 ERROR: 8001: org.slf4j.MarkerFactory: Class org.slf4j.MarkerFactory removed 38 ERROR: 8001: org.slf4j.LoggerFactory: Class org.slf4j.LoggerFactory removed [all …]
|
/external/libpng/scripts/ |
D | checksym.awk | 20 removed[1] = "" # removed symbols from png.h 82 if (removed[o] == "" || removed[o] == $2) { 83 removed[o] = $2 86 print "png.h: duplicated removed symbol", o ": '" removed[o] "' != '" $2 "'" 127 if (symbol[o] == "" && removed[o] == "") { 150 if (symbol[o] != "" && removed[o] != "") { 151 … print "png.h: symbol", o, "both exported as '" symbol[o] "' and removed as '" removed[o] "'"
|
/external/perfetto/tools/ftrace_proto_gen/ |
D | event_list | 3 removed cpufreq_interactive/cpufreq_interactive_already 4 removed cpufreq_interactive/cpufreq_interactive_boost 5 removed cpufreq_interactive/cpufreq_interactive_notyet 6 removed cpufreq_interactive/cpufreq_interactive_setspeed 7 removed cpufreq_interactive/cpufreq_interactive_target 8 removed cpufreq_interactive/cpufreq_interactive_unboost 125 removed 218 removed 219 removed 220 removed [all …]
|
/external/llvm-project/libcxx/lib/abi/ |
D | CHANGELOG.TXT | 8 including what symbols were added, removed, or changed. 594 Symbol removed: _ZNKSt3__124__libcpp_debug_exception4whatEv 595 Symbol removed: _ZNSt3__124__libcpp_debug_exceptionC1ERKNS_19__libcpp_debug_infoE 596 Symbol removed: _ZNSt3__124__libcpp_debug_exceptionC1ERKS0_ 597 Symbol removed: _ZNSt3__124__libcpp_debug_exceptionC1Ev 598 Symbol removed: _ZNSt3__124__libcpp_debug_exceptionC2ERKNS_19__libcpp_debug_infoE 599 Symbol removed: _ZNSt3__124__libcpp_debug_exceptionC2ERKS0_ 600 Symbol removed: _ZNSt3__124__libcpp_debug_exceptionC2Ev 601 Symbol removed: _ZNSt3__124__libcpp_debug_exceptionD0Ev 602 Symbol removed: _ZNSt3__124__libcpp_debug_exceptionD1Ev [all …]
|
/external/python/cryptography/vectors/cryptography_vectors/asymmetric/RSA/ |
D | SigVer15EMTest.txt | 30 Result = F (5 - Format of the EM is incorrect - 00 on end of pad removed ) 39 Result = F (5 - Format of the EM is incorrect - 00 on end of pad removed ) 66 Result = F (5 - Format of the EM is incorrect - 00 on end of pad removed ) 75 Result = F (5 - Format of the EM is incorrect - 00 on end of pad removed ) 93 Result = F (5 - Format of the EM is incorrect - 00 on end of pad removed ) 116 Result = F (5 - Format of the EM is incorrect - 00 on end of pad removed ) 143 Result = F (5 - Format of the EM is incorrect - 00 on end of pad removed ) 152 Result = F (5 - Format of the EM is incorrect - 00 on end of pad removed ) 179 Result = F (5 - Format of the EM is incorrect - 00 on end of pad removed ) 197 Result = F (5 - Format of the EM is incorrect - 00 on end of pad removed ) [all …]
|
/external/curl/tests/unit/ |
D | unit1309.c | 74 struct Curl_tree *root, *removed; variable 127 removed = NULL; 131 root = Curl_splaygetbest(tv_now, root, &removed); 132 while(removed != NULL) { 134 (*(size_t *)removed->payload) / 10, 135 (*(size_t *)removed->payload) % 10); 136 root = Curl_splaygetbest(tv_now, root, &removed);
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/ |
D | ConcurrentLinkedList.kt | 25 while (cur.id < id || cur.removed) { in <lambda>() 33 if (cur.removed) cur.remove() in <lambda>() 144 abstract val removed: Boolean in markAsClosed() constant 151 assert { removed } // The node should be logically removed at first. in markAsClosed() 161 if (next.removed) continue in markAsClosed() 162 if (prev !== null && prev.removed) continue in markAsClosed() 170 while (cur !== null && cur.removed) 178 while (cur.removed) 206 override val removed get() = cleanedAndPointers.value == maxSlots && !isTail constant
|
/external/llvm-project/llvm/test/CodeGen/X86/ |
D | pr11202.ll | 18 ; It is correct for either l1 or l2 to be removed. 19 ; If l2 is removed, the message should be "Address of block that was removed by CodeGen" 20 ; If l1 is removed, it should be "Block address taken." 21 ; CHECK: .Ltmp0: # {{Address of block that was removed by CodeGen|B…
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | ReportAPI.java | 52 TreeSet<APIInfo> removed; field in ReportAPI 60 APIInfo removed; field in ReportAPI.DeltaInfo 62 DeltaInfo(APIInfo added, APIInfo removed) { in DeltaInfo() argument 64 this.removed = removed; in DeltaInfo() 80 removed.print(pw, detail, html); in print() 141 removed = (TreeSet<APIInfo>)oldData.set.clone(); in ReportAPI() 142 removed.removeAll(newData.set); in ReportAPI() 149 Iterator<APIInfo> ri = removed.iterator(); in ReportAPI() 199 removed.remove(di.removed); in ReportAPI() 204 tempAdded.removeAll(removed); in ReportAPI() [all …]
|
/external/deqp/scripts/ |
D | caselist_diff.py | 168 removed = [] 181 removed.append(case) 183 return (added, removed) 195 added, removed = diffCaseLists(renamedCases, newCases) variable 206 for case in removed:
|
/external/libaom/libaom/ |
D | CHANGELOG | 7 removed. 9 AOM_SET_DBG_* is removed. 11 Multi-resolution encoding is removed. 13 put_frame and put_slice callbacks are removed.
|
/external/python/cpython2/PC/ |
D | dllbase_nt.txt | 18 - _symtable 1e100000 - 1e110000 pyd removed in 2.4 21 - parser 1e1A0000 - 1e1B0000 pyd removed in 2.4 23 - winreg 1e1C0000 - 1e1D0000 pyd removed in 2.4 25 - _sre 1e1E0000 - 1e1F0000 pyd removed in 2.4 26 - mmap 1e1F0000 - 1e1FFFFF pyd removed in 2.4 34 - datetime 1D180000 - 1D190000 pyd removed in 2.4 35 - _csv 1D190000 - 1D1A0000 pyd removed in 2.4
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/internal/ |
D | LockFreeLinkedListAddRemoveStressTest.kt | 20 private val removed = atomic(0) constant 28 if (node.remove()) removed.incrementAndGet() in testStressAddRemove() 32 if (node != null) removed.incrementAndGet() in testStressAddRemove() 38 assertEquals(i, removed.value) in testStressAddRemove()
|
D | SegmentListTest.kt | 14 assertFalse(s1.removed) in testRemoveTail() 16 assertFalse(s1.removed) in testRemoveTail() 18 assertFalse(s1.removed) in testRemoveTail() 20 assertTrue(s1.removed) in testRemoveTail()
|
D | LockFreeLinkedListAtomicLFStressTest.kt | 34 private val removed = AtomicLong() in <lambda>() constant in kotlinx.coroutines.internal.LockFreeLinkedListAtomicLFStressTest 98 val removed = removed.get() in <lambda>() constant 101 println("Remover removed $removed nodes") in <lambda>() 104 assertEquals(missed.get(), removed.get()) in <lambda>() 167 if (success) removed.addAndGet(2) in <lambda>()
|
/external/perfetto/protos/perfetto/trace/ftrace/ |
D | ftrace_event.proto | 79 // removed field with id 5; 80 // removed field with id 6; 81 // removed field with id 7; 82 // removed field with id 8; 83 // removed field with id 9; 84 // removed field with id 10; 205 // removed field with id 127; 306 // removed field with id 220; 307 // removed field with id 221; 308 // removed field with id 222; [all …]
|
/external/libxml2/ |
D | libxml2.syms | 1331 # xmlRelaxNGValidateStream; removed in 2.5.5 1721 # xmlSAX2CheckNamespace; removed in 2.6.10 1722 # xmlSAX2GetNamespace; removed in 2.6.10 1723 # xmlSAX2GlobalNamespace; removed in 2.6.10 1724 # xmlSAX2NamespaceDecl; removed in 2.6.10 1725 # xmlSAX2SetNamespace; removed in 2.6.10 2073 # emptyExp; removed in 2.9.10 2074 # forbiddenExp; removed in 2.9.10 2075 # xmlExpCtxtNbCons; removed in 2.9.10 2076 # xmlExpCtxtNbNodes; removed in 2.9.10 [all …]
|
/external/sl4a/Common/src/com/googlecode/android_scripting/facade/ |
D | FacadeManagerFactory.java | 64 RpcReceiverManager removed = mFacadeManagers.remove(sessionId); in destroy() local 65 if (removed != null) { in destroy() 66 removed.shutdown(); in destroy() 68 return removed != null; in destroy()
|
/external/python/cpython3/Lib/test/test_email/data/ |
D | msg_15.txt | 23 Some removed test. 31 <TITLE>Some removed HTML</TITLE> 34 Some removed text. 49 Some removed base64 encoded chars.
|
/external/libchrome/components/policy/core/common/ |
D | schema_map_unittest.cc | 283 PolicyNamespaceList removed; in TEST_F() local 285 newer->GetChanges(older, &removed, &added); in TEST_F() 286 EXPECT_TRUE(removed.empty()); in TEST_F() 292 newer->GetChanges(older, &removed, &added); in TEST_F() 293 EXPECT_TRUE(removed.empty()); in TEST_F() 300 newer->GetChanges(older, &removed, &added); in TEST_F() 301 ASSERT_EQ(2u, removed.size()); in TEST_F() 302 EXPECT_EQ(PolicyNamespace(POLICY_DOMAIN_CHROME, ""), removed[0]); in TEST_F() 303 EXPECT_EQ(PolicyNamespace(POLICY_DOMAIN_EXTENSIONS, "xyz"), removed[1]); in TEST_F()
|
/external/libabigail/tests/data/test-abicompat/ |
D | test2-var-removed-report-0.txt | 1 …LF file 'test2-var-removed-app' is not ABI compatible with 'libtest2-var-removed-v1.so' due to dif…
|
D | test1-fn-removed-report-0.txt | 1 ELF file 'test1-fn-removed-app' is not ABI compatible with 'libtest1-fn-removed-v1.so' due to diffe…
|
D | test3-fn-removed-report-0.txt | 1 ELF file 'test3-fn-removed-app' is not ABI compatible with 'libtest3-fn-removed-v1.so' due to diffe…
|