/third_party/python/Lib/test/ |
H A D | test_utf8_mode.py | 30 def get_output(self, *args, failure=False, **kw): member in UTF8ModeTests 46 out = self.get_output('-c', code, LC_ALL=loc) 52 out = self.get_output('-X', 'utf8', '-c', code) 56 out = self.get_output('-X', 'utf8=1', '-c', code) 59 out = self.get_output('-X', 'utf8=0', '-c', code) 65 out = self.get_output('-X', 'utf8', '-c', code, 72 out = self.get_output('-c', code, PYTHONUTF8='1') 75 out = self.get_output('-c', code, PYTHONUTF8='0') 79 out = self.get_output('-X', 'utf8=0', '-c', code, PYTHONUTF8='1') 85 out = self.get_output(' [all...] |
H A D | test_faulthandler.py | 53 def get_output(self, code, filename=None, fd=None): member in FaultHandlerTests 120 output, exitcode = self.get_output(code, filename=filename, fd=fd) 360 stderr, exitcode = self.get_output(code) 376 stderr, exitcode = self.get_output(code) 491 trace, exitcode = self.get_output(code, filename, fd) 528 trace, exitcode = self.get_output(code) 570 output, exitcode = self.get_output(code, filename) 646 trace, exitcode = self.get_output(code, filename) 749 trace, exitcode = self.get_output(code, filename) 838 output, exitcode = self.get_output(cod [all...] |
H A D | test_base64.py | 762 def get_output(self, *args): member in TestMain 766 output = self.get_output('-t') 776 output = self.get_output('-e', os_helper.TESTFN) 788 output = self.get_output('-d', os_helper.TESTFN) 792 output = self.get_output('-h')
|
/third_party/ffmpeg/libavfilter/ |
H A D | dnn_interface.h | 97 int (*get_output)(void *model, const char *input_name, int input_width, int input_height, member
|
H A D | vf_convolve.c | 77 void (*get_output)(struct ConvolveContext *s, AVComplexFloat *input, AVFrame *out, member 462 static void get_output(ConvolveContext *s, AVComplexFloat *input, AVFrame *out, in get_output() function 741 s->get_output(s, s->fft_hdata_out[plane], mainpic, ow, oh, n, plane, 1.f / (n * n)); in do_convolve() 809 s->get_output = get_output; in init() 814 s->get_output = get_xoutput; in init() 819 s->get_output = get_output; in init()
|
H A D | dnn_filter_common.c | 116 return ctx->model->get_output(ctx->model->model, ctx->model_inputname, input_width, input_height, in ff_dnn_get_output()
|
/third_party/ffmpeg/libavfilter/dnn/ |
H A D | dnn_backend_native.c | 288 model->get_output = &get_output_native; in ff_dnn_load_model_native()
|
H A D | dnn_backend_openvino.c | 771 model->get_output = &get_output_ov; in ff_dnn_load_model_ov()
|
H A D | dnn_backend_tf.c | 936 model->get_output = &get_output_tf; in ff_dnn_load_model_tf()
|