/third_party/ffmpeg/libavformat/ |
H A D | asfdec_o.c | 77 int8_t span; // for deinterleaving member 691 uint8_t span = avio_r8(pb); in asf_read_stream_properties() local 692 if (span > 1) { in asf_read_stream_properties() 693 asf_st->span = span; in asf_read_stream_properties() 1290 while (asf_pkt->data_size >= asf_st->span * pkt_len + pos) { in asf_deinterleave() 1298 for (j = 0; j < asf_st->span; j++) { in asf_deinterleave() 1307 p += asf_st->span * pkt_len; in asf_deinterleave() 1382 if (asf->asf_st[i]->span > 1 && in asf_read_packet()
|
/third_party/python/Tools/scripts/ |
H A D | texi2html.py | 283 a, b = mo.span(1) 397 bgn, end = mo.span(0) 398 a, b = mo.span(1) 399 c, d = mo.span(2) 400 e, f = mo.span(3) 401 g, h = mo.span(4) 870 a, b = mo.span(1) 1925 bgn, end = co.span(0) 1926 a, b = co.span(1)
|
/third_party/rust/crates/syn/src/ |
H A D | expr.rs | 795 fn span(&self) -> Option<Span> { in span() functions 797 Member::Named(m) => Some(m.span()), in span() 798 Member::Unnamed(m) => Some(m.span), in span() 808 pub span: Span, 817 span: Span::call_site(), in from() 842 fn span(&self) -> Option<Span> { in span() functions 843 Some(self.span) in span() 2874 .map_err(|err| Error::new(lit.span(), err))?, in parse() 2875 span: lit.span(), in parse() [all...] |
/foundation/arkui/ace_engine/test/mock/core/render/ |
H A D | mock_paragraph.h | 51 MOCK_METHOD1(AddPlaceholder, int32_t(const PlaceholderRun& span));
|
/kernel/linux/linux-6.6/rust/macros/ |
H A D | pin_data.rs | 111 tok.set_span(tt.span()); in replace_self_and_deny_type_defs()
|
/third_party/gn/examples/ios/build/config/ios/scripts/ |
H A D | merge_plist.py | 90 extent = match.span()
|
/third_party/icu/icu4c/source/common/ |
H A D | unisetspan.h | 28 * Implement span() etc. for a set with strings. 35 * Which span() variant will be used? 67 * Do the strings need to be checked in span() etc.? 68 * @return true if strings need to be checked (call span() here), 77 int32_t span(const UChar *s, int32_t length, USetSpanCondition spanCondition) const; 95 // so that a character span ends before any string. 103 // Set for span(). Same as parent but without strings. 106 // Set for span(not contained). 119 // the lengths of span(), spanBack() etc. for each string. 133 // Set up for all variants of span() [all...] |
/third_party/node/deps/v8/third_party/zlib/google/ |
H A D | zip.h | 14 #include "base/containers/span.h" 28 // Paths passed as span to avoid copying them. 29 using Paths = base::span<const base::FilePath>;
|
/third_party/node/deps/zlib/google/ |
H A D | zip.h | 13 #include "base/containers/span.h" 28 // Paths passed as span to avoid copying them. 29 using Paths = base::span<const base::FilePath>;
|
/third_party/node/deps/icu-small/source/common/ |
H A D | unisetspan.h | 28 * Implement span() etc. for a set with strings. 35 * Which span() variant will be used? 67 * Do the strings need to be checked in span() etc.? 68 * @return true if strings need to be checked (call span() here), 77 int32_t span(const char16_t *s, int32_t length, USetSpanCondition spanCondition) const; 95 // so that a character span ends before any string. 103 // Set for span(). Same as parent but without strings. 106 // Set for span(not contained). 119 // the lengths of span(), spanBack() etc. for each string. 133 // Set up for all variants of span() [all...] |
/third_party/rust/crates/cxx/gen/lib/src/syntax/ |
H A D | cfg.rs | 53 Err(Error::new(ident.span(), "unrecognized cfg expression")) in parse_single()
|
/third_party/rust/crates/cxx/syntax/ |
H A D | cfg.rs | 53 Err(Error::new(ident.span(), "unrecognized cfg expression")) in parse_single()
|
/third_party/rust/crates/clap/clap_derive/src/utils/ |
H A D | ty.rs | 25 let t = |kind| Sp::new(kind, ty.span()); in from_syn_ty()
|
/third_party/rust/crates/cxx/gen/cmd/src/syntax/ |
H A D | cfg.rs | 53 Err(Error::new(ident.span(), "unrecognized cfg expression")) in parse_single()
|
/third_party/rust/crates/cxx/macro/src/syntax/ |
H A D | cfg.rs | 53 Err(Error::new(ident.span(), "unrecognized cfg expression")) in parse_single()
|
/third_party/python/Lib/idlelib/ |
H A D | search.py | 101 i, j = m.span()
|
/third_party/skia/third_party/externals/spirv-tools/utils/vscode/src/lsp/span/ |
H A D | parse.go | 15 package span 25 // The returned span will be normalized, and thus if printed may produce a 47 // we have a span, fall out of the case to continue 52 // only the span form can get here 65 // turns out we don't have a span after all, rewind
|
H A D | uri.go | 15 package span 60 // NewURI returns a span URI for the string. 110 // FileURI returns a span URI for the supplied file path.
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/utils/vscode/src/lsp/span/ |
H A D | parse.go | 15 package span 25 // The returned span will be normalized, and thus if printed may produce a 47 // we have a span, fall out of the case to continue 52 // only the span form can get here 65 // turns out we don't have a span after all, rewind
|
H A D | uri.go | 15 package span 60 // NewURI returns a span URI for the string. 110 // FileURI returns a span URI for the supplied file path.
|
/third_party/skia/src/sksl/ |
H A D | SkSLDehydrator.h | 123 void writeExpressionSpan(const SkSpan<const std::unique_ptr<Expression>>& span);
|
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | unisetspan.h | 28 * Implement span() etc. for a set with strings. 35 * Which span() variant will be used? 67 * Do the strings need to be checked in span() etc.? 68 * @return true if strings need to be checked (call span() here), 77 int32_t span(const UChar *s, int32_t length, USetSpanCondition spanCondition) const; 95 // so that a character span ends before any string. 103 // Set for span(). Same as parent but without strings. 106 // Set for span(not contained). 119 // the lengths of span(), spanBack() etc. for each string. 133 // Set up for all variants of span() [all...] |
/third_party/rust/crates/cxx/gen/build/src/syntax/ |
H A D | cfg.rs | 53 Err(Error::new(ident.span(), "unrecognized cfg expression")) in parse_single()
|
/third_party/spirv-tools/utils/vscode/src/lsp/span/ |
H A D | parse.go | 15 package span 25 // The returned span will be normalized, and thus if printed may produce a 47 // we have a span, fall out of the case to continue 52 // only the span form can get here 65 // turns out we don't have a span after all, rewind
|
H A D | uri.go | 15 package span 60 // NewURI returns a span URI for the string. 110 // FileURI returns a span URI for the supplied file path.
|