Home
last modified time | relevance | path

Searched refs:span (Results 326 - 350 of 692) sorted by relevance

1...<<11121314151617181920>>...28

/third_party/rust/crates/cxx/gen/lib/src/gen/
H A Dcfg.rs69 let span = quote!(#ident #string); in try_eval()
70 Err(vec![Error::new_spanned(span, msg)]) in try_eval()
/third_party/spirv-tools/utils/vscode/src/lsp/span/
H A Dtoken.go15 package span
77 s := Span{v: span{URI: FileURI(f.Name())}}
/foundation/arkui/ace_engine/frameworks/core/components/grid/
H A Drender_grid_item.h34 void SetColumnSpan(int32_t span);
/third_party/typescript/tests/baselines/reference/
H A DtsxIntrinsicAttributeErrors.js19 span: any;
/third_party/zlib/examples/
H A Dzran.h26 // build an index, with access points about every span bytes of uncompressed
27 // output. gzip files with multiple members are fully indexed. span should be
34 int deflate_index_build(FILE *in, off_t span, struct deflate_index **built);
/foundation/arkui/ace_engine/test/unittest/core/pattern/rich_editor/
H A Drich_editor_common_test_ng.cpp65 for (auto& span : richEditorPattern->spans_) { in AddImageSpan()
66 spanTextLength += StringUtils::ToWstring(span->content).length(); in AddImageSpan()
67 span->position = spanTextLength; in AddImageSpan()
/third_party/mesa3d/src/amd/compiler/
H A Daco_util.h38 /*! \brief Definition of a span object
40 * \details A "span" is an "array view" type for holding a view of contiguous
41 * data. The "span" object does not own the data itself.
43 template <typename T> class span { class
59 constexpr span() = default;
61 /*! \brief Constructor taking a pointer and the length of the span
63 * \param[in] length The size of the span
65 constexpr span(uint16_t offset_, const size_type length_) : offset{offset_}, length{length_} {} in span() function in aco::span
67 /*! \brief Returns an iterator to the begin of the span
72 /*! \brief Returns a const_iterator to the begin of the span
[all...]
/third_party/node/lib/internal/
H A Dblob.js259 const span = MathMax(end - start, 0);
262 this[kHandle].slice(start, start + span),
263 span,
/third_party/rust/crates/codespan/codespan-reporting/examples/
H A Dreadme_preview.rs277 write!(self, "</span>")?; in set_color()
283 write!(self, "</span>")?; in set_color()
286 write!(self, "<span class=\"")?; in set_color()
350 write!(self, "</span>")?; in reset()
/third_party/skia/modules/skottie/src/text/
H A DRangeSelector.cpp131 const auto& span = (*fMap)[i]; in domain_map_proc() local
132 (this->*fMappedProc)(amount, span.fOffset, span.fCount); in domain_map_proc()
/third_party/skia/gm/
H A Ddashcircle.cpp74 SkScalar span = dashExample.pattern[i2] * unitLength; variable
76 refPath.arcTo(oval, angle, span, false);
78 angle += span + (dashExample.pattern[i2 + 1]) * unitLength;
/third_party/rust/crates/serde/serde_derive_internals/src/
H A Dreceiver.rs25 fn self_ty(&self, span: Span) -> TypePath { in self_ty()
27 let respanned = respan(tokens, span); in self_ty()
41 let span = path.segments[0].ident.span(); in self_to_qself()
43 lt_token: Token![<](span), in self_to_qself()
44 ty: Box::new(Type::Path(self.self_ty(span))), in self_to_qself()
47 gt_token: Token![>](span), in self_to_qself()
57 let self_ty = self.self_ty(path.segments[0].ident.span()); in self_to_expr_path()
76 let span = if let Type::Path(node) = ty { in visit_type_mut()
78 node.path.segments[0].ident.span() in visit_type_mut()
[all...]
/third_party/rust/crates/serde/serde_derive/src/internals/
H A Dreceiver.rs25 fn self_ty(&self, span: Span) -> TypePath { in self_ty()
27 let respanned = respan(tokens, span); in self_ty()
41 let span = path.segments[0].ident.span(); in self_to_qself()
43 lt_token: Token![<](span), in self_to_qself()
44 ty: Box::new(Type::Path(self.self_ty(span))), in self_to_qself()
47 gt_token: Token![>](span), in self_to_qself()
57 let self_ty = self.self_ty(path.segments[0].ident.span()); in self_to_expr_path()
76 let span = if let Type::Path(node) = ty { in visit_type_mut()
78 node.path.segments[0].ident.span() in visit_type_mut()
[all...]
/foundation/arkui/ace_engine/advanced_ui_component/selectionmenu/interfaces/
H A Dselectionmenu.js367 let span = item;
368 let style = span.textStyle;
369 let data = pasteboard.createRecord(pasteboard.MIMETYPE_TEXT_PLAIN, span.value.substring(span.offsetInSpan[0], span.offsetInSpan[1]));
/third_party/libsnd/src/
H A Ddwvw.c41 { int bit_width, dwm_maxsize, max_delta, span ; member
342 sample -= pdwvw->span ; in dwvw_decode_data()
344 sample += pdwvw->span ; in dwvw_decode_data()
424 pdwvw->span = 1 << bitwidth ; in dwvw_read_reset()
502 delta = pdwvw->span - delta ; in dwvw_encode_data()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/rich_editor/
H A Drich_editor_event_hub.h230 void SetRichEditorOriginalSpans(const RichEditorAbstractSpanResult& span);
233 void SetRichEditorReplacedSpans(const RichEditorAbstractSpanResult& span);
236 void SetRichEditorReplacedImageSpans(const RichEditorAbstractSpanResult& span);
239 void SetRichEditorReplacedSymbolSpans(const RichEditorAbstractSpanResult& span);
/foundation/arkui/ui_lite/frameworks/draw/
H A Ddraw_canvas.cpp224 FillGradient span(interpolatorType, gradientLinearCalculate, gradientColorMode, 0, distance); in RenderGradient()
225 RenderScanlinesAntiAlias(rasterizer, scanline, renBase, allocator, span); in RenderGradient()
235 FillGradient span(interpolatorType, gradientRadialCalculate, gradientColorMode, startRadius, endRadius); in RenderGradient()
236 RenderScanlinesAntiAlias(rasterizer, scanline, renBase, allocator, span); in RenderGradient()
/kernel/linux/linux-5.10/tools/testing/selftests/resctrl/
H A Dresctrlfs.c314 unsigned long span, buffer_span; in run_benchmark() local
331 span = strtoul(benchmark_cmd[1], NULL, 10); in run_benchmark()
338 buffer_span = span * MB; in run_benchmark()
340 buffer_span = span; in run_benchmark()
/kernel/linux/linux-6.6/net/mac802154/
H A Drx.c113 __le16 span, sshort; in ieee802154_subif_frame() local
118 span = wpan_dev->pan_id; in ieee802154_subif_frame()
142 if (mac_cb(skb)->dest.pan_id != span && in ieee802154_subif_frame()
151 if (mac_cb(skb)->dest.pan_id != span && in ieee802154_subif_frame()
/third_party/icu/icu4c/source/common/unicode/
H A Duniset.h583 * contains() and span().
923 int32_t span(const char16_t *s, int32_t length, USetSpanCondition spanCondition) const;
927 * Same as <code>start+span(s.getBuffer()+start, s.length()-start, spanCondition)</code>
930 * @param start the start index in the string for the span operation
937 inline int32_t span(const UnicodeString &s, int32_t start, USetSpanCondition spanCondition) const;
963 * @param limit the exclusive-end index in the string for the span operation
1756 inline int32_t UnicodeSet::span(const UnicodeString &s, int32_t start, USetSpanCondition spanCondition) const { in span() function in UnicodeSet
1763 return start+span(s.getBuffer()+start, sLength-start, spanCondition); in span()
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
H A Ddispatch_test.cc56 span<uint8_t> empty_span; in TEST()
346 span<uint8_t> method,
347 span<uint8_t> message) override {}
381 span<uint8_t> command_name) override {
/third_party/musl/src/malloc/mallocng/
H A Dmalloc.c214 int span = UNIT + size*cnt; in try_avail() local
216 while ((span^(span+size-1)) < 4096) { in try_avail()
218 span += size; in try_avail()
/third_party/musl/porting/linux/user/src/malloc/mallocng/
H A Dmalloc.c210 int span = UNIT + size*cnt; in try_avail() local
212 while ((span^(span+size-1)) < 4096) { in try_avail()
214 span += size; in try_avail()
/third_party/node/deps/icu-small/source/common/unicode/
H A Duniset.h587 * contains() and span().
931 int32_t span(const char16_t *s, int32_t length, USetSpanCondition spanCondition) const;
935 * Same as <code>start+span(s.getBuffer()+start, s.length()-start, spanCondition)</code>
938 * @param start the start index in the string for the span operation
945 inline int32_t span(const UnicodeString &s, int32_t start, USetSpanCondition spanCondition) const;
971 * @param limit the exclusive-end index in the string for the span operation
1769 inline int32_t UnicodeSet::span(const UnicodeString &s, int32_t start, USetSpanCondition spanCondition) const { in span() function in UnicodeSet
1776 return start+span(s.getBuffer()+start, sLength-start, spanCondition); in span()
/third_party/skia/src/pathops/
H A DSkOpCoincidence.h24 // to a new span pair
73 // to a new span pair
82 SkOPASSERT(ptT == ptT->span()->ptT()); in setCoinPtTEnd()
90 SkOPASSERT(ptT == ptT->span()->ptT()); in setCoinPtTStart()
103 SkOPASSERT(ptT == ptT->span()->ptT()); in setOppPtTEnd()
111 SkOPASSERT(ptT == ptT->span()->ptT()); in setOppPtTStart()

Completed in 17 milliseconds

1...<<11121314151617181920>>...28