Home
last modified time | relevance | path

Searched refs:removed (Results 1 – 25 of 2501) sorted by relevance

12345678910>>...101

/external/curl/tests/data/
Dtest13091452 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/
DCHANGELOG.TXT8 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/
Dchanges-1.3.txt16 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/
Dchecksym.awk20 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/llvm-project/libcxx/lib/abi/
DCHANGELOG.TXT8 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/perfetto/tools/ftrace_proto_gen/
Devent_list3 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/python/cryptography/vectors/cryptography_vectors/asymmetric/RSA/
DSigVer15EMTest.txt30 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/
Dunit1309.c74 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/
DConcurrentLinkedList.kt25 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/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DReportAPI.java52 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/llvm-project/llvm/test/CodeGen/X86/
Dpr11202.ll18 ; 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/deqp/scripts/
Dcaselist_diff.py168 removed = []
181 removed.append(case)
183 return (added, removed)
195 added, removed = diffCaseLists(renamedCases, newCases) variable
206 for case in removed:
/external/libaom/libaom/
DCHANGELOG7 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/
Ddllbase_nt.txt18 - _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/perfetto/protos/perfetto/trace/ftrace/
Dftrace_event.proto79 // 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/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/internal/
DLockFreeLinkedListAddRemoveStressTest.kt20 private val removed = atomic(0) constant in kotlinx.coroutines.internal.LockFreeLinkedListAddRemoveStressTest
28 if (node.remove()) removed.incrementAndGet() in testStressAddRemove()
32 if (node != null) removed.incrementAndGet() in testStressAddRemove()
38 assertEquals(i, removed.value) in testStressAddRemove()
DSegmentListTest.kt14 assertFalse(s1.removed) in testRemoveTail()
16 assertFalse(s1.removed) in testRemoveTail()
18 assertFalse(s1.removed) in testRemoveTail()
20 assertTrue(s1.removed) in testRemoveTail()
DLockFreeLinkedListAtomicLFStressTest.kt34 private val removed = AtomicLong() in <lambda>() constant
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/libxml2/
Dlibxml2.syms1331 # 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/
DFacadeManagerFactory.java64 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/libchrome/components/policy/core/common/
Dschema_map_unittest.cc283 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/python/cpython3/Lib/test/test_email/data/
Dmsg_15.txt23 Some removed test.
31 <TITLE>Some removed HTML</TITLE>
34 Some removed text.
49 Some removed base64 encoded chars.
/external/rust/crates/ryu/src/
Df2s.rs127 let mut removed = 0i32; in f2d() localVariable
137 removed += 1; in f2d()
146 removed += 1; in f2d()
165 removed += 1; in f2d()
170 let exp = e10 + removed; in f2d()
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/printer/lexicalpreservation/
DDifference.java144 Removed removed = (Removed) diffElement; in apply() local
145 …applyRemovedDiffElement(removedGroups.get(removed), removed, originalElement, originalElementIsChi… in apply() local
347 …private void applyRemovedDiffElement(RemovedGroup removedGroup, Removed removed, TextElement origi… in applyRemovedDiffElement() argument
348 if (removed.isChild() && originalElementIsChild) { in applyRemovedDiffElement()
354 …nt.getCommentedNode().isPresent() && comment.getCommentedNode().get().equals(removed.getChild())) { in applyRemovedDiffElement()
379 } else if (removed.isToken() && originalElementIsToken && in applyRemovedDiffElement()
380 (removed.getTokenType() == ((TokenTextElement) originalElement).getTokenKind() in applyRemovedDiffElement()
384 && removed.isNewLine()))) { in applyRemovedDiffElement()
389 } else if (removed.isPrimitiveType()) { in applyRemovedDiffElement()
394 …throw new UnsupportedOperationException("removed " + removed.getElement() + " vs " + originalEleme… in applyRemovedDiffElement()
[all …]
/external/python/cpython2/Lib/email/test/data/
Dmsg_15.txt23 Some removed test.
31 <TITLE>Some removed HTML</TITLE>
34 Some removed text.
49 Some removed base64 encoded chars.

12345678910>>...101