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

1 2 3 4 5 67 8 91011>>

  /external/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 13 (* variant for a binary operator. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 13 (* variant for a binary operator. *)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 13 (* variant for a binary operator. *)
  /external/llvm/utils/
schedcover.py 10 import operator;
34 ordered_table = sorted(table.items(), key=operator.itemgetter(0))
  /external/python/cpython3/Lib/test/
test_dbm_dumb.py 6 import operator
218 for meth in (partial(operator.delitem, f),
219 partial(operator.setitem, f, 'b'),
220 partial(operator.getitem, f),
221 partial(operator.contains, f)):
227 for meth in (operator.methodcaller('keys'),
228 operator.methodcaller('iterkeys'),
229 operator.methodcaller('items'),
test_index.py 3 import operator
22 self.assertEqual(operator.index(self.o), -2)
23 self.assertEqual(operator.index(self.n), 2)
53 self.assertRaises(TypeError, operator.index, self.o)
54 self.assertRaises(TypeError, operator.index, self.n)
67 operator_index = operator.index(my_int)
85 n = operator.index(bad_int)
89 n = operator.index(bad_int)
test_fractions.py 7 import operator
33 def __eq__(self, other): return self._richcmp(other, operator.eq)
34 def __le__(self, other): return self._richcmp(other, operator.le)
35 def __lt__(self, other): return self._richcmp(other, operator.lt)
36 def __ge__(self, other): return self._richcmp(other, operator.ge)
37 def __gt__(self, other): return self._richcmp(other, operator.gt)
429 self.assertRaises(ZeroDivisionError, operator.pow,
434 self.assertRaises(TypeError, operator.add,
436 self.assertRaises(TypeError, operator.add,
541 self.assertRaises(TypeError, operator.gt, F(10**23), complex(10**23)
    [all...]
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 13 (* variant for a binary operator. *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 13 (* variant for a binary operator. *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 13 (* variant for a binary operator. *)
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter2/
ast.ml 13 (* variant for a binary operator. *)
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter3/
ast.ml 13 (* variant for a binary operator. *)
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter4/
ast.ml 13 (* variant for a binary operator. *)
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/
schedcover.py 10 import operator;
39 ordered_table = sorted(table.items(), key=operator.itemgetter(0))
  /external/webrtc/webrtc/base/
callback.h.pump 21 // Callbacks are invoked using operator(), just like a function or a function
41 // int operator()(int x) const { return x + k; }
78 R operator()($for j , [[P$j p$j]]) {
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
RespID.java 12 import org.bouncycastle.operator.DigestCalculator;
  /external/apache-http/src/org/apache/http/impl/conn/tsccm/
ConnPoolByRoute.java 78 /** Connection operator for this pool */
79 protected final ClientConnectionOperator operator; field in class:ConnPoolByRoute
101 public ConnPoolByRoute(final ClientConnectionOperator operator, final HttpParams params) {
103 if (operator == null) {
104 throw new IllegalArgumentException("Connection operator may not be null");
106 this.operator = operator;
320 entry = createEntry(rospl, operator);
325 entry = createEntry(rospl, operator);
481 * @param op the operator for creating a connectio
    [all...]
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
99 (* Parse the primary expression after the binary operator. *)
106 (* If BinOp binds less tightly with rhs than the operator after
107 * rhs, let the pending operator take rhs as its lhs. *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
99 (* Parse the primary expression after the binary operator. *)
106 (* If BinOp binds less tightly with rhs than the operator after
107 * rhs, let the pending operator take rhs as its lhs. *)
  /external/swiftshader/third_party/llvm-7.0/llvm/examples/OCaml-Kaleidoscope/Chapter5/
parser.ml 5 (* binop_precedence - This holds the precedence for each binary operator that is
9 (* precedence - Get the precedence of the pending binary operator token. *)
99 (* Parse the primary expression after the binary operator. *)
106 (* If BinOp binds less tightly with rhs than the operator after
107 * rhs, let the pending operator take rhs as its lhs. *)
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/lit/lit/
ShUtil.py 64 # Otherwise, lex the operator and convert to a redirection
254 operator = self.lex()
255 assert isinstance(operator, tuple) and len(operator) == 1
259 "missing argument to operator %r" % operator[0])
261 # FIXME: Operator precedence!!
262 lhs = Seq(lhs, operator[0], self.parse_pipeline())
  /external/python/setuptools/pkg_resources/_vendor/
six.py 27 import operator
565 get_method_function = operator.attrgetter(_meth_func)
566 get_method_self = operator.attrgetter(_meth_self)
567 get_function_closure = operator.attrgetter(_func_closure)
568 get_function_code = operator.attrgetter(_func_code)
569 get_function_defaults = operator.attrgetter(_func_defaults)
570 get_function_globals = operator.attrgetter(_func_globals)
586 viewkeys = operator.methodcaller("keys")
588 viewvalues = operator.methodcaller("values")
590 viewitems = operator.methodcaller("items"
    [all...]
  /external/python/setuptools/setuptools/_vendor/
six.py 27 import operator
565 get_method_function = operator.attrgetter(_meth_func)
566 get_method_self = operator.attrgetter(_meth_self)
567 get_function_closure = operator.attrgetter(_func_closure)
568 get_function_code = operator.attrgetter(_func_code)
569 get_function_defaults = operator.attrgetter(_func_defaults)
570 get_function_globals = operator.attrgetter(_func_globals)
586 viewkeys = operator.methodcaller("keys")
588 viewvalues = operator.methodcaller("values")
590 viewitems = operator.methodcaller("items"
    [all...]
  /external/python/six/
six.py 27 import operator
571 get_method_function = operator.attrgetter(_meth_func)
572 get_method_self = operator.attrgetter(_meth_self)
573 get_function_closure = operator.attrgetter(_func_closure)
574 get_function_code = operator.attrgetter(_func_code)
575 get_function_defaults = operator.attrgetter(_func_defaults)
576 get_function_globals = operator.attrgetter(_func_globals)
592 viewkeys = operator.methodcaller("keys")
594 viewvalues = operator.methodcaller("values")
596 viewitems = operator.methodcaller("items"
    [all...]
  /external/scapy/scapy/modules/
six.py 32 import operator
575 get_method_function = operator.attrgetter(_meth_func)
576 get_method_self = operator.attrgetter(_meth_self)
577 get_function_closure = operator.attrgetter(_func_closure)
578 get_function_code = operator.attrgetter(_func_code)
579 get_function_defaults = operator.attrgetter(_func_defaults)
580 get_function_globals = operator.attrgetter(_func_globals)
596 viewkeys = operator.methodcaller("keys")
598 viewvalues = operator.methodcaller("values")
600 viewitems = operator.methodcaller("items"
    [all...]

Completed in 725 milliseconds

1 2 3 4 5 67 8 91011>>