HomeSort by relevance Sort by last modified time
    Searched refs:replaced (Results 151 - 175 of 539) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/python/cpython2/Lib/pydoc_data/
topics.py 10 'binary': u'\nBinary arithmetic operations\n****************************\n\nThe binary arithmetic operations have the conventional priority\nlevels. Note that some of these operations also apply to certain non-\nnumeric types. Apart from the power operator, there are only two\nlevels, one for multiplicative operators and one for additive\noperators:\n\n m_expr ::= u_expr | m_expr "*" u_expr | m_expr "//" u_expr | m_expr "/" u_expr\n | m_expr "%" u_expr\n a_expr ::= m_expr | a_expr "+" m_expr | a_expr "-" m_expr\n\nThe "*" (multiplication) operator yields the product of its arguments.\nThe arguments must either both be numbers, or one argument must be an\ninteger (plain or long) and the other must be a sequence. In the\nformer case, the numbers are converted to a common type and then\nmultiplied together. In the latter case, sequence repetition is\nperformed; a negative repetition factor yields an empty sequence.\n\nThe "/" (division) and "//" (floor division) operators yield the\nquotient of their arguments. The numeric arguments are first\nconverted to a common type. Plain or long integer division yields an\ninteger of the same type; the result is that of mathematical division\nwith the \'floor\' function applied to the result. Division by zero\nraises the "ZeroDivisionError" exception.\n\nThe "%" (modulo) operator yields the remainder from the division of\nthe first argument by the second. The numeric arguments are first\nconverted to a common type. A zero right argument raises the\n"ZeroDivisionError" exception. The arguments may be floating point\nnumbers, e.g., "3.14%0.7" equals "0.34" (since "3.14" equals "4*0.7 +\n0.34".) The modulo operator always yields a result with the same sign\nas its second operand (or zero); the absolute value of the result is\nstrictly smaller than the absolute value of the second operand [2].\n\nThe integer division and modulo operators are connected by the\nfollowing identity: "x == (x/y)*y + (x%y)". Integer division and\nmodulo are also connected with the built-in function "divmod()":\n"divmod(x, y) == (x/y, x%y)". These identities don\'t hold for\nfloating point numbers; there similar identities hold approximately\nwhere "x/y" is replaced by "floor(x/y)" or "floor(x/y) - 1" [3].\n\nIn addition to performing the modulo operation on numbers, the "%"\noperator is also overloaded by string and unicode objects to perform\nstring formatting (also known as interpolation). The syntax for string\nformatting is described in the Python Library Reference, section\nString Formatting Operations.\n\nDeprecated since version 2.3: The floor division operator, the modulo\noperator, and the "divmod()" function are no longer defined for\ncomplex numbers. Instead, convert to a floating point number using\nthe "abs()" function if appropriate.\n\nThe "+" (addition) operator yields the sum of its arguments. The\narguments must either both be numbers or both sequences of the same\ntype. In the former case, the numbers are converted to a common type\nand then added together. In the latter case, the sequences are\nconcatenated.\n\nThe "-" (subtraction) operator yields the difference of its arguments.\nThe numeric arguments are first converted to a common type.\n',
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/pydoc_data/
topics.py 9 'binary': u'\nBinary arithmetic operations\n****************************\n\nThe binary arithmetic operations have the conventional priority\nlevels. Note that some of these operations also apply to certain non-\nnumeric types. Apart from the power operator, there are only two\nlevels, one for multiplicative operators and one for additive\noperators:\n\n m_expr ::= u_expr | m_expr "*" u_expr | m_expr "//" u_expr | m_expr "/" u_expr\n | m_expr "%" u_expr\n a_expr ::= m_expr | a_expr "+" m_expr | a_expr "-" m_expr\n\nThe ``*`` (multiplication) operator yields the product of its\narguments. The arguments must either both be numbers, or one argument\nmust be an integer (plain or long) and the other must be a sequence.\nIn the former case, the numbers are converted to a common type and\nthen multiplied together. In the latter case, sequence repetition is\nperformed; a negative repetition factor yields an empty sequence.\n\nThe ``/`` (division) and ``//`` (floor division) operators yield the\nquotient of their arguments. The numeric arguments are first\nconverted to a common type. Plain or long integer division yields an\ninteger of the same type; the result is that of mathematical division\nwith the \'floor\' function applied to the result. Division by zero\nraises the ``ZeroDivisionError`` exception.\n\nThe ``%`` (modulo) operator yields the remainder from the division of\nthe first argument by the second. The numeric arguments are first\nconverted to a common type. A zero right argument raises the\n``ZeroDivisionError`` exception. The arguments may be floating point\nnumbers, e.g., ``3.14%0.7`` equals ``0.34`` (since ``3.14`` equals\n``4*0.7 + 0.34``.) The modulo operator always yields a result with\nthe same sign as its second operand (or zero); the absolute value of\nthe result is strictly smaller than the absolute value of the second\noperand [2].\n\nThe integer division and modulo operators are connected by the\nfollowing identity: ``x == (x/y)*y + (x%y)``. Integer division and\nmodulo are also connected with the built-in function ``divmod()``:\n``divmod(x, y) == (x/y, x%y)``. These identities don\'t hold for\nfloating point numbers; there similar identities hold approximately\nwhere ``x/y`` is replaced by ``floor(x/y)`` or ``floor(x/y) - 1`` [3].\n\nIn addition to performing the modulo operation on numbers, the ``%``\noperator is also overloaded by string and unicode objects to perform\nstring formatting (also known as interpolation). The syntax for string\nformatting is described in the Python Library Reference, section\n*String Formatting Operations*.\n\nDeprecated since version 2.3: The floor division operator, the modulo\noperator, and the ``divmod()`` function are no longer defined for\ncomplex numbers. Instead, convert to a floating point number using\nthe ``abs()`` function if appropriate.\n\nThe ``+`` (addition) operator yields the sum of its arguments. The\narguments must either both be numbers or both sequences of the same\ntype. In the former case, the numbers are converted to a common type\nand then added together. In the latter case, the sequences are\nconcatenated.\n\nThe ``-`` (subtraction) operator yields the difference of its\narguments. The numeric arguments are first converted to a common\ntype.\n',
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/cgo/
doc.go 84 will be replaced by the absolute path to the directory containing the source
129 or misaligned data, are omitted in the Go struct, replaced by
604 references to C.xxx replaced with names like _Cfunc_xxx or _Ctype_xxx.
    [all...]
  /prebuilts/go/linux-x86/src/cmd/cgo/
