Home
last modified time | relevance | path

Searched full:marker (Results 1 – 25 of 9128) sorted by relevance

12345678910>>...366

/aosp_15_r20/external/slf4j/slf4j-api/src/main/java/org/slf4j/helpers/
H A DAbstractLogger.java32 import org.slf4j.Marker;
37 * {@link #handleNormalizedLoggingCall(Level, Marker, String, Object[], Throwable)} method.
108 public void trace(Marker marker, String msg) { in trace() argument
109 if (isTraceEnabled(marker)) { in trace()
110 handle_0ArgsCall(Level.TRACE, marker, msg, null); in trace()
115 public void trace(Marker marker, String format, Object arg) { in trace() argument
116 if (isTraceEnabled(marker)) { in trace()
117 handle_1ArgsCall(Level.TRACE, marker, format, arg); in trace()
122 public void trace(Marker marker, String format, Object arg1, Object arg2) { in trace() argument
123 if (isTraceEnabled(marker)) { in trace()
[all …]
H A DSubstituteLogger.java32 import org.slf4j.Marker;
117 public boolean isTraceEnabled(Marker marker) { in isTraceEnabled() argument
118 return delegate().isTraceEnabled(marker); in isTraceEnabled()
122 public void trace(Marker marker, String msg) { in trace() argument
123 delegate().trace(marker, msg); in trace()
127 public void trace(Marker marker, String format, Object arg) { in trace() argument
128 delegate().trace(marker, format, arg); in trace()
132 public void trace(Marker marker, String format, Object arg1, Object arg2) { in trace() argument
133 delegate().trace(marker, format, arg1, arg2); in trace()
136 public void trace(Marker marker, String format, Object... arguments) { in trace() argument
[all …]
H A DMarkerIgnoringBase.java28 import org.slf4j.Marker;
32 * lacking Marker support. In this implementation, methods taking marker data
33 * simply invoke the corresponding method without the Marker argument, discarding
34 * any marker data passed as argument.
43 public boolean isTraceEnabled(Marker marker) { in isTraceEnabled() argument
47 public void trace(Marker marker, String msg) { in trace() argument
51 public void trace(Marker marker, String format, Object arg) { in trace() argument
55 public void trace(Marker marker, String format, Object arg1, Object arg2) { in trace() argument
59 public void trace(Marker marker, String format, Object... arguments) { in trace() argument
63 public void trace(Marker marker, String msg, Throwable t) { in trace() argument
[all …]
/aosp_15_r20/external/skia/tools/perf-canvaskit-puppeteer/path_translate_assets/
H A Dcar.svg1845 …idth:2;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;ma…
2527 …3952456;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;ma…
2581 …2614479;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;ma…
3305 …999995;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;ma…
3324 …999995;stroke-linecap:round;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;ma…
3516 …4000001;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;ma…
3534 …0999999;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;ma…
3540 …0999999;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;ma…
3544 …0999999;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;ma…
3546 …0999999;stroke-linecap:butt;stroke-linejoin:round;marker:none;marker-start:none;marker-mid:none;ma…
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/rds/src/main/resources/codegen-resources/
H A Dpaginators-1.json4 "input_token": "Marker",
6 "output_token": "Marker",
10 "input_token": "Marker",
12 "output_token": "Marker",
16 "input_token": "Marker",
18 "output_token": "Marker",
22 "input_token": "Marker",
24 "output_token": "Marker",
28 "input_token": "Marker",
30 "output_token": "Marker",
[all …]
/aosp_15_r20/external/slf4j/slf4j-ext/src/main/java/org/slf4j/ext/
H A DLoggerWrapper.java28 import org.slf4j.Marker;
74 public boolean isTraceEnabled(Marker marker) { in isTraceEnabled() argument
75 return logger.isTraceEnabled(marker); in isTraceEnabled()
151 public void trace(Marker marker, String msg) { in trace() argument
152 if (!logger.isTraceEnabled(marker)) in trace()
155 … ((LocationAwareLogger) logger).log(marker, fqcn, LocationAwareLogger.TRACE_INT, msg, null, null); in trace()
157 logger.trace(marker, msg); in trace()
164 public void trace(Marker marker, String format, Object arg) { in trace() argument
165 if (!logger.isTraceEnabled(marker)) in trace()
168 …((LocationAwareLogger) logger).log(marker, fqcn, LocationAwareLogger.TRACE_INT, format, new Object… in trace()
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/bundle-logging-bridge/src/main/java/software/amazon/awssdk/thirdparty/org/slf4j/impl/internal/
H A DLoggerAdapter.java20 import software.amazon.awssdk.thirdparty.org.slf4j.Marker;
69 public boolean isTraceEnabled(Marker marker) { in isTraceEnabled() argument
70 return impl.isTraceEnabled(MarkerUtils.asUnshaded(marker)); in isTraceEnabled()
74 public void trace(Marker marker, String s) { in trace() argument
75 impl.trace(MarkerUtils.asUnshaded(marker), s); in trace()
79 public void trace(Marker marker, String s, Object o) { in trace() argument
80 impl.trace(MarkerUtils.asUnshaded(marker), s, o); in trace()
84 public void trace(Marker marker, String s, Object o, Object o1) { in trace() argument
85 impl.trace(MarkerUtils.asUnshaded(marker), s, o, o1); in trace()
89 public void trace(Marker marker, String s, Object... objects) { in trace() argument
[all …]
/aosp_15_r20/external/slf4j/slf4j-api/src/main/java/org/slf4j/
H A DLogger.java80 * <a href="MDC.html">MDC</a> as well as <a href="Marker.html">Markers</a>.
235 * marker data is also taken into account.
237 * @param marker The marker data to take into consideration
243 public boolean isTraceEnabled(Marker marker); in isTraceEnabled() argument
261 * Log a message with the specific Marker at the TRACE level.
263 * @param marker the marker data specific to this log statement
267 public void trace(Marker marker, String msg); in trace() argument
271 * marker data is also taken into consideration.
273 * @param marker the marker data specific to this log statement
278 public void trace(Marker marker, String format, Object arg); in trace() argument
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/redshift/src/main/resources/codegen-resources/
H A Dpaginators-1.json4 "input_token": "Marker",
6 "output_token": "Marker",
10 "input_token": "Marker",
12 "output_token": "Marker",
16 "input_token": "Marker",
18 "output_token": "Marker",
22 "input_token": "Marker",
24 "output_token": "Marker",
28 "input_token": "Marker",
30 "output_token": "Marker",
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/iam/src/main/resources/codegen-resources/
H A Dpaginators-1.json4 "input_token": "Marker",
7 "output_token": "Marker",
16 "input_token": "Marker",
19 "output_token": "Marker",
23 "input_token": "Marker",
26 "output_token": "Marker",
30 "input_token": "Marker",
33 "output_token": "Marker",
37 "input_token": "Marker",
40 "output_token": "Marker",
[all …]
/aosp_15_r20/external/aws-sdk-java-v2/services/databasemigration/src/main/resources/codegen-resources/
H A Dpaginators-1.json4 "input_token": "Marker",
5 "output_token": "Marker",
9 "input_token": "Marker",
10 "output_token": "Marker",
14 "input_token": "Marker",
15 "output_token": "Marker",
19 "input_token": "Marker",
20 "output_token": "Marker",
24 "input_token": "Marker",
25 "output_token": "Marker",
[all …]
/aosp_15_r20/external/libjpeg-turbo/
H A Djdmarker.c15 * suspension: if not all of the data for a marker is available,
17 * the marker.
25 typedef enum { /* JPEG marker codes */
98 /* Application-overridable marker processing methods */
102 /* Limit on marker data length to save for each marker type */
106 /* Status of COM/APPn marker saving */
107 jpeg_saved_marker_ptr cur_marker; /* NULL if not processing a marker */
108 unsigned int bytes_read; /* data bytes read so far in marker */
173 * Entry condition: JPEG marker itself has been read and its code saved
174 * in cinfo->unread_marker; input restart point is just after the marker.
[all …]
/aosp_15_r20/external/slf4j/log4j-over-slf4j/compatibility/lib/
HDslf4j-api-1.4.2.jar ... .slf4j.Marker) org.slf4j.Marker marker public void debug (org.slf4j.Marker, ...
/aosp_15_r20/external/libogg/doc/
H A Dpages.svg23 <marker
35 </marker>
36 <marker
46 style="fill-rule:evenodd;stroke:#000000;stroke-width:1.0pt;marker-start:none;"
48 </marker>
49 <marker
61 </marker>
111 …troke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid…
116 …troke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid…
122 …troke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;marker:none;marker-start:none;marker-mid…
[all …]
/aosp_15_r20/external/okio/samples/src/jvmTest/java/okio/samples/
H A DSourceMarkerTest.java29 SourceMarker marker = new SourceMarker(new Buffer().writeUtf8("ABCDEFGHIJKLMNOPQRSTUVWXYZ")); in test() local
30 BufferedSource source = marker.source(); in test()
33 long pos3 = marker.mark(7); // DEFGHIJ in test()
35 long pos7 = marker.mark(5); // HIJKL in test()
37 marker.reset(pos7); // Back to 'H' in test()
39 marker.reset(pos3); // Back to 'D' in test()
41 marker.reset(pos7); // Back to 'H' again. in test()
44 marker.reset(pos7); in test()
50 marker.reset(pos3); in test()
58 SourceMarker marker = new SourceMarker(new Buffer().writeUtf8("ABCDEFGHIJKLMNOPQRSTUVWXYZ")); in exceedLimitTest() local
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0/lib/rustlib/src/rust/library/alloc/src/collections/btree/
H A Dnavigate.rs6 use super::node::{marker, ForceResult::*, Handle, NodeRef};
12 front: Option<Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>>,
13 back: Option<Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>>,
16 impl<'a, K: 'a, V: 'a> Clone for LeafRange<marker::Immut<'a>, K, V> {
38 pub fn reborrow(&self) -> LeafRange<marker::Immut<'_>, K, V> { in reborrow()
46 impl<'a, K, V> LeafRange<marker::Immut<'a>, K, V> {
58 impl<'a, K, V> LeafRange<marker::ValMut<'a>, K, V> {
70 impl<BorrowType: marker::BorrowType, K, V> LeafRange<BorrowType, K, V> {
74 F: Fn(&Handle<NodeRef<BorrowType, K, V, marker::LeafOrInternal>, marker::KV>) -> R, in perform_next_checked()
90 F: Fn(&Handle<NodeRef<BorrowType, K, V, marker::LeafOrInternal>, marker::KV>) -> R, in perform_next_back_checked()
[all …]
H A Dnode.rs34 use core::marker::PhantomData;
198 pub type Root<K, V> = NodeRef<marker::Owned, K, V, marker::LeafOrInternal>;
200 impl<'a, K: 'a, V: 'a, Type> Copy for NodeRef<marker::Immut<'a>, K, V, Type> {}
201 impl<'a, K: 'a, V: 'a, Type> Clone for NodeRef<marker::Immut<'a>, K, V, Type> {
209 unsafe impl<K: Sync, V: Sync, Type> Send for NodeRef<marker::Immut<'_>, K, V, Type> {}
210 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Mut<'_>, K, V, Type> {}
211 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::ValMut<'_>, K, V, Type> {}
212 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Owned, K, V, Type> {}
213 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Dying, K, V, Type> {}
215 impl<K, V> NodeRef<marker::Owned, K, V, marker::Leaf> {
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.81.0.u1/lib/rustlib/src/rust/library/alloc/src/collections/btree/
H A Dnavigate.rs6 use super::node::{marker, ForceResult::*, Handle, NodeRef};
12 front: Option<Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>>,
13 back: Option<Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>>,
16 impl<'a, K: 'a, V: 'a> Clone for LeafRange<marker::Immut<'a>, K, V> {
38 pub fn reborrow(&self) -> LeafRange<marker::Immut<'_>, K, V> { in reborrow()
46 impl<'a, K, V> LeafRange<marker::Immut<'a>, K, V> {
58 impl<'a, K, V> LeafRange<marker::ValMut<'a>, K, V> {
70 impl<BorrowType: marker::BorrowType, K, V> LeafRange<BorrowType, K, V> {
74 F: Fn(&Handle<NodeRef<BorrowType, K, V, marker::LeafOrInternal>, marker::KV>) -> R, in perform_next_checked()
90 F: Fn(&Handle<NodeRef<BorrowType, K, V, marker::LeafOrInternal>, marker::KV>) -> R, in perform_next_back_checked()
[all …]
H A Dnode.rs34 use core::marker::PhantomData;
198 pub type Root<K, V> = NodeRef<marker::Owned, K, V, marker::LeafOrInternal>;
200 impl<'a, K: 'a, V: 'a, Type> Copy for NodeRef<marker::Immut<'a>, K, V, Type> {}
201 impl<'a, K: 'a, V: 'a, Type> Clone for NodeRef<marker::Immut<'a>, K, V, Type> {
209 unsafe impl<K: Sync, V: Sync, Type> Send for NodeRef<marker::Immut<'_>, K, V, Type> {}
210 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Mut<'_>, K, V, Type> {}
211 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::ValMut<'_>, K, V, Type> {}
212 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Owned, K, V, Type> {}
213 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Dying, K, V, Type> {}
215 impl<K, V> NodeRef<marker::Owned, K, V, marker::Leaf> {
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.81.0/lib/rustlib/src/rust/library/alloc/src/collections/btree/
H A Dnavigate.rs6 use super::node::{marker, ForceResult::*, Handle, NodeRef};
12 front: Option<Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>>,
13 back: Option<Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>>,
16 impl<'a, K: 'a, V: 'a> Clone for LeafRange<marker::Immut<'a>, K, V> {
38 pub fn reborrow(&self) -> LeafRange<marker::Immut<'_>, K, V> { in reborrow()
46 impl<'a, K, V> LeafRange<marker::Immut<'a>, K, V> {
58 impl<'a, K, V> LeafRange<marker::ValMut<'a>, K, V> {
70 impl<BorrowType: marker::BorrowType, K, V> LeafRange<BorrowType, K, V> {
74 F: Fn(&Handle<NodeRef<BorrowType, K, V, marker::LeafOrInternal>, marker::KV>) -> R, in perform_next_checked()
90 F: Fn(&Handle<NodeRef<BorrowType, K, V, marker::LeafOrInternal>, marker::KV>) -> R, in perform_next_back_checked()
[all …]
H A Dnode.rs34 use core::marker::PhantomData;
198 pub type Root<K, V> = NodeRef<marker::Owned, K, V, marker::LeafOrInternal>;
200 impl<'a, K: 'a, V: 'a, Type> Copy for NodeRef<marker::Immut<'a>, K, V, Type> {}
201 impl<'a, K: 'a, V: 'a, Type> Clone for NodeRef<marker::Immut<'a>, K, V, Type> {
209 unsafe impl<K: Sync, V: Sync, Type> Send for NodeRef<marker::Immut<'_>, K, V, Type> {}
210 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Mut<'_>, K, V, Type> {}
211 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::ValMut<'_>, K, V, Type> {}
212 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Owned, K, V, Type> {}
213 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Dying, K, V, Type> {}
215 impl<K, V> NodeRef<marker::Owned, K, V, marker::Leaf> {
[all …]
/aosp_15_r20/prebuilts/rust/linux-x86/1.80.1/lib/rustlib/src/rust/library/alloc/src/collections/btree/
H A Dnavigate.rs6 use super::node::{marker, ForceResult::*, Handle, NodeRef};
12 front: Option<Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>>,
13 back: Option<Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>>,
16 impl<'a, K: 'a, V: 'a> Clone for LeafRange<marker::Immut<'a>, K, V> {
38 pub fn reborrow(&self) -> LeafRange<marker::Immut<'_>, K, V> { in reborrow()
46 impl<'a, K, V> LeafRange<marker::Immut<'a>, K, V> {
58 impl<'a, K, V> LeafRange<marker::ValMut<'a>, K, V> {
70 impl<BorrowType: marker::BorrowType, K, V> LeafRange<BorrowType, K, V> {
74 F: Fn(&Handle<NodeRef<BorrowType, K, V, marker::LeafOrInternal>, marker::KV>) -> R, in perform_next_checked()
90 F: Fn(&Handle<NodeRef<BorrowType, K, V, marker::LeafOrInternal>, marker::KV>) -> R, in perform_next_back_checked()
[all …]
H A Dnode.rs34 use core::marker::PhantomData;
198 pub type Root<K, V> = NodeRef<marker::Owned, K, V, marker::LeafOrInternal>;
200 impl<'a, K: 'a, V: 'a, Type> Copy for NodeRef<marker::Immut<'a>, K, V, Type> {}
201 impl<'a, K: 'a, V: 'a, Type> Clone for NodeRef<marker::Immut<'a>, K, V, Type> {
209 unsafe impl<K: Sync, V: Sync, Type> Send for NodeRef<marker::Immut<'_>, K, V, Type> {}
210 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Mut<'_>, K, V, Type> {}
211 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::ValMut<'_>, K, V, Type> {}
212 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Owned, K, V, Type> {}
213 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Dying, K, V, Type> {}
215 impl<K, V> NodeRef<marker::Owned, K, V, marker::Leaf> {
[all …]
/aosp_15_r20/prebuilts/rust/linux-musl-x86/1.80.1/lib/rustlib/src/rust/library/alloc/src/collections/btree/
H A Dnavigate.rs6 use super::node::{marker, ForceResult::*, Handle, NodeRef};
12 front: Option<Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>>,
13 back: Option<Handle<NodeRef<BorrowType, K, V, marker::Leaf>, marker::Edge>>,
16 impl<'a, K: 'a, V: 'a> Clone for LeafRange<marker::Immut<'a>, K, V> {
38 pub fn reborrow(&self) -> LeafRange<marker::Immut<'_>, K, V> { in reborrow()
46 impl<'a, K, V> LeafRange<marker::Immut<'a>, K, V> {
58 impl<'a, K, V> LeafRange<marker::ValMut<'a>, K, V> {
70 impl<BorrowType: marker::BorrowType, K, V> LeafRange<BorrowType, K, V> {
74 F: Fn(&Handle<NodeRef<BorrowType, K, V, marker::LeafOrInternal>, marker::KV>) -> R, in perform_next_checked()
90 F: Fn(&Handle<NodeRef<BorrowType, K, V, marker::LeafOrInternal>, marker::KV>) -> R, in perform_next_back_checked()
[all …]
H A Dnode.rs34 use core::marker::PhantomData;
198 pub type Root<K, V> = NodeRef<marker::Owned, K, V, marker::LeafOrInternal>;
200 impl<'a, K: 'a, V: 'a, Type> Copy for NodeRef<marker::Immut<'a>, K, V, Type> {}
201 impl<'a, K: 'a, V: 'a, Type> Clone for NodeRef<marker::Immut<'a>, K, V, Type> {
209 unsafe impl<K: Sync, V: Sync, Type> Send for NodeRef<marker::Immut<'_>, K, V, Type> {}
210 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Mut<'_>, K, V, Type> {}
211 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::ValMut<'_>, K, V, Type> {}
212 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Owned, K, V, Type> {}
213 unsafe impl<K: Send, V: Send, Type> Send for NodeRef<marker::Dying, K, V, Type> {}
215 impl<K, V> NodeRef<marker::Owned, K, V, marker::Leaf> {
[all …]

12345678910>>...366