Searched refs:coerced (Results 1 – 17 of 17) sorted by relevance
/external/python/cpython2/Objects/ |
D | classobject.c | 1458 PyObject *coerced = NULL; in half_binop() local 1485 coerced = PyEval_CallObject(coercefunc, args); in half_binop() 1488 if (coerced == NULL) { in half_binop() 1491 if (coerced == Py_None || coerced == Py_NotImplemented) { in half_binop() 1492 Py_DECREF(coerced); in half_binop() 1495 if (!PyTuple_Check(coerced) || PyTuple_Size(coerced) != 2) { in half_binop() 1496 Py_DECREF(coerced); in half_binop() 1501 v1 = PyTuple_GetItem(coerced, 0); in half_binop() 1502 w = PyTuple_GetItem(coerced, 1); in half_binop() 1516 Py_DECREF(coerced); in half_binop() [all …]
|
D | listsort.txt | 700 type of the right? do they need to be coerced to a common type? where's the
|
/external/guava/guava-tests/test/com/google/common/net/ |
D | InetAddressesTest.java | 634 InetAddress coerced = InetAddresses.getCoercedIPv4Address( in testGetCoercedIPv4Address() local 636 assertTrue(0xe0000000 <= InetAddresses.coerceToInteger(coerced)); in testGetCoercedIPv4Address() 637 assertTrue(InetAddresses.coerceToInteger(coerced) <= 0xfffffffe); in testGetCoercedIPv4Address()
|
/external/llvm/lib/Target/Sparc/ |
D | SparcCallingConv.td | 86 // Two ints in a struct are simply coerced to i64: 89 // IR: declare void f(i64 %i0.coerced)
|
/external/protobuf/src/google/protobuf/util/internal/ |
D | json_stream_parser.cc | 158 char* coerced = internal::UTF8CoerceToStructurallyValid(leftover_, utf8.get(), ' '); in FinishParse() local 159 p_ = json_ = StringPiece(coerced, leftover_.size()); in FinishParse()
|
/external/python/cpython2/Doc/library/ |
D | email.charset.rst | 33 Optional *input_charset* is as described below; it is always coerced to lower 191 Returns *input_charset* as a string coerced to lower
|
D | easydialogs.rst | 202 *max* if the latter is provided. *value* is first coerced between 0 and 213 :attr:`curval` is coerced between 0 and :attr:`maxval` if incrementing causes it
|
D | email.message.rst | 319 Return the message's content type. The returned string is coerced to 511 coerced to lower case. If there is no :mailheader:`Content-Type` header, or if
|
D | json.rst | 208 coerced to strings. As a result of this, if a dictionary is converted
|
D | decimal.rst | 372 compared, sorted, and coerced to another type (such as :class:`float` or
|
/external/llvm/test/CodeGen/Mips/ |
D | inlineasm-operand-code.ll | 36 ; This is _also_ -3 because uimm16 values are silently coerced to simm16 when
|
/external/python/cpython2/Doc/ |
D | glossary.rst | 371 coerced (see :term:`coercion`) to a common type. For example, an integer
|
/external/python/cpython2/Doc/reference/ |
D | expressions.rst | 35 arguments are converted to a common type," the arguments are coerced using the
|
D | datamodel.rst | 1374 Arguments to rich comparison methods are never coerced.
|
/external/python/cpython2/Misc/ |
D | cheatsheet | 143 u'hello' + ' world' --> u'hello world' (coerced to unicode)
|
D | HISTORY | 2313 an integer was compared to a float, the integer was coerced to a float.
|
/external/jline/src/src/test/resources/jline/example/ |
D | english.gz |
|