Home
last modified time | relevance | path

Searched refs:all_functions (Results 1 – 14 of 14) sorted by relevance

/aosp_15_r20/external/sandboxed-api/sandboxed_api/tools/clang_generator/
H A Dgenerator.cc72 bool all_functions = options_.function_names.empty(); in VisitFunctionDecl() local
73 if (!all_functions && in VisitFunctionDecl()
80 if (all_functions && in VisitFunctionDecl()
91 if (all_functions && source_manager.isInSystemHeader(decl_start)) { in VisitFunctionDecl()
95 if (all_functions) { in VisitFunctionDecl()
/aosp_15_r20/external/angle/scripts/
H A Dgen_proc_table.py171 all_functions = {}
174 all_functions[function] = "GL_" + function[2:]
176 all_functions[function] = "EGL_" + function[3:]
178 all_functions[function] = function
181 for func, angle_func in sorted(all_functions.items()):
/aosp_15_r20/external/toolchain-utils/afdo_redaction/
H A Dremove_cold_functions.py95 all_functions = {x.function_name for x in records}
97 (all_functions & cwp_functions) - benchmark_functions
100 (all_functions & benchmark_functions) - cwp_functions
102 common_functions = len(all_functions & benchmark_functions & cwp_functions)
103 none_functions = len(all_functions - benchmark_functions - cwp_functions)
/aosp_15_r20/external/compiler-rt/lib/sanitizer_common/scripts/
H A Dgen_dynamic_list.py69 all_functions = []
71 all_functions.extend(get_global_functions(library))
72 function_set = set(all_functions)
73 for func in all_functions:
/aosp_15_r20/external/toolchain-utils/cros_utils/
H A Dperf_diff.py300 all_functions = {}
305 if f.name in all_functions:
306 all_functions[f.name] = max(
307 all_functions[f.name], f.count
310 all_functions[f.name] = f.count
312 return _SortDictionaryByValue(all_functions)
/aosp_15_r20/external/tensorflow/tensorflow/python/keras/saving/saved_model/
H A Dserialized_attributes.py132 functions.extend(cls.all_functions)
176 if key in CommonEndpoints.all_functions:
191 for key in self.all_functions:
H A Dsave_impl.py150 for fn_name in serialized_attributes.LayerAttributes.all_functions}
H A Dload.py88 PUBLIC_ATTRIBUTES = CommonEndpoints.all_functions.union(
/aosp_15_r20/external/python/cpython3/Lib/test/
Dtest_binascii.py15 all_functions = a2b_functions + b2a_functions + ['crc32', 'crc_hqx'] variable
37 for name in all_functions:
379 for func in all_functions:
392 for func in set(all_functions) - set(a2b_functions):
/aosp_15_r20/external/python/cpython2/Lib/test/
Dtest_binascii.py13 all_functions = a2b_functions + b2a_functions + ['crc32', 'crc_hqx'] variable
35 for name in all_functions:
283 for func in all_functions:
/aosp_15_r20/external/tensorflow/tensorflow/tools/tensorflow_builder/config_detector/
H A Dconfig_detector.py516 all_functions = collections.OrderedDict(
539 for config, call_func in all_functions.items():
/aosp_15_r20/external/pytorch/torch/onnx/
H A D_onnx_supported_ops.py80 for name in registration.registry.all_functions():
/aosp_15_r20/external/pytorch/torch/onnx/_internal/
H A Dregistration.py263 def all_functions(self) -> Set[str]: member in SymbolicRegistry
/aosp_15_r20/external/pytorch/torch/fx/experimental/
H A Dsymbolic_shapes.py1754 all_functions = set()
1757 all_functions.add(func)
1758 … self._unsupported_sympy_functions = all_functions.difference(self._supported_sympy_functions)