/third_party/skia/third_party/externals/swiftshader/tests/regres/cov/ |
H A D | tree.go | 41 spans map[Span]SpanID 49 t.spans = map[Span]SpanID{} 56 // Spans returns all the spans used by the tree 58 out := make(SpanList, len(t.spans)) 59 for span, id := range t.spans { 91 func (t *Tree) addSpans(spans SpanList) SpanSet { 92 out := make(SpanSet, len(spans)) 93 for _, s := range spans { 94 id, ok := t.spans[s] 96 id = SpanID(len(t.spans)) [all...] |
H A D | serialization.go | 54 for span, id := range t.spans { 77 // write the spans 114 spans := make([]spanAndID, 0, len(t.spans)) 115 for span, id := range t.spans { 116 spans = append(spans, spanAndID{span, id}) 118 sort.Slice(spans, func(i, j int) bool { return spans[i].id < spans[ [all...] |
H A D | import.go | 30 // File describes the coverage spans in a single source file. 34 Uncovered SpanList // Compiled spans without coverage 37 // Coverage describes the coverage spans for all the source files for a single 144 func appendSpan(spans []Span, span Span) []Span { 145 if c := len(spans); c > 0 && spans[c-1].End == span.Start { 146 spans[c-1].End = span.End 148 spans = append(spans, span) 150 return spans [all...] |
H A D | coverage_test.go | 226 0: cov.SpanGroup{Spans: spans(0, 1)}, 227 1: cov.SpanGroup{Spans: spans(0, 3)}, 228 2: cov.SpanGroup{Spans: spans(1, 2)}, 264 0: cov.SpanGroup{Spans: spans(0, 1)}, 333 func coverage(file string, spans ...cov.Span) *cov.Coverage { 338 Covered: spans, 344 func spans(ids ...cov.SpanID) cov.SpanSet {
|
/third_party/rust/crates/proc-macro-error/test-crate/ |
H A D | lib.rs | 55 let mut spans = input.into_iter().step_by(2).map(|t| t.span()); in emit() variables 57 spans.next().unwrap(), in emit() 61 spans.next().unwrap(), in emit() 65 emit_error!(spans.next().unwrap(), "emit!(span, single_expr) test"); in emit() 67 spans.next().unwrap().into(), in emit() 76 emit_warning!(spans.next().unwrap(), "emit_warning! test"); in emit() 87 let mut spans = input.into_iter().map(|s| s.span()); in abort_notes() variables 88 let span = spans.next().unwrap(); in abort_notes() 89 let span2 = spans.next().unwrap(); in abort_notes() 117 let mut spans in emit_notes() variables 255 let mut spans = input.into_iter().step_by(2).map(|s| s.span()); explicit_span_range() variables 266 let mut spans = input.into_iter().step_by(2).map(|s| s.span()); children_messages() variables [all...] |
/third_party/rust/crates/syn/src/ |
H A D | token.rs | 147 /// Support writing `token.span` rather than `token.spans[0]` on tokens that in display() 384 pub spans: [Span; $len], 389 pub fn $name<S: IntoSpans<[Span; $len]>>(spans: S) -> $name { 391 spans: spans.into_spans(), 398 spans: [Span::call_site(); $len], in default() 457 printing::punct($token, &self.spans, tokens); in to_tokens() 466 spans: parsing::punct(input, $token)?, in parse() 1046 let mut spans = [input.span(); N]; variables 1047 punct_helper(input, token, &mut spans) 1110 let mut spans = spans.iter(); punct() variables [all...] |
H A D | custom_punctuation.rs | 23 /// - Field access to its spans — `let spans = lrarrow.spans` 81 pub spans: $crate::custom_punctuation_repr!($($tt)+), 87 spans: __S, 91 spans: $crate::__private::IntoSpans::into_spans(spans) 128 let spans: $crate::custom_punctuation_repr!($($tt)+) = in display() 130 Ok($ident(spans)) in display() 152 $crate::__private::print_punct($crate::stringify_punct!($($tt)+), &self.spans, token in to_tokens() [all...] |
H A D | pat.rs | 736 RangeLimits::HalfOpen(dot_dot) => (dot_dot.spans[0], dot_dot.spans[1]), in pat_slice() 738 (dot_dot_eq.spans[0], dot_dot_eq.spans[2]) in pat_slice()
|
H A D | ty.rs | 1058 let span = variadic.dots.spans[0]; in to_tokens()
|
H A D | expr.rs | 137 /// of expressions and is related to `None`-delimited spans in a 409 /// of expressions and is related to `None`-delimited spans in a 2795 Ok(RangeLimits::Closed(Token))
|
/third_party/skia/third_party/externals/freetype/src/smooth/ |
H A D | ftsmooth.c | 113 const FT_Span* spans, in ft_smooth_lcd_spans() 121 for ( ; count--; spans++ ) in ft_smooth_lcd_spans() 122 for ( dst = dst_line + spans->x * 3, w = spans->len; w--; dst += 3 ) in ft_smooth_lcd_spans() 123 *dst = spans->coverage; in ft_smooth_lcd_spans() 338 /* This function averages inflated spans in direct rendering mode */ 342 const FT_Span* spans, in ft_smooth_overlap_spans() 350 /* When accumulating the oversampled spans we need to assure that */ in ft_smooth_overlap_spans() 355 for ( ; count--; spans++ ) in ft_smooth_overlap_spans() 357 cover = ( spans in ft_smooth_overlap_spans() 111 ft_smooth_lcd_spans( int y, int count, const FT_Span* spans, TOrigin* target ) ft_smooth_lcd_spans() argument 340 ft_smooth_overlap_spans( int y, int count, const FT_Span* spans, TOrigin* target ) ft_smooth_overlap_spans() argument [all...] |
/third_party/rust/crates/proc-macro-error/src/ |
H A D | lib.rs | 128 //! spans, see [this issue](https://gitlab.com/CreepySkeleton/proc-macro-error/-/issues/6) 242 //! note =? note_span => opt_help // <-- optional attachments can have custom spans too 313 /// Create a range with the `first` and `last` spans being the same. 335 let mut spans = ts.to_token_stream().into_iter().map(|tt| tt.span()); in from_tokens() variables 336 let first = spans.next().unwrap_or_else(|| Span::call_site()); in from_tokens() 337 let last = spans.last().unwrap_or(first); in from_tokens()
|
/third_party/littlefs/scripts/ |
H A D | cov.py | 520 # calculate spans to show 522 spans = [] 534 spans.append((last, func)) 540 spans.append((last, func)) 545 # skip lines not in spans? 546 if not annotate and not any(i+1 in s for s, _ in spans): 556 next(iter(f for _, f in spans)),
|
H A D | perf.py | 951 # calculate spans to show 953 spans = [] 964 spans.append((last, func)) 970 spans.append((last, func)) 975 # skip lines not in spans? 976 if not annotate and not any(i+1 in s for s, _ in spans): 986 next(iter(f for _, f in spans)),
|
H A D | perfbd.py | 934 # calculate spans to show 936 spans = [] 949 spans.append((last, func)) 955 spans.append((last, func)) 960 # skip lines not in spans? 961 if not annotate and not any(i+1 in s for s, _ in spans): 971 next(iter(f for _, f in spans)),
|
/third_party/skia/third_party/externals/freetype/include/freetype/ |
H A D | ftimage.h | 804 * Working with either complete bitmaps or spans it is important to think 872 * to let client applications draw themselves the pixel spans on each 880 * The number of spans to draw on this scanline. 882 * spans :: 883 * A table of `count` spans to draw on the scanline. 889 * This callback allows client applications to directly render the spans 899 const FT_Span* spans, 963 * effectively set to the bounding box and all spans are generated. 1032 * the span drawing and composition. To optionally clip the spans, set
|
/third_party/rust/crates/syn/tests/common/ |
H A D | eq.rs | 465 spanless_eq_struct!(Crate; attrs items spans id is_placeholder);
|
/third_party/typescript/lib/ |
H A D | tsserverlibrary.js | [all...] |
H A D | tsserver.js | [all...] |
H A D | typescript.js | [all...] |
H A D | typescriptServices.js | [all...] |
/third_party/node/test/fixtures/snapshot/ |
H A D | typescript.js | [all...] |
/third_party/skia/third_party/externals/microhttpd/doc/ |
H A D | texinfo.tex | 817 % change spans more than two lines of output. To handle that, we would
|