Home
last modified time | relevance | path

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

12345678910>>...34

/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/bouncycastle/patches/
Dbcpkix.patch20 + // BEGIN android-removed
33 + // END android-removed
125 + // BEGIN android-removed
210 + // END android-removed
223 +// BEGIN android-removed
226 +// END android-removed
238 + // BEGIN android-removed
243 + // END android-removed
251 + // BEGIN android-removed
254 + // END android-removed
[all …]
Dbcprov.patch141 + // BEGIN android-removed
143 + // END android-removed
173 + // BEGIN android-removed
175 + // END android-removed
190 + // BEGIN android-removed
195 + // END android-removed
205 + // BEGIN android-removed
208 + // END android-removed
216 + // BEGIN android-removed
219 + // END android-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/libgdx/gdx/src/com/badlogic/gdx/scenes/scene2d/actions/
DRemoveActorAction.java25 private boolean removed; field in RemoveActorAction
28 if (!removed) { in act()
29 removed = true; in act()
36 removed = false; in restart()
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DReportAPI.java50 TreeSet<APIInfo> removed; field in ReportAPI
58 APIInfo removed; field in ReportAPI.DeltaInfo
60 DeltaInfo(APIInfo added, APIInfo removed) { in DeltaInfo() argument
62 this.removed = removed; in DeltaInfo()
75 removed.print(pw, detail, html); in print()
136 removed = (TreeSet<APIInfo>)oldData.set.clone(); in ReportAPI()
137 removed.removeAll(newData.set); in ReportAPI()
144 Iterator<APIInfo> ri = removed.iterator(); in ReportAPI()
194 removed.remove(di.removed); in ReportAPI()
199 tempAdded.removeAll(removed); in ReportAPI()
[all …]
/external/v8/src/
Dcancelable-task.cc55 void* removed = cancelable_tasks_.Remove(reinterpret_cast<void*>(id), id); in RemoveFinishedTask() local
56 USE(removed); in RemoveFinishedTask()
57 DCHECK(removed != nullptr); in RemoveFinishedTask()
70 void* removed = cancelable_tasks_.Remove(reinterpret_cast<void*>(id), id); in TryAbort() local
71 USE(removed); in TryAbort()
72 DCHECK(removed != nullptr); in TryAbort()
/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/skia/include/private/
DSkTHash.h69 if (!s.removed() && hash == s.hash && key == Traits::GetKey(s.val)) { in find()
87 if (!s.removed() && hash == s.hash && key == Traits::GetKey(s.val)) { in remove()
102 if (!fSlots[i].empty() && !fSlots[i].removed()) { in foreach()
112 if (!fSlots[i].empty() && !fSlots[i].removed()) { in foreach()
125 if (s.empty() || s.removed()) { in uncheckedSet()
127 if (s.removed()) { in uncheckedSet()
158 if (!s.empty() && !s.removed()) { in resize()
180 bool removed() const { return this->hash == 1; } in removed() function
/external/google-breakpad/src/common/windows/
Domap.cc297 DWORD removed = mapping->at(find).rva_original - rva_front; in FillInRemovedLengths() local
306 mapping->at(fill).removed = removed; in FillInRemovedLengths()
343 mr.removed = header_original - header; in BuildMapping()
420 mapping[i].removed); in BuildEndpointIndexMap()
443 mapping[i].removed, 0 }; in BuildEndpointIndexMap()
460 mapped_range->removed <= clip_range.rva) { in ClipMappedRangeOriginal()
463 mapped_range->removed = 0; in ClipMappedRangeOriginal()
480 mapped_range->removed -= trim; in ClipMappedRangeOriginal()
496 mapped_range->removed = 0; in ClipMappedRangeOriginal()
501 DWORD end_removed = end_original + mapped_range->removed; in ClipMappedRangeOriginal()
[all …]
/external/curl/lib/
Dsplay.c156 struct Curl_tree **removed) in Curl_splaygetbest() argument
161 *removed = NULL; /* none removed since there was no root */ in Curl_splaygetbest()
172 *removed = NULL; in Curl_splaygetbest()
189 *removed = t; in Curl_splaygetbest()
200 *removed = t; in Curl_splaygetbest()
205 *removed = NULL; /* no match */ in Curl_splaygetbest()
/external/webrtc/webrtc/base/
Dasyncinvoker.cc48 MessageList removed; in Flush() local
49 thread->Clear(this, id, &removed); in Flush()
50 for (MessageList::iterator it = removed.begin(); it != removed.end(); ++it) { in Flush()
Dmessagequeue.cc360 MessageList* removed) { in Clear() argument
366 if (removed) { in Clear()
367 removed->push_back(msgPeek_); in Clear()
378 if (removed) { in Clear()
379 removed->push_back(*it); in Clear()
395 if (removed) { in Clear()
396 removed->push_back(it->msg_); in Clear()
/external/pdfium/xfa/src/fxbarcode/datamatrix/
DBC_C40Encoder.cpp54 CFX_WideString removed; in Encode() local
58 backtrackOneCharacter(context, buffer, removed, lastCharSize, e); in Encode()
67 backtrackOneCharacter(context, buffer, removed, lastCharSize, e); in Encode()
175 CFX_WideString& removed, in backtrackOneCharacter() argument
182 lastCharSize = encodeChar(c, removed, e); in backtrackOneCharacter()
/external/glide/library/src/main/java/com/bumptech/glide/load/engine/bitmap_recycle/
DLruBitmapPool.java150 final Bitmap removed = strategy.removeLast(); in trimToSize() local
151 tracker.remove(removed); in trimToSize()
152 currentSize -= strategy.getSize(removed); in trimToSize()
153 removed.recycle(); in trimToSize()
156 Log.d(TAG, "Evicting bitmap=" + strategy.logBitmap(removed)); in trimToSize()
DSizeStrategy.java56 Bitmap removed = groupedMap.removeLast(); in removeLast() local
57 if (removed != null) { in removeLast()
58 final int removedSize = Util.getBitmapByteSize(removed); in removeLast()
61 return removed; in removeLast()
/external/apache-http/src/org/apache/http/impl/client/
DBasicCookieStore.java145 boolean removed = false; in clearExpired()
149 removed = true; in clearExpired()
152 return removed; in clearExpired()
/external/v8/test/mjsunit/es7/
Dobject-observe.js1223 { object: arr, type: 'splice', index: 2, removed: [, 'd'], addedCount: 0 }, property
1224 { object: arr, type: 'splice', index: 1, removed: ['b'], addedCount: 0 }, property
1225 { object: arr, type: 'splice', index: 1, removed: [], addedCount: 9 }, property
1226 { object: arr2, type: 'splice', index: 1, removed: ['beta'], addedCount: 0 }, property
1227 { object: arr3, type: 'splice', index: 0, removed: ['hello',, 'goodbye',,,,], addedCount: 0 }, property
1228 { object: arr3, type: 'splice', index: 0, removed: [], addedCount: 1 }, property
1229 { object: arr3, type: 'splice', index: 1, removed: [], addedCount: 1 }, property
1230 { object: arr3, type: 'splice', index: 1, removed: [,], addedCount: 0 }, property
1231 { object: arr3, type: 'splice', index: 1, removed: [], addedCount: 4 }, property
1233 { object: arr3, type: 'splice', index: 1, removed: [,,,5], addedCount: 0 } property
[all …]
/external/nist-sip/java/gov/nist/javax/sip/header/ims/
DPChargingFunctionAddresses.java254 boolean removed = false; in getEventChargingFunctionAddresses()
282 boolean removed = false; in delete()
287 removed = true; in delete()
291 return removed; in delete()
/external/llvm/utils/release/
DfindRegressions-simple.py67 removed = ''
120 removed += t + "\n"
146 if len(removed) != 0:
148 print removed
/external/opencv3/samples/cpp/tutorial_code/calib3d/real_time_pose_estimation/src/
DRobustMatcher.cpp30 int removed = 0; in ratioTest() local
42 removed++; in ratioTest()
48 removed++; in ratioTest()
51 return removed; in ratioTest()
/external/antlr/antlr-3.4/runtime/CSharp2/
DAPI CHANGES.TXT20 Antlr.Runtime.BaseRecognizer.Input has been removed.
28 Antlr.Runtime.RuleReturnScope - removed setters from properties
30 Antlr.Runtime.ParserRuleReturnScope - removed setters from properties
34 Antlr.Runtime.TreeRuleReturnScope - removed setter from property
/external/glide/third_party/disklrucache/
DREADME.third_party10 Exposed File objects directly to gets, removed key validation, removed test sources.
/external/llvm/lib/Target/Mips/
DMipsInstrInfo.cpp148 unsigned removed; in RemoveBranch() local
158 for (removed = 0; I != REnd && removed < 2; ++I, ++removed) in RemoveBranch()
164 return removed; in RemoveBranch()
/external/libgdx/extensions/gdx-box2d/gdx-box2d/jni/Box2D/
DCHANGES7 - Body#setTransform with update flag for contacts was removed, removed from jni wrapper
19 - World doSleep parameter removed from constructor, still in jni wrapper, but ignored
79 - LineJoint.java got removed, not in box2d anymore.
82 - removed line joint

12345678910>>...34