HomeSort by relevance Sort by last modified time
    Searched refs:filter_func (Results 1 - 7 of 7) sorted by null

  /external/mesa3d/src/gallium/drivers/softpipe/
sp_tex_sample.h 61 typedef void (*filter_func)(struct tgsi_sampler *tgsi_sampler, typedef
126 filter_func mip_filter;
127 filter_func compare;
128 filter_func sample_target;
  /test/vts-testcase/kernel/ltp/
test_cases_parser.py 38 def __init__(self, data_path, filter_func, disabled_tests, staging_tests):
40 self._filter_func = filter_func
  /external/webp/src/enc/
alpha_enc.c 113 WebPFilterFunc filter_func; local
126 filter_func = WebPFilters[filter];
127 if (filter_func != NULL) {
128 filter_func(data, width, height, width, tmp_alpha);
  /external/libmojo/third_party/jinja2/
environment.py 601 def compile_templates(self, target, extensions=None, filter_func=None,
610 `extensions` and `filter_func` are passed to :meth:`list_templates`.
668 for name in self.list_templates(extensions, filter_func):
695 def list_templates(self, extensions=None, filter_func=None):
703 templates, or a `filter_func` can be provided which is a callable that
713 if filter_func is not None:
714 raise TypeError('either extensions or filter_func '
716 filter_func = lambda x: '.' in x and \
718 if filter_func is not None:
719 x = ifilter(filter_func, x
    [all...]
  /external/autotest/client/bin/
partition_unittest.py 100 parts = partition.get_partition_list(job, filter_func=lambda x: False,
partition.py 119 def get_partition_list(job, min_blocks=0, filter_func=None, exclude_swap=True,
130 @param filter_func: A callable that returns True if a partition is
171 if filter_func and not filter_func(partname):
224 filter_func=None, exclude_swap=True,
236 @param job, min_blocks, filter_func, exclude_swap, open_func: Forwarded
241 filter_func=filter_func, exclude_swap=exclude_swap, open_func=open_func)
    [all...]
  /external/boringssl/src/util/
generate_build_files.py 470 def FindCFiles(directory, filter_func):
472 files that pass filter_func."""
479 if not filter_func(filename, False):
484 if not filter_func(dirname, True):
490 def FindHeaderFiles(directory, filter_func):
491 """Recurses through directory and returns a list of paths to all the header files that pass filter_func."""
498 if not filter_func(filename, False):
503 if not filter_func(dirname, True):

Completed in 300 milliseconds