Home
last modified time | relevance | path

Searched refs:adapted (Results 1 – 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Dmicroprotocols.c92 PyObject *adapted = PyObject_CallFunctionObjArgs(adapter, obj, NULL); in pysqlite_microprotocols_adapt() local
93 return adapted; in pysqlite_microprotocols_adapt()
98 PyObject *adapted = PyObject_CallMethod(proto, "__adapt__", "O", obj); in pysqlite_microprotocols_adapt() local
99 if (adapted) { in pysqlite_microprotocols_adapt()
100 if (adapted != Py_None) { in pysqlite_microprotocols_adapt()
101 return adapted; in pysqlite_microprotocols_adapt()
103 Py_DECREF(adapted); in pysqlite_microprotocols_adapt()
113 PyObject *adapted = PyObject_CallMethod(obj, "__conform__","O", proto); in pysqlite_microprotocols_adapt() local
114 if (adapted) { in pysqlite_microprotocols_adapt()
115 if (adapted != Py_None) { in pysqlite_microprotocols_adapt()
[all …]
Dstatement.c213 PyObject* adapted; in pysqlite_statement_bind_parameters() local
253 adapted = current_param; in pysqlite_statement_bind_parameters()
255adapted = pysqlite_microprotocols_adapt(current_param, (PyObject*)&pysqlite_PrepareProtocolType, N… in pysqlite_statement_bind_parameters()
256 if (adapted) { in pysqlite_statement_bind_parameters()
260 adapted = current_param; in pysqlite_statement_bind_parameters()
264 rc = pysqlite_statement_bind_parameter(self, i + 1, adapted, allow_8bit_chars); in pysqlite_statement_bind_parameters()
265 Py_DECREF(adapted); in pysqlite_statement_bind_parameters()
298 adapted = current_param; in pysqlite_statement_bind_parameters()
300adapted = pysqlite_microprotocols_adapt(current_param, (PyObject*)&pysqlite_PrepareProtocolType, N… in pysqlite_statement_bind_parameters()
301 if (adapted) { in pysqlite_statement_bind_parameters()
[all …]
/device/linaro/bootloader/edk2/ArmPlatformPkg/Documentation/
DArmPlatformPkg.txt5 …an be copied from ArmVExpress-CTA9x4.dsc and ArmVExpress-CTA9x4.fdf; and adapted following the req…
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/decimaltestdata/
Dextra.decTest2707 -- Triple NaN propagation (adapted from examples in fma.decTest)