HomeSort by relevance Sort by last modified time
    Searched refs:operator (Results 176 - 200 of 504) sorted by null

1 2 3 4 5 6 78 91011>>

  /build/blueprint/parser/
parser.go 343 func (p *parser) evaluateOperator(value1, value2 Expression, operator rune,
344 pos scanner.Position) (*Operator, error) {
352 return nil, fmt.Errorf("mismatched type in operator %c: %s != %s", operator,
358 switch operator {
375 return nil, fmt.Errorf("operator %c not supported on type %s", operator, v.Type())
378 panic("unknown operator " + string(operator))
382 return &Operator{
    [all...]
  /external/python/cpython3/Lib/
fractions.py 9 import operator
296 operator and a function from the operator module.
299 __op__, __rop__ = _operator_fallbacks(just_rational_op, operator.op)
407 __add__, __radd__ = _operator_fallbacks(_add, operator.add)
415 __sub__, __rsub__ = _operator_fallbacks(_sub, operator.sub)
421 __mul__, __rmul__ = _operator_fallbacks(_mul, operator.mul)
428 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv)
612 return a._richcmp(b, operator.lt)
616 return a._richcmp(b, operator.gt
    [all...]
  /external/python/cpython2/Lib/test/
test_fractions.py 7 import operator
37 def __eq__(self, other): return self._richcmp(other, operator.eq)
38 def __le__(self, other): return self._richcmp(other, operator.le)
39 def __lt__(self, other): return self._richcmp(other, operator.lt)
40 def __ge__(self, other): return self._richcmp(other, operator.ge)
41 def __gt__(self, other): return self._richcmp(other, operator.gt)
405 operator.add, F(3,11), Decimal('3.1415926'))
409 operator.add, Decimal('3.1415926'), F(3,11))
514 self.assertRaises(TypeError, operator.gt, F(10**23), complex(10**23))
515 self.assertRaises(TypeError, operator.le, F(10**23), complex(10**23)
    [all...]
  /external/tensorflow/tensorflow/contrib/labeled_tensor/python/ops/
core_test.py 20 import operator
708 ('abs', operator.abs, math_ops.abs, core.abs_function),
709 ('neg', operator.neg, math_ops.negative, core.neg),
745 self.ops = [('logical_not', operator.invert, math_ops.logical_not,
785 ('add', operator.add, math_ops.add, core.add),
786 ('sub', operator.sub, math_ops.subtract, core.sub),
787 ('mul', operator.mul, math_ops.multiply, core.mul),
788 ('div', operator.truediv, math_ops.div, core.div),
789 ('mod', operator.mod, math_ops.mod, core.mod),
790 ('pow', operator.pow, math_ops.pow, core.pow_function)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_fractions.py 7 import operator
36 def __eq__(self, other): return self._richcmp(other, operator.eq)
37 def __le__(self, other): return self._richcmp(other, operator.le)
38 def __lt__(self, other): return self._richcmp(other, operator.lt)
39 def __ge__(self, other): return self._richcmp(other, operator.ge)
40 def __gt__(self, other): return self._richcmp(other, operator.gt)
396 operator.add, F(3,11), Decimal('3.1415926'))
501 self.assertRaises(TypeError, operator.gt, F(10**23), complex(10**23))
502 self.assertRaises(TypeError, operator.le, F(10**23), complex(10**23))
511 for op in operator.lt, operator.le, operator.gt, operator.ge:
    [all...]
  /art/test/968-default-partial-compile-gen/util-src/
generate_java.py 36 import operator
100 overrides = functools.reduce(operator.or_, map(lambda i: i.get_super_types(), tops), set())
  /device/generic/goldfish/tools/
mk_combined_img.py 7 import operator
64 partitions.sort(key=operator.itemgetter("num"))
  /device/google/cuttlefish/shared/auto/
device.mk 58 ro.cdma.home.operator.alpha=Android \
59 ro.cdma.home.operator.numeric=302780 \
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
X509CertificateHolder.java 22 import org.bouncycastle.operator.ContentVerifier;
23 import org.bouncycastle.operator.ContentVerifierProvider;
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
BasicOCSPResp.java 20 import org.bouncycastle.operator.ContentVerifier;
21 import org.bouncycastle.operator.ContentVerifierProvider;
OCSPReq.java 23 import org.bouncycastle.operator.ContentVerifier;
24 import org.bouncycastle.operator.ContentVerifierProvider;
  /external/deqp/modules/gles2/scripts/
gen-swizzles.py 25 import operator
43 # - array-like indexing with [] operator
98 self.numCombinations = reduce(operator.mul, map(len, self.lists), 1)
  /external/deqp/modules/gles3/scripts/
gen-swizzles.py 25 import operator
43 # - array-like indexing with [] operator
98 self.numCombinations = reduce(operator.mul, map(len, self.lists), 1)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 13 (* variant for a binary operator. *)
  /external/python/cpython2/Lib/ctypes/test/
test_arrays.py 35 from operator import setitem
67 from operator import getslice, delitem
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 13 (* variant for a binary operator. *)
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter5/
ast.ml 13 (* variant for a binary operator. *)
  /external/tensorflow/tensorflow/contrib/solvers/python/kernel_tests/
lanczos_test.py 56 operator = util.create_operator(a)
58 operator, steps_, orthogonalize=orthogonalize_)
least_squares_test.py 58 operator = util.create_operator(a)
59 cgls_graph = least_squares.cgls(operator, rhs, tol=tol, max_iter=max_iter)
  /cts/tests/openglperf2/
cob_exporter.py 24 class COBExporter(bpy.types.Operator, ExportHelper):
64 self.layout.operator(COBExporter.bl_idname, text="Compressed Object (.cob)").filepath = default_path
  /cts/tests/security/src/android/keystore/cts/
CertificateUtils.java 23 import org.bouncycastle.operator.jcajce.JcaContentSignerBuilder;
  /external/clang/utils/analyzer/
SumTimerInfo.py 12 from operator import itemgetter
  /external/jsilver/src/com/google/clearsilver/jsilver/compiler/
JavaExpression.java 408 public static JavaExpression infix(Type type, final String operator, final JavaExpression left,
415 out.append(" ").append(operator).append(" ");
425 public static JavaExpression prefix(Type type, final String operator,
430 out.append("(").append(operator);
  /external/u-boot/tools/binman/
image.py 11 from operator import attrgetter
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TransliteratorParser.java 406 * the END_OF_RULE character, or an operator.
426 * the limit, the END_OF_RULE character, an operator, or a
1143 char operator = 0; local
    [all...]

Completed in 547 milliseconds

1 2 3 4 5 6 78 91011>>