Home
last modified time | relevance | path

Searched refs:span (Results 226 - 250 of 605) sorted by relevance

12345678910>>...25

/third_party/rust/crates/cxx/gen/lib/src/gen/
H A Dcheck.rs22 let span = quote!(#begin #end); in check_dot_includes()
23 cx.error(span, error::DOT_INCLUDE.msg); in check_dot_includes()
/third_party/rust/crates/syn/src/
H A Ddiscouraged.rs172 (Some(span), None) => { in advance_to()
173 self_unexp.set(Unexpected::Some(span)); in advance_to()
200 /// Returns the delimiter, the span of the delimiter token, and the nested
208 if let Some((content, delimiter, span, rest)) = cursor.any_group() { in parse_any_delimiter()
213 Ok(((delimiter, span, content), rest)) in parse_any_delimiter()
H A Dident.rs19 Ident::new(stringify!($token), token.span) in from()
33 Ident::new("_", token.span) in from()
/third_party/icu/icu4c/source/test/perf/unisetperf/
H A Dunisetperf.cpp83 "cp/span:%.3g UChar/span:%.3g B/span:%.3g B/cp:%.3g\n", in UnicodeSetPerformanceTest()
97 // not-span is counted.
104 i=span(s, length, i, tf); in countSpans()
109 int32_t span(const UChar *s, int32_t length, int32_t start, UBool tf) const { in span() function in UnicodeSetPerformanceTest
147 // Input code points, plus one for the end of each span except the last span. in getOperationsPerIteration()
186 i+=span(set, s+i, length-i, tf); in call()
195 static int32_t span(cons in call() function in Contains
[all...]
/third_party/icu/icu4c/source/common/
H A Dfilterednormalizer2.cpp54 // span length at the start of src.
66 int32_t spanLimit=set.span(src, prevSpanLimit, spanCondition); in normalize()
99 options |= U_EDITS_NO_RESET; // Do not reset for each span. in normalizeUTF8()
172 int32_t prefixLimit=set.span(second, 0, USET_SPAN_SIMPLE); in normalizeSecondAndAppend()
231 int32_t spanLimit=set.span(s, prevSpanLimit, spanCondition); in isNormalized()
281 int32_t spanLimit=set.span(s, prevSpanLimit, spanCondition); in quickCheck()
307 int32_t spanLimit=set.span(s, prevSpanLimit, spanCondition); in spanQuickCheckYes()
/third_party/node/deps/icu-small/source/common/
H A Dfilterednormalizer2.cpp54 // span length at the start of src.
66 int32_t spanLimit=set.span(src, prevSpanLimit, spanCondition); in normalize()
99 options |= U_EDITS_NO_RESET; // Do not reset for each span. in normalizeUTF8()
172 int32_t prefixLimit=set.span(second, 0, USET_SPAN_SIMPLE); in normalizeSecondAndAppend()
231 int32_t spanLimit=set.span(s, prevSpanLimit, spanCondition); in isNormalized()
281 int32_t spanLimit=set.span(s, prevSpanLimit, spanCondition); in quickCheck()
307 int32_t spanLimit=set.span(s, prevSpanLimit, spanCondition); in spanQuickCheckYes()
/third_party/node/deps/npm/node_modules/@isaacs/cliui/build/lib/
H A Dindex.js19 span(...args) {
21 cols.span = true;
127 // if prior row is span, try to render the
136 span: row.span
150 if (!previousLine.span) {
154 // just always append to the span.
/third_party/skia/third_party/externals/icu/source/common/
H A Dfilterednormalizer2.cpp54 // span length at the start of src.
66 int32_t spanLimit=set.span(src, prevSpanLimit, spanCondition); in normalize()
99 options |= U_EDITS_NO_RESET; // Do not reset for each span. in normalizeUTF8()
172 int32_t prefixLimit=set.span(second, 0, USET_SPAN_SIMPLE); in normalizeSecondAndAppend()
231 int32_t spanLimit=set.span(s, prevSpanLimit, spanCondition); in isNormalized()
281 int32_t spanLimit=set.span(s, prevSpanLimit, spanCondition); in quickCheck()
307 int32_t spanLimit=set.span(s, prevSpanLimit, spanCondition); in spanQuickCheckYes()
/third_party/typescript/tests/baselines/reference/
H A DimportHelpersInTsx.js6 export const x = <span {...o} />
11 const x = <span {...o} />
27 exports.x = React.createElement("span", tslib_1.__assign({}, o));
40 var x = React.createElement("span", __assign({}, o));
H A DinlineJsxAndJsxFragPragma.js27 <><span></span></>
97 (0, renderer_1.jsx)("span", null));
/third_party/rust/crates/cxx/macro/src/
H A Dtokens.rs36 tokens.extend(quote_spanned!(pin.span=> ::cxx::core::pin::Pin)); in to_tokens()
64 tokens.extend(quote_spanned!(pin.span=> ::cxx::core::pin::Pin)); in to_tokens()
70 Token![Self](ty.rust.span()).to_tokens(tokens); in to_tokens()
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
H A Djson_test.cc19 #include "span.h"
93 writer->HandleString16(span<uint16_t>(chars.data(), chars.size())); in TEST()
106 writer->HandleString16(span<uint16_t>(chars.data(), chars.size())); in TEST()
117 writer->HandleString16(span<uint16_t>(chars.data(), chars.size())); in TEST()
126 writer->HandleString8(span<uint8_t>(chars.data(), chars.size())); in TEST()
138 writer->HandleString16(span<uint16_t>(chars16.data(), chars16.size())); in TEST()
333 void HandleString8(span<uint8_t> chars) override {
337 void HandleString16(span<uint16_t> chars) override {
342 void HandleBinary(span<uint8_t> bytes) override {
592 ParseJSON(span<uint8_ in TEST_F()
[all...]
/third_party/rust/crates/serde/serde_derive/src/
H A Dde.rs362 let span = transparent_field.original.span(); in deserialize_transparent()
363 quote_spanned!(span=> _serde::Deserialize::deserialize) in deserialize_transparent()
704 let span = field.original.span(); in deserialize_seq()
706 quote_spanned!(span=> _serde::de::SeqAccess::next_element::<#field_ty>); in deserialize_seq()
863 let span = field.original.span(); in deserialize_newtype_struct()
864 let func = quote_spanned!(span=> <#field_ty as _serde::Deserialize>::deserialize); in deserialize_newtype_struct()
1480 let span in deserialize_adjacently_tagged_enum()
[all...]
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/localedistance/
H A DLikelySubtagsBuilder.java199 span -> writeScripts(span, scripts, lsrToIndex))); in writeLsrTable()
224 span -> writeRegions(span, regions, lsrToIndex))); in writeScripts()
240 span -> span.putPrefixAndValue(lsrToIndex.apply(lsr)))); in writeRegions()
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/span/
H A Dspan.go15 // Package span contains support for representing with positions and ranges in
17 package span
27 v span
37 type span struct { type
49 // Invalid is a span that reports false from IsValid
50 var Invalid = Span{v: span{Start: invalidPoint.v, End: invalidPoint.v}}
64 s := Span{v: span{URI: uri, Start: start.v, End: end.v}}
155 func (s *span) clean() {
253 return fmt.Errorf("cannot add information to an invalid span")
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/
H A Dspan.go15 // Package span contains support for representing with positions and ranges in
17 package span
27 v span
37 type span struct { type
49 // Invalid is a span that reports false from IsValid
50 var Invalid = Span{v: span{Start: invalidPoint.v, End: invalidPoint.v}}
64 s := Span{v: span{URI: uri, Start: start.v, End: end.v}}
155 func (s *span) clean() {
253 return fmt.Errorf("cannot add information to an invalid span")
/third_party/spirv-tools/utils/vscode/src/lsp/span/
H A Dspan.go15 // Package span contains support for representing with positions and ranges in
17 package span
27 v span
37 type span struct { type
49 // Invalid is a span that reports false from IsValid
50 var Invalid = Span{v: span{Start: invalidPoint.v, End: invalidPoint.v}}
64 s := Span{v: span{URI: uri, Start: start.v, End: end.v}}
155 func (s *span) clean() {
253 return fmt.Errorf("cannot add information to an invalid span")
/third_party/mesa3d/src/gallium/drivers/softpipe/
H A Dsp_setup.c108 } span; member
197 * Render a horizontal span of quads
203 const int xleft0 = setup->span.left[0]; in flush_spans()
204 const int xleft1 = setup->span.left[1]; in flush_spans()
205 const int xright0 = setup->span.right[0]; in flush_spans()
206 const int xright1 = setup->span.right[1]; in flush_spans()
238 setup->quad[q].input.y0 = setup->span.y; in flush_spans()
257 setup->span.y = 0; in flush_spans()
258 setup->span.right[0] = 0; in flush_spans()
259 setup->span in flush_spans()
[all...]
/kernel/linux/linux-5.10/include/linux/
H A Denergy_model.h98 struct em_data_callback *cb, cpumask_t *span);
205 struct em_data_callback *cb, cpumask_t *span) in em_dev_register_perf_domain()
204 em_dev_register_perf_domain(struct device *dev, unsigned int nr_states, struct em_data_callback *cb, cpumask_t *span) em_dev_register_perf_domain() argument
/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Dqualified.rs49 return Err(Error::new(ident.span(), msg)); in parse_unquoted()
51 ident = Ident::new(unraw, ident.span()); in parse_unquoted()
/third_party/rust/crates/cxx/gen/cmd/src/syntax/
H A Dqualified.rs49 return Err(Error::new(ident.span(), msg)); in parse_unquoted()
51 ident = Ident::new(unraw, ident.span()); in parse_unquoted()
/third_party/rust/crates/cxx/macro/src/syntax/
H A Dqualified.rs49 return Err(Error::new(ident.span(), msg)); in parse_unquoted()
51 ident = Ident::new(unraw, ident.span()); in parse_unquoted()
/third_party/rust/crates/cxx/gen/lib/src/syntax/
H A Dqualified.rs49 return Err(Error::new(ident.span(), msg)); in parse_unquoted()
51 ident = Ident::new(unraw, ident.span()); in parse_unquoted()
/third_party/rust/crates/cxx/syntax/
H A Dqualified.rs49 return Err(Error::new(ident.span(), msg)); in parse_unquoted()
51 ident = Ident::new(unraw, ident.span()); in parse_unquoted()
/third_party/rust/crates/syn/examples/heapsize/heapsize_derive/src/
H A Dlib.rs58 // We take some care to use the span of each `syn::Field` as in heap_size_sum()
59 // the span of the corresponding `heap_size_of_children` in heap_size_sum()
66 quote_spanned! {f.span()=> in heap_size_sum()
80 quote_spanned! {f.span()=> in heap_size_sum()

Completed in 13 milliseconds

12345678910>>...25