Searched refs:filter_func (Results 1 - 8 of 8) sorted by relevance
/third_party/ffmpeg/libavfilter/ |
H A D | af_bs2b.c | 35 typedef void (*filter_func)(t_bs2bdp bs2bdp, uint8_t *sample, int n); typedef 46 filter_func filter; 163 bs2b->filter = (filter_func) bs2b_cross_feed_u8; in config_output() 166 bs2b->filter = (filter_func) bs2b_cross_feed_s16; in config_output() 169 bs2b->filter = (filter_func) bs2b_cross_feed_s32; in config_output() 172 bs2b->filter = (filter_func) bs2b_cross_feed_f; in config_output() 175 bs2b->filter = (filter_func) bs2b_cross_feed_d; in config_output()
|
/third_party/node/deps/v8/third_party/jinja2/ |
H A D | environment.py | 688 filter_func=None, 700 `extensions` and `filter_func` are passed to :meth:`list_templates`. 769 for name in self.list_templates(extensions, filter_func): 794 def list_templates(self, extensions=None, filter_func=None): 802 templates, or a `filter_func` can be provided which is a callable that 813 if filter_func is not None: 815 "either extensions or filter_func can be passed, but not both" 818 def filter_func(x): function 821 if filter_func is not None: 822 names = [name for name in names if filter_func(nam [all...] |
/third_party/node/tools/inspector_protocol/jinja2/ |
H A D | environment.py | 638 def compile_templates(self, target, extensions=None, filter_func=None, 647 `extensions` and `filter_func` are passed to :meth:`list_templates`. 706 for name in self.list_templates(extensions, filter_func): 733 def list_templates(self, extensions=None, filter_func=None): 741 templates, or a `filter_func` can be provided which is a callable that 751 if filter_func is not None: 752 raise TypeError('either extensions or filter_func ' 754 filter_func = lambda x: '.' in x and \ 756 if filter_func is not None: 757 x = list(ifilter(filter_func, [all...] |
/third_party/skia/third_party/externals/jinja2/ |
H A D | environment.py | 688 filter_func=None, 700 `extensions` and `filter_func` are passed to :meth:`list_templates`. 769 for name in self.list_templates(extensions, filter_func): 794 def list_templates(self, extensions=None, filter_func=None): 802 templates, or a `filter_func` can be provided which is a callable that 813 if filter_func is not None: 815 "either extensions or filter_func can be passed, but not both" 818 def filter_func(x): function 821 if filter_func is not None: 822 names = [name for name in names if filter_func(nam [all...] |
/third_party/skia/third_party/externals/libwebp/src/enc/ |
H A D | alpha_enc.c | 116 WebPFilterFunc filter_func; in EncodeAlphaInternal() local 129 filter_func = WebPFilters[filter]; in EncodeAlphaInternal() 130 if (filter_func != NULL) { in EncodeAlphaInternal() 131 filter_func(data, width, height, width, tmp_alpha); in EncodeAlphaInternal()
|
/third_party/jinja2/ |
H A D | environment.py | 819 filter_func: t.Optional[t.Callable[[str], bool]] = None, 830 `extensions` and `filter_func` are passed to :meth:`list_templates`. 873 for name in self.list_templates(extensions, filter_func): 896 filter_func: t.Optional[t.Callable[[str], bool]] = None, 905 templates, or a `filter_func` can be provided which is a callable that 917 if filter_func is not None: 919 "either extensions or filter_func can be passed, but not both" 922 def filter_func(x: str) -> bool: function 925 if filter_func is not None: 926 names = [name for name in names if filter_func(nam [all...] |
/third_party/mbedtls/tests/scripts/ |
H A D | audit-validity-dates.py | 453 filter_func = lambda d: (start_date < d.not_valid_before) or \ 459 filter_func = None 462 for d in sorted(filter(filter_func, audit_results.values()), key=sortby_end):
|
/third_party/lzma/C/ |
H A D | XzDec.c | 81 Xz_Func_BcFilterStateBase_Filter filter_func;
member 189 return p->filter_func(&p->base, data, size);
in XzBcFilterState_Filter() 244 p->bufConv = p->filter_func(&p->base, p->buf, p->bufTotal);
in XzBcFilterState_Code2() 291 decoder->filter_func = func;
in Xz_StateCoder_Bc_SetFromMethod_Func()
|
Completed in 11 milliseconds