Home
last modified time | relevance | path

Searched refs:span (Results 351 - 375 of 693) sorted by relevance

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

/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Duniset.h577 * contains() and span().
907 int32_t span(const char16_t *s, int32_t length, USetSpanCondition spanCondition) const;
911 * Same as <code>start+span(s.getBuffer()+start, s.length()-start, spanCondition)</code>
914 * @param start the start index in the string for the span operation
921 inline int32_t span(const UnicodeString &s, int32_t start, USetSpanCondition spanCondition) const;
947 * @param limit the exclusive-end index in the string for the span operation
1736 inline int32_t UnicodeSet::span(const UnicodeString &s, int32_t start, USetSpanCondition spanCondition) const { in span() function in UnicodeSet
1743 return start+span(s.getBuffer()+start, sLength-start, spanCondition); in span()
/third_party/rust/crates/syn/tests/
H A Dtest_precedence.rs263 vis.visit_span(&mut e.span); in librustc_parenthesize()
282 span: DUMMY_SP, in librustc_parenthesize()
322 self.visit_span(&mut block.span); in librustc_parenthesize()
483 group_token: token::Group(paren.paren_token.span.join()), in make_parens_invisible()
/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/skia_txt/txt/
H A Dparagraph_builder.h43 virtual void AddPlaceholder(PlaceholderRun& span) = 0;
/kernel/linux/linux-6.6/rust/macros/
H A Dconcat_idents.rs21 let res = Ident::new(&format!("{a}{b}"), b.span());
/third_party/icu/icu4c/source/test/perf/unisetperf/draft/
H A Dunicont.h29 virtual int32_t span(const UChar *s, int32_t length);
/third_party/node/deps/v8/third_party/inspector_protocol/crdtp/
H A Derror_support.h12 #include "span.h"
45 span<uint8_t> Errors() const;
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/span/
H A Dtoken111.go17 package span
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/
H A Dtoken111.go17 package span
/third_party/spirv-tools/utils/vscode/src/lsp/span/
H A Dtoken111.go17 package span
/third_party/node/deps/v8/src/inspector/
H A Dv8-debugger-agent-impl.cc1091 v8::MemorySpan<const uint8_t> span; in getScriptSource() local
1092 if (it->second->wasmBytecode().To(&span)) { in getScriptSource()
1093 if (span.size() > kWasmBytecodeMaxLength) { in getScriptSource()
1096 *bytecode = protocol::Binary::fromSpan(span.data(), span.size()); in getScriptSource()
1109 v8::MemorySpan<const uint8_t> span; in getWasmBytecode()
1110 if (!it->second->wasmBytecode().To(&span)) in getWasmBytecode()
1113 if (span.size() > kWasmBytecodeMaxLength) { in getWasmBytecode()
1116 *bytecode = protocol::Binary::fromSpan(span.data(), span in getWasmBytecode()
1962 v8::MemorySpan<const uint8_t> span; ScriptCollected() local
[all...]
H A Dv8-inspector-session-impl.h113 void FallThrough(int callId, v8_crdtp::span<uint8_t> method,
114 v8_crdtp::span<uint8_t> message) override;
/kernel/linux/linux-5.10/drivers/usb/host/
H A Dehci-sched.c1184 iso_sched->span = urb->number_of_packets * stream->uperiod; in itd_sched_init()
1249 num_itds = 1 + (sched->span + 7) / 8; in itd_urb_transaction()
1466 u32 now, base, next, start, period, span, now2; in iso_stream_schedule() local
1475 span = sched->span; in iso_stream_schedule()
1477 span <<= 3; in iso_stream_schedule()
1602 if (skip >= span) { /* Entirely in the past? */ in iso_stream_schedule()
1604 urb, start + base, span - period, now2 + base, in iso_stream_schedule()
1608 skip = span - period; in iso_stream_schedule()
1612 skip = span; /* Ski in iso_stream_schedule()
[all...]
/kernel/linux/linux-6.6/drivers/usb/host/
H A Dehci-sched.c1189 iso_sched->span = urb->number_of_packets * stream->uperiod; in itd_sched_init()
1254 num_itds = 1 + (sched->span + 7) / 8; in itd_urb_transaction()
1477 u32 now, base, next, start, period, span, now2; in iso_stream_schedule() local
1486 span = sched->span; in iso_stream_schedule()
1488 span <<= 3; in iso_stream_schedule()
1613 if (skip >= span) { /* Entirely in the past? */ in iso_stream_schedule()
1615 urb, start + base, span - period, now2 + base, in iso_stream_schedule()
1619 skip = span - period; in iso_stream_schedule()
1623 skip = span; /* Ski in iso_stream_schedule()
[all...]
/third_party/skia/third_party/externals/freetype/src/smooth/
H A Dftgrays.c1533 FT_Span span[FT_MAX_GRAY_SPANS]; in gray_sweep_direct() local
1553 span[n].coverage = (unsigned char)coverage; in gray_sweep_direct()
1554 span[n].x = (short)x; in gray_sweep_direct()
1555 span[n].len = (unsigned short)( cell->x - x ); in gray_sweep_direct()
1559 /* flush the span buffer and reset the count */ in gray_sweep_direct()
1560 ras.render_span( y, n, span, ras.render_span_data ); in gray_sweep_direct()
1572 span[n].coverage = (unsigned char)coverage; in gray_sweep_direct()
1573 span[n].x = (short)cell->x; in gray_sweep_direct()
1574 span[n].len = 1; in gray_sweep_direct()
1578 /* flush the span buffe in gray_sweep_direct()
[all...]
/foundation/arkui/ace_engine/frameworks/bridge/common/dom/
H A Ddom_grid_column.h41 void ParseSpanAndOffset(const std::string& value, uint32_t& span, Dimension& offset);
/foundation/graphic/graphic_2d/rosen/modules/texgine/export/texgine/
H A Dtypography_builder.h58 * @brief Append a span.
59 * @param span The appended span.
61 virtual void AppendSpan(const std::shared_ptr<AnySpan>& span) = 0;
/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/export/rosen_text/
H A Dtypography_create.h55 virtual void AppendPlaceholder(const PlaceholderSpan& span) = 0;
/foundation/graphic/graphic_2d/rosen/modules/2d_engine/rosen_text/adapter/skia_txt/
H A Dtypography_create.h32 void AppendPlaceholder(const PlaceholderSpan& span) override;
/third_party/rust/crates/syn/src/
H A Dext.rs96 Ident::new(string, self.span()) in unraw()
/third_party/rust/crates/serde/serde_derive/src/
H A Dthis.rs24 arguments.colon2_token = Some(Token![::](arguments.lt_token.span)); in this_value()
/third_party/icu/icu4c/source/test/intltest/
H A Dusettest.cpp752 // span(UnicodeString) and spanBack(UnicodeString) convenience methods in TestAPI()
756 if( ac.span(longString, -5, USET_SPAN_CONTAINED)!=10 || in TestAPI()
757 ac.span(longString, 0, USET_SPAN_CONTAINED)!=10 || in TestAPI()
758 ac.span(longString, 5, USET_SPAN_CONTAINED)!=10 || in TestAPI()
759 ac.span(longString, 10, USET_SPAN_CONTAINED)!=10 || in TestAPI()
760 ac.span(longString, 15, USET_SPAN_CONTAINED)!=15 || in TestAPI()
761 ac.span(longString, 20, USET_SPAN_CONTAINED)!=30 || in TestAPI()
762 ac.span(longString, 25, USET_SPAN_CONTAINED)!=30 || in TestAPI()
763 ac.span(longString, 30, USET_SPAN_CONTAINED)!=30 || in TestAPI()
764 ac.span(longStrin in TestAPI()
[all...]
/third_party/icu/tools/cldr/cldr-to-icu/src/test/java/org/unicode/icu/tool/cldrtoicu/localedistance/
H A DTrieTest.java131 assertThat(e).hasMessageThat().contains("span too long"); in testBadTrie_TooLong()
134 private static void infiniteRecursion(Trie.Span span) { in infiniteRecursion() argument
135 span.with("!", TrieTest::infiniteRecursion); in infiniteRecursion()
/third_party/python/Lib/idlelib/
H A Dsearchengine.py201 i, j = m.span() # m.start(), m.end() == match slice indexes
209 i, j = m.span()
/foundation/arkui/ace_engine/frameworks/core/components/font/
H A Dconstants_converter.cpp985 void ConvertPlaceholderRun(const PlaceholderRun& span, txt::PlaceholderRun& txtSpan) in ConvertPlaceholderRun() argument
987 void ConvertPlaceholderRun(const PlaceholderRun& span, Rosen::PlaceholderSpan& txtSpan) in ConvertPlaceholderRun()
990 txtSpan.width = span.width; in ConvertPlaceholderRun()
991 txtSpan.height = span.height; in ConvertPlaceholderRun()
992 txtSpan.alignment = ConvertPlaceholderAlignment(span.alignment); in ConvertPlaceholderRun()
993 txtSpan.baseline = ConvertTxtTextBaseline(span.baseline); in ConvertPlaceholderRun()
995 txtSpan.baseline_offset = span.baseline_offset; in ConvertPlaceholderRun()
997 txtSpan.baselineOffset = span.baseline_offset; in ConvertPlaceholderRun()
/third_party/skia/modules/skparagraph/src/
H A DTextWrapper.cpp735 auto span = parent->clusters(); in moveForward() local
736 if (span.empty()) { in moveForward()
765 fEndLine = TextStretch(span.begin(), span.begin(), parent->strutForceHeight()); in moveForward()
766 auto end = span.end() - 1; in moveForward()
767 auto start = span.begin(); in moveForward()
1208 auto span = parent->clusters(); in moveForward()
1209 if (span.empty()) { in moveForward()
1221 fEndLine = TextStretch(span.begin(), span in moveForward()
[all...]

Completed in 23 milliseconds

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