HomeSort by relevance Sort by last modified time
    Searched refs:operator (Results 226 - 250 of 1333) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter2/
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. *)
63 (* Parse the primary expression after the binary operator. *)
70 (* If BinOp binds less tightly with rhs than the operator after
71 * rhs, let the pending operator take rhs as its lhs. *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter3/
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. *)
63 (* Parse the primary expression after the binary operator. *)
70 (* If BinOp binds less tightly with rhs than the operator after
71 * rhs, let the pending operator take rhs as its lhs. *)
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter4/
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. *)
63 (* Parse the primary expression after the binary operator. *)
70 (* If BinOp binds less tightly with rhs than the operator after
71 * rhs, let the pending operator take rhs as its lhs. *)
  /prebuilts/gdb/darwin-x86/lib/python2.7/
fractions.py 10 import operator
282 operator and a function from the operator module.
285 __op__, __rop__ = _operator_fallbacks(just_rational_op, operator.op)
393 __add__, __radd__ = _operator_fallbacks(_add, operator.add)
401 __sub__, __rsub__ = _operator_fallbacks(_sub, operator.sub)
407 __mul__, __rmul__ = _operator_fallbacks(_mul, operator.mul)
414 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv)
415 __div__, __rdiv__ = _operator_fallbacks(_div, operator.div)
574 return a._richcmp(b, operator.lt
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
fractions.py 10 import operator
282 operator and a function from the operator module.
285 __op__, __rop__ = _operator_fallbacks(just_rational_op, operator.op)
393 __add__, __radd__ = _operator_fallbacks(_add, operator.add)
401 __sub__, __rsub__ = _operator_fallbacks(_sub, operator.sub)
407 __mul__, __rmul__ = _operator_fallbacks(_mul, operator.mul)
414 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv)
415 __div__, __rdiv__ = _operator_fallbacks(_div, operator.div)
574 return a._richcmp(b, operator.lt
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
fractions.py 10 import operator
282 operator and a function from the operator module.
285 __op__, __rop__ = _operator_fallbacks(just_rational_op, operator.op)
393 __add__, __radd__ = _operator_fallbacks(_add, operator.add)
401 __sub__, __rsub__ = _operator_fallbacks(_sub, operator.sub)
407 __mul__, __rmul__ = _operator_fallbacks(_mul, operator.mul)
414 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv)
415 __div__, __rdiv__ = _operator_fallbacks(_div, operator.div)
574 return a._richcmp(b, operator.lt
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
fractions.py 10 import operator
282 operator and a function from the operator module.
285 __op__, __rop__ = _operator_fallbacks(just_rational_op, operator.op)
393 __add__, __radd__ = _operator_fallbacks(_add, operator.add)
401 __sub__, __rsub__ = _operator_fallbacks(_sub, operator.sub)
407 __mul__, __rmul__ = _operator_fallbacks(_mul, operator.mul)
414 __truediv__, __rtruediv__ = _operator_fallbacks(_div, operator.truediv)
415 __div__, __rdiv__ = _operator_fallbacks(_div, operator.div)
574 return a._richcmp(b, operator.lt
    [all...]
  /external/python/cpython3/Lib/test/
test_bool.py 258 import operator
259 self.assertIs(operator.truth(0), False)
260 self.assertIs(operator.truth(1), True)
261 self.assertIs(operator.not_(1), False)
262 self.assertIs(operator.not_(0), True)
263 self.assertIs(operator.contains([], 1), False)
264 self.assertIs(operator.contains([1], 1), True)
265 self.assertIs(operator.lt(0, 0), False)
266 self.assertIs(operator.lt(0, 1), True)
267 self.assertIs(operator.is_(True, True), True
    [all...]
test_numeric_tower.py 7 import operator
196 for op in operator.le, operator.lt, operator.ge, operator.gt:
test_dbm_dumb.py 6 import operator
210 for meth in (partial(operator.delitem, f),
211 partial(operator.setitem, f, 'b'),
212 partial(operator.getitem, f),
213 partial(operator.contains, f)):
219 for meth in (operator.methodcaller('keys'),
220 operator.methodcaller('iterkeys'),
221 operator.methodcaller('items'),
  /external/fonttools/Lib/fontTools/ttLib/tables/
V_O_R_G_.py 5 import operator
33 names = map(operator.getitem, [glyphOrder]*self.numVertOriginYMetrics, gids)
38 list(map(operator.setitem, [vOrig]*self.numVertOriginYMetrics, names, vids))
47 gids = map(operator.getitem, [nameMap]*lenRecords, names)
50 gids = map(operator.getitem, [nameMap]*lenRecords, names)
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter7/
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. *)
103 (* If this is a unary operator, read it. *)
107 (* If the current token is not an operator, it must be a primary expr. *)
124 (* Parse the primary expression after the binary operator. *)
131 (* If BinOp binds less tightly with rhs than the operator after
132 * rhs, let the pending operator take rhs as its lhs. *)
188 'Token.Kwd op ?? "expected an operator";
197 (* Verify right number of arguments for operator. *)
199 then raise (Stream.Error "invalid number of operands for operator")
    [all...]
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter7/
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. *)
103 (* If this is a unary operator, read it. *)
107 (* If the current token is not an operator, it must be a primary expr. *)
124 (* Parse the primary expression after the binary operator. *)
131 (* If BinOp binds less tightly with rhs than the operator after
132 * rhs, let the pending operator take rhs as its lhs. *)
188 'Token.Kwd op ?? "expected an operator";
197 (* Verify right number of arguments for operator. *)
199 then raise (Stream.Error "invalid number of operands for operator")
    [all...]
  /external/tensorflow/tensorflow/contrib/solvers/python/ops/
lanczos.py 36 def lanczos_bidiag(operator,
41 """Computes a Lanczos bidiagonalization for a linear operator.
54 operator: An object representing a linear operator with attributes:
56 length 2. `shape[0]` is the dimension on the domain of the operator,
57 `shape[1]` is the dimension of the co-domain of the operator. On other
58 words, if operator represents an M x N matrix A, `shape` must contain
63 vector with the result of applying the operator to `x`, i.e. if
64 `operator` represents matrix `A`, `apply` should return `A * x`.
66 returning a vector with the result of applying the adjoint operator
    [all...]
  /packages/apps/Stk/src/com/android/stk/
StkMenuConfig.java 43 private static final String XML_OPERATOR_TAG = "operator";
122 String operator = telephony.getSimOperator(subId[0]); local
123 if (TextUtils.isEmpty(operator) || (operator.length() < 5)) {
128 int mcc = Integer.parseInt(operator.substring(0, 3));
129 int mnc = Integer.parseInt(operator.substring(3));
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/
CertificateID.java 17 import org.bouncycastle.operator.DigestCalculator;
18 import org.bouncycastle.operator.DigestCalculatorProvider;
19 import org.bouncycastle.operator.OperatorCreationException;
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/hotspot2/anqp/
HSFriendlyNameElementTest.java 48 * Helper function for appending a Operator Name to an output stream.
51 * @param operator The name of the operator
54 private void appendOperatorName(ByteArrayOutputStream stream, String operator)
56 byte[] nameBytes = operator.getBytes(StandardCharsets.UTF_8);
57 int length = I18Name.LANGUAGE_CODE_LENGTH + operator.length();
79 * Verify that HSFriendlyNameElement with a empty operator name list will be returned when
129 * containing a operator name with the maximum length.
135 // Operator name with the maximum length.
154 * operator name that exceeds the maximum length
    [all...]
  /prebuilts/misc/common/swig/include/2.0.11/python/
pycontainer.swg 116 operator()(PyObject * v, PyObject *w) const
141 operator()(const swig::SwigPtr_PyObject& v, const swig::SwigPtr_PyObject& w) const
151 operator()(const swig::SwigVar_PyObject& v, const swig::SwigVar_PyObject& w) const
425 operator T () const
442 SwigPySequence_Ref& operator=(const T& v)
457 const T* operator->() const { return &m_value; }
458 operator const T*() const { return &m_value; }
482 reference operator*() const
488 operator->() const {
489 return SwigPySequence_ArrowProxy<T>(operator*());
    [all...]
  /tools/test/connectivity/acts/framework/acts/test_utils/tel/
tel_lookup_tables.py 28 def network_preference_for_generation(generation, operator, phone_type=None):
30 return _TelTables.operator_network_tbl[operator][generation][
42 def rat_family_for_generation(generation, operator, phone_type=None):
44 return _TelTables.operator_network_tbl[operator][generation][
97 def get_voice_mail_check_number(operator):
98 return _TelTables.voice_mail_number_tbl.get(operator)
101 def get_voice_mail_count_check_function(operator):
103 operator, check_tmo_voice_mail_count)
106 def get_voice_mail_delete_digit(operator):
107 return _TelTables.voice_mail_delete_digit_tbl.get(operator, "7"
    [all...]
  /external/icu/icu4j/samples/src/com/ibm/icu/samples/text/messagepattern/
MessagePatternUtilDemo.java 132 String operator = firstResult ? "=" : "+="; local
136 prefix + operator + " \"" +
144 System.out.println(prefix + operator + " formatNumber(" + pluralNumber + ")");
155 String operator = firstResult ? "=" : "+="; local
162 System.out.println(prefix + operator + " " + argName);
166 System.out.println(prefix + operator + " \"(unsupported syntax)\"");
  /external/bart/bart/sched/
SchedAssert.py 193 operator,
207 :param operator: A binary operator function that returns
211 import operator
212 op = operator.ge
227 :type operator: function
240 return operator(node_value, expected_value)
402 operator,
410 :param operator: A binary operator function that return
    [all...]
  /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))

Completed in 566 milliseconds

1 2 3 4 5 6 7 8 91011>>