/third_party/vulkan-loader/tests/ |
H A D | loader_unknown_ext_tests.cpp | 131 // Add function_count strings to the func_names vector, starting at function_start place. Essentially a utility for filling 133 void add_function_names(std::vector<std::string>& func_names, uint32_t function_count, uint32_t function_start = 0) { in add_function_names() argument 135 func_names.push_back(std::string("vkNotIntRealFuncTEST_") + std::to_string(i++)); in add_function_names() 136 func_names.push_back(std::string("vkNotIntRealIntFuncTEST_") + std::to_string(i++)); in add_function_names() 137 func_names.push_back(std::string("vkIntNotIntRealFloatFuncTEST_") + std::to_string(i++)); in add_function_names() 138 func_names.push_back(std::string("vkNotRealFuncPointerPointerTEST_") + std::to_string(i++)); in add_function_names() 139 func_names.push_back(std::string("vkNotRealFuncTEST_pointer_pointer_int_int_float_float_char_char_char_") + in add_function_names() 146 void fill_implementation_functions(std::vector<VulkanFunction>& function_list, std::vector<std::string>& func_names, in fill_implementation_functions() argument 149 function_list.push_back(VulkanFunction{func_names.at(i++), to_vkVoidFunction(funcs.func_zero)}); in fill_implementation_functions() 150 function_list.push_back(VulkanFunction{func_names in fill_implementation_functions() 160 fill_device_intercept_functions(TestLayer& layer, std::vector<std::string>& func_names, FunctionStruct const& funcs, uint32_t function_count, uint32_t function_start = 0) fill_device_intercept_functions() argument 173 fill_phys_dev_intercept_functions(TestLayer& layer, std::vector<std::string>& func_names, FunctionStruct const& funcs, uint32_t function_count, uint32_t function_start = 0) fill_phys_dev_intercept_functions() argument 185 check_custom_functions(FunctionLoader& loader, ParentType parent, DispatchableHandleType handle, FunctionStruct const&, std::vector<std::string>& func_names, uint32_t function_count, uint32_t function_start = 0) check_custom_functions() argument 216 check_layer_custom_functions(FunctionLoader& loader, ParentType parent, DispatchableHandleType handle, TestLayer& layer, FunctionStruct const&, std::vector<std::string>& func_names, uint32_t function_count, uint32_t function_start = 0) check_layer_custom_functions() argument 256 check_layer_custom_functions_no_implementation(FunctionLoader& loader, ParentType parent, DispatchableHandleType handle, TestLayer& layer, FunctionStruct const&, std::vector<std::string>& func_names, uint32_t function_count, uint32_t function_start = 0) check_layer_custom_functions_no_implementation() argument 294 check_layer_custom_functions_no_interception(FunctionLoader& loader, ParentType parent, DispatchableHandleType handle, TestLayer& layer, FunctionStruct const&, std::vector<std::string>& func_names, uint32_t function_count, uint32_t function_start = 0) check_layer_custom_functions_no_interception() argument [all...] |
/third_party/python/Lib/test/ |
H A D | _test_embed_structseq.py | 40 func_names = ['get_asyncgen_hooks'] # AsyncGenHooksType 42 func_names.append('getwindowsversion') # WindowsVersionType 43 for func_name in func_names:
|
H A D | test_heapq.py | 17 func_names = ['heapify', 'heappop', 'heappush', 'heappushpop', 'heapreplace', variable 22 for fname in func_names: 27 for fname in func_names:
|
H A D | test_statistics.py | 190 func_names = ['_normal_dist_inv_cdf'] variable in TestModules 193 for fname in self.func_names: 198 for fname in self.func_names:
|
H A D | test_typing.py | 6159 func_names = ['_idfunc'] variable in TestModules 6162 for fname in self.func_names: 6167 for fname in self.func_names:
|
/third_party/ffmpeg/libavfilter/ |
H A D | avf_showcqt.c | 230 const char *func_names[] = { "a_weighting", "b_weighting", "c_weighting", NULL }; in init_volume() local 242 if ((ret = av_expr_parse(&sono, s->sono_v, sono_names, func_names, funcs, NULL, NULL, 0, s->ctx)) < 0) in init_volume() 245 if ((ret = av_expr_parse(&bar, s->bar_v, bar_names, func_names, funcs, NULL, NULL, 0, s->ctx)) < 0) in init_volume() 461 const char *func_names[] = { "midi", "r", "g", "b", NULL }; in init_axis_color() local 480 if ((ret = av_expr_parse(&expr, s->fontcolor, var_names, func_names, funcs, NULL, NULL, 0, s->ctx)) < 0) { in init_axis_color()
|