Home
last modified time | relevance | path

Searched refs:custom_functions (Results 1 – 25 of 48) sorted by relevance

12

/dports/math/snns/SNNSv4.3/python/snns/
H A Dutil.py11 if not custom_functions.get(fname) :
12 custom_functions[fname]={}
13 custom_functions[fname][ftype]=(inparam,outparam,func)
15 custom_functions = {} variable
83 for key1 in custom_functions :
84 for key2 in custom_functions[key1] :
86 custom_functions[key1][key2]))
91 res = custom_functions[funcname][functype]
100 (krui.getNoOfFunctions() - len(custom_functions))]
/dports/games/emptyepsilon/EmptyEpsilon-EE-2021.06.23/src/screenComponents/
H A DcustomShipFunctions.cpp21 if (my_spaceship->custom_functions.size() != entries.size()) in checkEntries()
28 string caption = my_spaceship->custom_functions[n].caption; in checkEntries()
29 if (entries[n].name != my_spaceship->custom_functions[n].name) in checkEntries()
34 …else if (my_spaceship->custom_functions[n].type == PlayerSpaceship::CustomShipFunction::Type::Butt… in checkEntries()
42 …else if (my_spaceship->custom_functions[n].type == PlayerSpaceship::CustomShipFunction::Type::Info) in checkEntries()
72 for(PlayerSpaceship::CustomShipFunction& csf : my_spaceship->custom_functions) in createEntries()
/dports/www/py-libsass/libsass-0.21.0/
H A Dsass.py241 precision, custom_functions, importers, source_map_contents, argument
644 custom_functions = kwargs.pop('custom_functions', ())
645 if isinstance(custom_functions, collections_abc.Mapping):
646 custom_functions = [
648 for name, lambda_ in custom_functions.items()
651 custom_functions,
654 custom_functions = [
657 for func in custom_functions
665 'not {1!r}'.format(SassFunction, custom_functions),
690 custom_functions, indented, importers,
[all …]
H A D_sass.c397 struct Sass_Options* options, PyObject* custom_functions in _add_custom_functions() argument
401 PyList_Size(custom_functions) in _add_custom_functions()
403 for (i = 0; i < PyList_Size(custom_functions); i += 1) { in _add_custom_functions()
404 PyObject* sass_function = PyList_GetItem(custom_functions, i); in _add_custom_functions()
522 PyObject *custom_functions; in PySass_compile_string() local
531 &custom_functions, &indented, &custom_importers, in PySass_compile_string()
554 _add_custom_functions(options, custom_functions); in PySass_compile_string()
581 PyObject *source_map_filename, *custom_functions, *custom_importers, in PySass_compile_filename() local
588 &source_map_filename, &custom_functions, in PySass_compile_filename()
626 _add_custom_functions(options, custom_functions); in PySass_compile_filename()
H A Dsasstests.py1293 custom_functions = frozenset([ variable
1357 custom_functions=custom_functions,
1362 custom_functions=custom_function_map,
1368 custom_functions=custom_function_set,
/dports/www/py-django-libsass/django-libsass-0.7/
H A Ddjango_libsass.py110 custom_functions = CUSTOM_FUNCTIONS.copy()
111 custom_functions.update(kwargs.get('custom_functions', {}))
112 kwargs['custom_functions'] = custom_functions
/dports/net/google-cloud-sdk/google-cloud-sdk/lib/third_party/jmespath/
H A Dvisitor.py61 def __init__(self, dict_cls=None, custom_functions=None): argument
71 self.custom_functions = custom_functions
120 if options.custom_functions is not None:
121 self._functions = self._options.custom_functions
/dports/devel/py-jmespath/jmespath-0.10.0/jmespath/
H A Dvisitor.py61 def __init__(self, dict_cls=None, custom_functions=None): argument
71 self.custom_functions = custom_functions
120 if options.custom_functions is not None:
121 self._functions = self._options.custom_functions
/dports/devel/pytype/pytype-2021.9.9/pytype/typeshed/stubs/jmespath/jmespath/
H A Dvisitor.pyi5 custom_functions: Any
6 def __init__(self, dict_cls: Any | None = ..., custom_functions: Any | None = ...) -> None: ...
/dports/sysutils/py-azure-cli/azure-cli-2.29.2/azure/cli/command_modules/acs/
H A D_format.py114 …return parsed.search(result, Options(dict_cls=OrderedDict, custom_functions=_custom_functions(prev…
135 dict_cls=OrderedDict, custom_functions=_custom_functions(preview)))
/dports/math/py-sympy/sympy-1.9/sympy/printing/tests/
H A Dtest_rust.py346 custom_functions = {
350 assert rust_code(ceiling(x), user_functions=custom_functions) == "x.ceil()"
351 assert rust_code(Abs(x), user_functions=custom_functions) == "fabs(x)"
352 assert rust_code(Abs(n), user_functions=custom_functions) == "abs(n)"
H A Dtest_rcode.py114 custom_functions = {
118 assert rcode(ceiling(x), user_functions=custom_functions) == "myceil(x)"
119 assert rcode(Abs(x), user_functions=custom_functions) == "fabs(x)"
120 assert rcode(Abs(n), user_functions=custom_functions) == "abs(n)"
H A Dtest_c.py159 custom_functions = {
163 assert ccode(ceiling(x), user_functions=custom_functions) == "ceil(x)"
164 assert ccode(Abs(x), user_functions=custom_functions) == "fabs(x)"
165 assert ccode(Abs(n), user_functions=custom_functions) == "abs(n)"
/dports/databases/libdbi/libdbi-0.9.0/drivers/example/
H A Ddbd_example.c62 static const char *custom_functions[] = {NULL}; // TODO variable
87 *_custom_functions = custom_functions; in dbd_register_driver()
/dports/databases/phpliteadmin/
H A Dphpliteadmin.config.sample.php57 $custom_functions = array( variable
/dports/games/emptyepsilon/EmptyEpsilon-EE-2021.06.23/src/spaceObjects/
H A DplayerSpaceship.cpp378 registerMemberReplication(&custom_functions); in PlayerSpaceship()
1061 custom_functions.emplace_back(); in addCustomButton()
1062 CustomShipFunction& csf = custom_functions.back(); in addCustomButton()
1073 custom_functions.emplace_back(); in addCustomInfo()
1074 CustomShipFunction& csf = custom_functions.back(); in addCustomInfo()
1084 custom_functions.emplace_back(); in addCustomMessage()
1085 CustomShipFunction& csf = custom_functions.back(); in addCustomMessage()
1095 custom_functions.emplace_back(); in addCustomMessageWithCallback()
1096 CustomShipFunction& csf = custom_functions.back(); in addCustomMessageWithCallback()
1106 for(auto it = custom_functions.begin(); it != custom_functions.end();) in removeCustom()
[all …]
/dports/math/py-Diofant/Diofant-0.13.0/diofant/tests/printing/
H A Dtest_ccode.py124 custom_functions = {
128 assert ccode(ceiling(x), user_functions=custom_functions) == 'ceil(x)'
129 assert ccode(abs(x), user_functions=custom_functions) == 'fabs(x)'
130 assert ccode(abs(n), user_functions=custom_functions) == 'abs(n)'
/dports/databases/libdbi-drivers/libdbi-drivers-0.9.0/drivers/msql/
H A Ddbd_msql.c64 static const char *custom_functions[] = {NULL}; variable
78 *_custom_functions = custom_functions; in dbd_register_driver()
/dports/games/emptyepsilon/EmptyEpsilon-EE-2021.06.23/src/screens/
H A DcrewStationScreen.cpp52 for(PlayerSpaceship::CustomShipFunction& csf : my_spaceship->custom_functions) in CrewStationScreen()
192 for(PlayerSpaceship::CustomShipFunction& csf : my_spaceship->custom_functions) in update()
/dports/databases/libdbi/libdbi-0.9.0/src/
H A Ddbi_main.c359 custom = driver->custom_functions; in dbi_driver_specific_function()
1393 driver->custom_functions = NULL; /* in case no custom functions are available */ in _get_driver()
1437 if (driver->custom_functions == NULL) { in _get_driver()
1438 driver->custom_functions = custom; in _get_driver()
1455 cur = driver->custom_functions; in _free_custom_functions()
1463 driver->custom_functions = NULL; in _free_custom_functions()
/dports/databases/libdbi/libdbi-0.9.0/include/dbi/
H A Ddbi-dev.h156 dbi_custom_function_t *custom_functions; member
/dports/databases/libdbi-drivers/libdbi-drivers-0.9.0/drivers/firebird/
H A Ddbd_firebird.c75 static const char *custom_functions[] = FIREBIRD_CUSTOM_FUNCTIONS;
85 *_custom_functions = custom_functions;
/dports/databases/libdbi-drivers/libdbi-drivers-0.9.0/drivers/mysql/
H A Ddbd_mysql.c66 static const char *custom_functions[] = MYSQL_CUSTOM_FUNCTIONS; variable
120 *_custom_functions = custom_functions; in dbd_register_driver()
/dports/databases/libdbi-drivers/libdbi-drivers-0.9.0/drivers/pgsql/
H A Ddbd_pgsql.c68 static const char *custom_functions[] = PGSQL_CUSTOM_FUNCTIONS; variable
157 *_custom_functions = custom_functions; in dbd_register_driver()
/dports/mail/rainloop-community/rainloop-community-php74-1.16.0_1/rainloop/v/1.16.0/app/libraries/lessphp/
H A DREADME.md67 [4]: http://leafo.net/lessphp/docs/#custom_functions

12