Home
last modified time | relevance | path

Searched refs:filter_func (Results 1 – 5 of 5) sorted by relevance

/external/boringssl/src/util/
Dgenerate_build_files.py387 def FindCFiles(directory, filter_func): argument
396 if not filter_func(path, filename, False):
401 if not filter_func(path, dirname, True):
407 def FindHeaderFiles(directory, filter_func): argument
415 if not filter_func(path, filename, False):
420 if not filter_func(path, dirname, True):
/external/webp/src/enc/
Dalpha_enc.c113 WebPFilterFunc filter_func; in EncodeAlphaInternal() local
126 filter_func = WebPFilters[filter]; in EncodeAlphaInternal()
127 if (filter_func != NULL) { in EncodeAlphaInternal()
128 filter_func(data, width, height, width, tmp_alpha); in EncodeAlphaInternal()
/external/libmojo/third_party/jinja2/
Denvironment.py601 def compile_templates(self, target, extensions=None, filter_func=None, argument
668 for name in self.list_templates(extensions, filter_func):
695 def list_templates(self, extensions=None, filter_func=None): argument
713 if filter_func is not None:
716 filter_func = lambda x: '.' in x and \ function
718 if filter_func is not None:
719 x = ifilter(filter_func, x)
/external/autotest/client/bin/
Dpartition.py119 def get_partition_list(job, min_blocks=0, filter_func=None, exclude_swap=True, argument
171 if filter_func and not filter_func(partname):
224 filter_func=None, exclude_swap=True, argument
241 filter_func=filter_func, exclude_swap=exclude_swap, open_func=open_func)
Dpartition_unittest.py100 parts = partition.get_partition_list(job, filter_func=lambda x: False,