Searched refs:coercion (Results 1 – 25 of 44) sorted by relevance
12
/external/llvm-project/llvm/test/Transforms/NewGVN/ |
D | pr10820-xfail.ll | 3 ; NewGVN fails this due to missing load coercion
|
D | pr14166-xfail.ll | 3 ; NewGVN fails this due to missing load coercion
|
/external/python/cpython2/Misc/NEWS.d/ |
D | 2.7rc1.rst | 48 Implicit coercion for the complex type is now completely removed. (Coercion 49 for arithmetic operations was already removed in 2.7 alpha 4, but coercion
|
D | 2.7a2.rst | 116 Unicode coercion during an 'in' operation no longer masks the underlying 117 error when the coercion fails for the left hand operand.
|
D | 2.7a4.rst | 75 The complex type no longer uses implicit coercion in mixed-type binary
|
/external/python/cpython2/Include/ |
D | object.h | 138 typedef int (*coercion)(PyObject **, PyObject **); typedef 245 coercion nb_coerce;
|
/external/python/cpython2/Doc/reference/ |
D | datamodel.rst | 2165 coercion rules would become too complicated). 2252 ask the other object to attempt a coercion (but sometimes, if the implementation 2263 This section used to document the rules for coercion. As the language has 2264 evolved, the coercion rules have become hard to document precisely; documenting 2266 here are some informal guidelines regarding coercion. In Python 3, coercion 2271 If the left operand of a % operator is a string or Unicode object, no coercion 2276 It is no longer recommended to define a coercion operation. Mixed-mode 2277 operations on types that don't define coercion pass the original arguments to 2322 When either operand type defines a coercion, this coercion is called before that 2324 the coercion returns an object of a different type for the operand whose [all …]
|
D | expressions.rst | 36 coercion rules listed at :ref:`coercion-rules`. If both arguments are standard 870 type. The result type is that of the arguments after coercion. 872 With mixed operand types, the coercion rules for binary arithmetic operators 874 operands (after coercion) unless the second argument is negative; in that case,
|
/external/python/cpython3/Doc/using/ |
D | cmdline.rst | 874 implicit locale coercion) automatically enables the ``surrogateescape`` 881 Python to emit warning messages on ``stderr`` if either the locale coercion 882 activates, or else if a locale that *would* have triggered coercion is 885 Also note that even when locale coercion is disabled, or when it fails to 947 (as described for :envvar:`PYTHONCOERCECLOCALE`), and locale coercion is
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 23 Typedefs: unaryfunc, binaryfunc, ternaryfunc, inquiry, coercion, intargfunc, 484 the current type as their type, and the caller is supposed to perform a coercion 1171 coercion nb_coerce; /* Used by the coerce() function */ 1207 the coercion method specified by the :attr:`nb_coerce` member to convert the 1210 .. c:member:: coercion PyNumberMethods.nb_coerce 1222 defined type). This is the recommended way; with Python 3 coercion will
|
/external/jackson-databind/release-notes/ |
D | VERSION-2.x | 372 - Prevent String coercion of `null` in `WritableObjectId` when calling `JsonGenerator.writeObjectId… 1075 #1095: Prevent coercion of `int` from empty String to `null` if 1248 #664: Add `DeserializationFeature.ACCEPT_FLOAT_AS_INT` to prevent coercion of floating point 1943 * Minor fix wrt [Issue#11], coercion needed extra checks
|
/external/python/cpython2/Doc/whatsnew/ |
D | 2.1.rst | 511 How numeric coercion is done at the C level was significantly modified. This 516 ``PyTypeObject`` structure to indicate that they support the new coercion model. 519 arguments of differing types, and can then perform their own internal coercion.
|
/external/python/cpython2/Doc/ |
D | glossary.rst | 112 coercion 121 ``operator.add(3.0, 4.5)``. Without coercion, all arguments of even 372 coerced (see :term:`coercion`) to a common type. For example, an integer
|
/external/python/cpython3/Doc/whatsnew/ |
D | 2.1.rst | 511 How numeric coercion is done at the C level was significantly modified. This 516 ``PyTypeObject`` structure to indicate that they support the new coercion model. 519 arguments of differing types, and can then perform their own internal coercion.
|
D | 3.7.rst | 102 * :ref:`PEP 538 <whatsnew37-pep538>`, legacy C locale coercion 205 using any of the defined coercion target locales (currently ``C.UTF-8``, 209 Locale coercion is silent by default, but to assist in debugging potentially 215 While :pep:`538`'s locale coercion has the benefit of also affecting extension 253 the :pep:`538` locale coercion feature fails to change it to a UTF-8 based
|
/external/python/cpython3/Misc/NEWS.d/ |
D | 3.7.0a4.rst | 785 Adjust C locale coercion testing for the empty locale and POSIX locale cases
|
D | 3.8.0a4.rst | 1384 LC_CTYPE coercion and UTF-8 Mode are now disabled by default to fix the
|
/external/jackson-databind/ |
D | README.md | 235 // to allow coercion of JSON empty String ("") to null Object value:
|
/external/python/cpython2/Doc/library/ |
D | functions.rst | 960 The arguments must have numeric types. With mixed operand types, the coercion 962 result has the same type as the operands (after coercion) unless the second 1736 type, using the same rules as used by arithmetic operations. If coercion is not
|
/external/python/cpython3/Doc/ |
D | glossary.rst | 205 coercion 211 will raise a :exc:`TypeError`. Without coercion, all arguments of even
|
/external/python/cpython3/ |
D | configure.ac | 3554 # Check for --with-c-locale-coercion 3555 AC_MSG_CHECKING(for --with-c-locale-coercion) 3556 AC_ARG_WITH(c-locale-coercion, 3557 AS_HELP_STRING([--with-c-locale-coercion], 3558 [enable C locale coercion to a UTF-8 based locale (default is yes)]))
|
/external/python/cpython3/Doc/c-api/ |
D | init_config.rst | 846 This function enables C locale coercion (:pep:`538`) and UTF-8 Mode
|
/external/python/cpython3/Doc/library/ |
D | string.rst | 255 The *conversion* field causes a type coercion before formatting. Normally, the
|
D | functions.rst | 1290 coercion rules for binary arithmetic operators apply. For :class:`int` 1291 operands, the result has the same type as the operands (after coercion)
|
/external/python/cpython2/Objects/ |
D | typeobject.c | 4467 coercion func = (coercion)wrapped;
|
12