Home
last modified time | relevance | path

Searched defs:Span (Results 1 – 25 of 167) sorted by relevance

1234567

/external/swiftshader/tests/regres/cov/
Dspan.go53 type Span struct { struct
54 Start, End Location
57 func (s Span) String() string {
62 func (s Span) Compare(o Span) int {
77 func (s Span) Before(o Span) bool { return s.Compare(o) == -1 }
80 … (s Span) Inside(o Span) bool { return s.Start.Compare(o.Start) >= 0 && s.End.Compare(o.End) <= 0 }
86 func (l *SpanList) Add(s Span) {
117 func (l *SpanList) Remove(s Span) {
/external/angle/third_party/spirv-tools/src/utils/vscode/src/lsp/span/
Dspan.go26 type Span struct { struct
27 v span
75 func Compare(a, b Span) int {
114 func (s Span) HasPosition() bool { return s.v.Start.hasPosition() }
115 func (s Span) HasOffset() bool { return s.v.Start.hasOffset() }
116 func (s Span) IsValid() bool { return s.v.Start.isValid() }
117 func (s Span) IsPoint() bool { return s.v.Start == s.v.End }
118 func (s Span) URI() URI { return s.v.URI }
119 func (s Span) Start() Point { return Point{s.v.Start} }
120 func (s Span) End() Point { return Point{s.v.End} }
[all …]
/external/deqp-deps/SPIRV-Tools/utils/vscode/src/lsp/span/
Dspan.go26 type Span struct { struct
27 v span
75 func Compare(a, b Span) int {
114 func (s Span) HasPosition() bool { return s.v.Start.hasPosition() }
115 func (s Span) HasOffset() bool { return s.v.Start.hasOffset() }
116 func (s Span) IsValid() bool { return s.v.Start.isValid() }
117 func (s Span) IsPoint() bool { return s.v.Start == s.v.End }
118 func (s Span) URI() URI { return s.v.URI }
119 func (s Span) Start() Point { return Point{s.v.Start} }
120 func (s Span) End() Point { return Point{s.v.End} }
[all …]
/external/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/
Dspan.go26 type Span struct { struct
27 v span
75 func Compare(a, b Span) int {
114 func (s Span) HasPosition() bool { return s.v.Start.hasPosition() }
115 func (s Span) HasOffset() bool { return s.v.Start.hasOffset() }
116 func (s Span) IsValid() bool { return s.v.Start.isValid() }
117 func (s Span) IsPoint() bool { return s.v.Start == s.v.End }
118 func (s Span) URI() URI { return s.v.URI }
119 func (s Span) Start() Point { return Point{s.v.Start} }
120 func (s Span) End() Point { return Point{s.v.End} }
[all …]
/external/rust/crates/syn/src/
Dspan.rs9 impl IntoSpans<Span> for Span { implementation
10 fn into_spans(self) -> Span { in into_spans()
15 impl IntoSpans<[Span; 1]> for Span { implementation
21 impl IntoSpans<[Span; 2]> for Span { implementation
27 impl IntoSpans<[Span; 3]> for Span { implementation
33 impl IntoSpans<[Span; 1]> for [Span; 1] { implementation
39 impl IntoSpans<[Span; 2]> for [Span; 2] { implementation
45 impl IntoSpans<[Span; 3]> for [Span; 3] { implementation
51 impl IntoSpans<DelimSpan> for Span { implementation
/external/rust/crates/quote/src/
Dspanned.rs7 fn __span(&self) -> Span; in __span()
10 impl Spanned for Span { implementation
11 fn __span(&self) -> Span { in __span()
17 fn __span(&self) -> Span { in __span()
23 fn __span(&self) -> Span { in __span()
28 fn join_spans(tokens: TokenStream) -> Span { in join_spans()
47 impl Sealed for Span {} implementation
Dident_fragment.rs20 fn span(&self) -> Option<Span> { in span()
26 fn span(&self) -> Option<Span> { in span()
36 fn span(&self) -> Option<Span> { in span()
46 fn span(&self) -> Option<Span> { in span()
64 fn span(&self) -> Option<Span> { in span()
/external/rust/crates/quiche/deps/boringssl/src/include/openssl/
Dspan.h32 class Span; variable
100 constexpr Span() : Span(nullptr, 0) {} in Span() function
101 constexpr Span(T *ptr, size_t len) : data_(ptr), size_(len) {} in Span() function
104 constexpr Span(T (&array)[N]) : Span(array, N) {} in Span() function
121 Span(const C &container) : data_(container.data()), size_(container.size()) {} in Span() function
129 explicit Span(C &container) in Span() function
/external/cronet/third_party/boringssl/src/include/openssl/
Dspan.h32 class Span; variable
109 constexpr Span() : Span(nullptr, 0) {} in Span() function
110 constexpr Span(T *ptr, size_t len) : data_(ptr), size_(len) {} in Span() function
113 constexpr Span(T (&array)[N]) : Span(array, N) {} in Span() function
117 constexpr Span(const C &container) in Span() function
122 constexpr explicit Span(C &container) in Span() function
/external/rust/crates/tracing/src/
Dspan.rs348 pub struct Span { struct
362 /// Unlike `Span`, this type is only constructed for spans which _have_ been argument
422 impl Span { implementation
436 pub fn new(meta: &'static Metadata<'static>, values: &field::ValueSet<'_>) -> Span { in new()
446 ) -> Span { in new_with()
460 pub fn new_root(meta: &'static Metadata<'static>, values: &field::ValueSet<'_>) -> Span { in new_root()
470 ) -> Span { in new_root_with()
488 ) -> Span { in child_of()
502 ) -> Span { in child_of_with()
519 pub fn new_disabled(meta: &'static Metadata<'static>) -> Span { in new_disabled()
[all …]
/external/private-join-and-compute/third_party/abseil-cpp-20230125.2/absl/types/
Dspan.h188 constexpr Span() noexcept : Span(nullptr, 0) {} in Span() function
189 constexpr Span(pointer array, size_type length) noexcept in Span() function
194 constexpr Span(T (&a)[N]) noexcept // NOLINT(runtime/explicit) in Span() function
202 explicit Span( in Span() function
211 constexpr Span( in Span() function
223 explicit Span(V& v) noexcept // NOLINT(runtime/references) in Span() function
228 constexpr Span(const V& v) noexcept // NOLINT(runtime/explicit) in Span() function
268 Span(std::initializer_list<value_type> v in Span() function
/external/cronet/third_party/abseil-cpp/absl/types/
Dspan.h188 constexpr Span() noexcept : Span(nullptr, 0) {} in Span() function
189 constexpr Span(pointer array, size_type length) noexcept in Span() function
194 constexpr Span(T (&a)[N]) noexcept // NOLINT(runtime/explicit) in Span() function
202 explicit Span( in Span() function
211 constexpr Span( in Span() function
223 explicit Span(V& v) noexcept // NOLINT(runtime/references) in Span() function
228 constexpr Span(const V& v) noexcept // NOLINT(runtime/explicit) in Span() function
268 Span(std::initializer_list<value_type> v in Span() function
/external/libtextclassifier/abseil-cpp/absl/types/
Dspan.h188 constexpr Span() noexcept : Span(nullptr, 0) {} in Span() function
189 constexpr Span(pointer array, size_type length) noexcept in Span() function
194 constexpr Span(T (&a)[N]) noexcept // NOLINT(runtime/explicit) in Span() function
202 explicit Span( in Span() function
211 constexpr Span( in Span() function
223 explicit Span(V& v) noexcept // NOLINT(runtime/references) in Span() function
228 constexpr Span(const V& v) noexcept // NOLINT(runtime/explicit) in Span() function
268 Span(std::initializer_list<value_type> v in Span() function
/external/tensorflow/third_party/absl/abseil-cpp/absl/types/
Dspan.h188 constexpr Span() noexcept : Span(nullptr, 0) {} in Span() function
189 constexpr Span(pointer array, size_type length) noexcept in Span() function
194 constexpr Span(T (&a)[N]) noexcept // NOLINT(runtime/explicit) in Span() function
202 explicit Span( in Span() function
211 constexpr Span( in Span() function
223 explicit Span(V& v) noexcept // NOLINT(runtime/references) in Span() function
228 constexpr Span(const V& v) noexcept // NOLINT(runtime/explicit) in Span() function
268 Span(std::initializer_list<value_type> v in Span() function
/external/abseil-cpp/absl/types/
Dspan.h191 constexpr Span() noexcept : Span(nullptr, 0) {} in Span() function
192 constexpr Span(pointer array, size_type length) noexcept in Span() function
197 constexpr Span(T (&a)[N]) noexcept // NOLINT(runtime/explicit) in Span() function
205 explicit Span( in Span() function
214 constexpr Span( in Span() function
226 explicit Span(V& v) noexcept // NOLINT(runtime/references) in Span() function
231 constexpr Span(const V& v) noexcept // NOLINT(runtime/explicit) in Span() function
271 Span(std::initializer_list<value_type> v in Span() function
/external/rust/crates/grpcio-sys/grpc/third_party/abseil-cpp/absl/types/
Dspan.h188 constexpr Span() noexcept : Span(nullptr, 0) {} in Span() function
189 constexpr Span(pointer array, size_type length) noexcept in Span() function
194 constexpr Span(T (&a)[N]) noexcept // NOLINT(runtime/explicit) in Span() function
202 explicit Span( in Span() function
211 constexpr Span( in Span() function
223 explicit Span(V& v) noexcept // NOLINT(runtime/references) in Span() function
228 constexpr Span(const V& v) noexcept // NOLINT(runtime/explicit) in Span() function
268 Span(std::initializer_list<value_type> v in Span() function
/external/webrtc/third_party/abseil-cpp/absl/types/
Dspan.h188 constexpr Span() noexcept : Span(nullptr, 0) {} in Span() function
189 constexpr Span(pointer array, size_type length) noexcept in Span() function
194 constexpr Span(T (&a)[N]) noexcept // NOLINT(runtime/explicit) in Span() function
202 explicit Span( in Span() function
211 constexpr Span( in Span() function
223 explicit Span(V& v) noexcept // NOLINT(runtime/references) in Span() function
228 constexpr Span(const V& v) noexcept // NOLINT(runtime/explicit) in Span() function
268 Span(std::initializer_list<value_type> v in Span() function
/external/skia/modules/skplaintexteditor/include/
Dstringview.h11 struct Span { struct
16 using StringView = Span<const char>; argument
/external/angle/third_party/abseil-cpp/absl/types/
Dspan.h192 constexpr Span() noexcept : Span(nullptr, 0) {} in Span() function
193 constexpr Span(pointer array, size_type length) noexcept in Span() function
198 constexpr Span(T (&a)[N]) noexcept // NOLINT(runtime/explicit) in Span() function
206 explicit Span( in Span() function
215 constexpr Span( in Span() function
227 explicit Span(V& v) noexcept // NOLINT(runtime/references) in Span() function
232 constexpr Span(const V& v) noexcept // NOLINT(runtime/explicit) in Span() function
272 Span(std::initializer_list<value_type> v in Span() function
/external/boringssl/src/include/openssl/
Dspan.h36 class Span; variable
111 constexpr Span() : Span(nullptr, 0) {} in Span() function
112 constexpr Span(T *ptr, size_t len) : data_(ptr), size_(len) {} in Span() function
115 constexpr Span(T (&array)[N]) : Span(array, N) {} in Span() function
119 constexpr Span(const C &container) in Span() function
124 constexpr explicit Span(C &container) in Span() function
/external/starlark-go/syntax/
Dsyntax.go11 Span() (start, end Position) methodSpec
76 func (x *File) Span() (start, end Position) { func
113 func (x *AssignStmt) Span() (start, end Position) { func
130 func (x *DefStmt) Span() (start, end Position) { func
141 func (x *ExprStmt) Span() (start, end Position) { func
156 func (x *IfStmt) Span() (start, end Position) { func
182 func (x *LoadStmt) Span() (start, end Position) { func
196 func (x *BranchStmt) Span() (start, end Position) { func
207 func (x *ReturnStmt) Span() (start, end Position) { func
247 func (x *Ident) Span() (start, end Position) { func
[all …]
/external/rust/crates/grpcio-sys/grpc/third_party/opencensus-proto/gen-go/trace/v1/
Dtrace.pb.go219 type Span struct { struct
220 state protoimpl.MessageState
221 sizeCache protoimpl.SizeCache
222 unknownFields protoimpl.UnknownFields
232 TraceId []byte `protobuf:"bytes,1,opt,name=trace_id,json=traceId,proto3" json:"trace_id,omitempty"`
264 …Kind Span_SpanKind `protobuf:"varint,14,opt,name=kind,proto3,enum=opencensus.proto.trace.v1.Span_S…
275 …imestamp `protobuf:"bytes,5,opt,name=start_time,json=startTime,proto3" json:"start_time,omitempty"`
285 …tamp.Timestamp `protobuf:"bytes,6,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"`
287 …ibutes *Span_Attributes `protobuf:"bytes,7,opt,name=attributes,proto3" json:"attributes,omitempty"`
289 …Trace `protobuf:"bytes,8,opt,name=stack_trace,json=stackTrace,proto3" json:"stack_trace,omitempty"`
[all …]
/external/rust/crates/combine/src/stream/
Dspan.rs10 pub struct Span<P> { struct
15 impl<P> From<P> for Span<P> argument
28 impl<P> Span<P> { implementation
/external/rust/crates/proc-macro2/src/
Dwrapper.rs256 pub(crate) fn span(&self) -> Span { in span()
386 pub(crate) enum Span { enum
391 impl Span { impl
417 pub fn resolved_at(&self, other: Span) -> Span { in resolved_at()
425 pub fn located_at(&self, other: Span) -> Span { in located_at()
433 pub fn unwrap(self) -> proc_macro::Span { in unwrap()
464 pub fn join(&self, other: Span) -> Option<Span> { in join()
493 fn unwrap_nightly(self) -> proc_macro::Span { in unwrap_nightly()
501 impl From<proc_macro::Span> for crate::Span { implementation
507 impl From<fallback::Span> for Span { implementation
[all …]
/external/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/
DTrie.java50 final class Span { class in Trie
55 private Span() { in Span() method in Trie.Span
60 private Span(int index, String prefix) { in Span() method in Trie.Span

1234567