doc.go 84 will be replaced by the absolute path to the directory containing the source
129 or misaligned data, are omitted in the Go struct, replaced by
604 references to C.xxx replaced with names like _Cfunc_xxx or _Ctype_xxx.
    [all...]
  /prebuilts/sdk/tools/jetifier/jetifier-standalone/lib/
gson-2.8.0.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.6.2/
gson-2.6.2.jar 
  /prebuilts/tools/common/m2/repository/com/google/code/gson/gson/2.8.0/
gson-2.8.0.jar 
  /device/linaro/bootloader/edk2/
Edk2Setup.bat 377 @REM copied or replaced from the WORKSPACE\BaseTools\Conf directories' template files.
  /external/autotest/frontend/afe/
rpc_interface.py 320 replaced = models.ReplacedLabel.objects.filter(label__id__in=label_ids)
321 replaced_ids = {r.label_id for r in replaced}
    [all...]
  /external/protobuf/csharp/src/Google.Protobuf/WellKnownTypes/
Api.cs 641 /// modified as follows. Any version prefix will be replaced by the
  /external/protobuf/csharp/src/Google.Protobuf.Test/
CodedInputStreamTest.cs 339 /// is thrown. Instead, the invalid bytes are replaced with the Unicode
  /external/wpa_supplicant_8/hostapd/
Android.mk 431 # replaced with another file implementating the interface specified in
  /prebuilts/go/darwin-x86/src/cmd/go/internal/get/
get.go 271 // for p has been replaced in the package cache.
  /prebuilts/go/darwin-x86/src/runtime/
profbuf.go 42 // future writes are discarded and replaced in the output stream by an
  /prebuilts/go/darwin-x86/src/syscall/
exec_linux.go 167 // the child was replaced.
mksyscall_windows.go 15 like func declarations if //sys is replaced by func, but:
  /prebuilts/go/linux-x86/src/cmd/go/internal/get/
get.go 271 // for p has been replaced in the package cache.
  /prebuilts/go/linux-x86/src/runtime/
profbuf.go 42 // future writes are discarded and replaced in the output stream by an
  /prebuilts/go/linux-x86/src/syscall/
exec_linux.go 167 // the child was replaced.
mksyscall_windows.go 15 like func declarations if //sys is replaced by func, but:
  /prebuilts/gradle-plugin/com/android/tools/build/apkzlib/3.2.0-alpha16/
apkzlib-3.2.0-alpha16.jar 
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/gc/
asm_test.go 1201 // Test that small memmove was replaced with direct movs
1893 // Test that small memmove was replaced with direct movs
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/gc/
asm_test.go 1201 // Test that small memmove was replaced with direct movs
1893 // Test that small memmove was replaced with direct movs
    [all...]
  /external/caliper/lib/
gson-2.2.2.jar 
  /prebuilts/devtools/tools/lib/
gson-2.2.4.jar 

Completed in 1285 milliseconds

1 2 3 4 5 67 8 91011>>