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

1 2 3 4 5 6 78 91011>>

  /libcore/ojluni/src/main/java/java/util/stream/
ReduceOps.java 101 * @param operator The reducing function
105 makeRef(BinaryOperator<T> operator) {
106 Objects.requireNonNull(operator);
123 state = operator.apply(state, t);
241 * @param operator the combining function
245 makeInt(int identity, IntBinaryOperator operator) {
246 Objects.requireNonNull(operator);
258 state = operator.applyAsInt(state, t);
283 * @param operator the combining function
287 makeInt(IntBinaryOperator operator) {
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_bool.py 278 import operator
279 self.assertIs(operator.truth(0), False)
280 self.assertIs(operator.truth(1), True)
282 self.assertIs(operator.isCallable(0), False)
283 self.assertIs(operator.isCallable(len), True)
284 self.assertIs(operator.isNumberType(None), False)
285 self.assertIs(operator.isNumberType(0), True)
286 self.assertIs(operator.not_(1), False)
287 self.assertIs(operator.not_(0), True)
288 self.assertIs(operator.isSequenceType(0), False
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_bool.py 278 import operator
279 self.assertIs(operator.truth(0), False)
280 self.assertIs(operator.truth(1), True)
282 self.assertIs(operator.isCallable(0), False)
283 self.assertIs(operator.isCallable(len), True)
284 self.assertIs(operator.isNumberType(None), False)
285 self.assertIs(operator.isNumberType(0), True)
286 self.assertIs(operator.not_(1), False)
287 self.assertIs(operator.not_(0), True)
288 self.assertIs(operator.isSequenceType(0), False
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_bool.py 278 import operator
279 self.assertIs(operator.truth(0), False)
280 self.assertIs(operator.truth(1), True)
282 self.assertIs(operator.isCallable(0), False)
283 self.assertIs(operator.isCallable(len), True)
284 self.assertIs(operator.isNumberType(None), False)
285 self.assertIs(operator.isNumberType(0), True)
286 self.assertIs(operator.not_(1), False)
287 self.assertIs(operator.not_(0), True)
288 self.assertIs(operator.isSequenceType(0), False
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_bool.py 278 import operator
279 self.assertIs(operator.truth(0), False)
280 self.assertIs(operator.truth(1), True)
282 self.assertIs(operator.isCallable(0), False)
283 self.assertIs(operator.isCallable(len), True)
284 self.assertIs(operator.isNumberType(None), False)
285 self.assertIs(operator.isNumberType(0), True)
286 self.assertIs(operator.not_(1), False)
287 self.assertIs(operator.not_(0), True)
288 self.assertIs(operator.isSequenceType(0), False
    [all...]
  /external/bart/bart/thermal/
ThermalAssert.py 88 operator,
96 :param operator: A binary operator function that returns
100 import operator
101 op = operator.ge
135 return operator(residency, expected_value)
  /hardware/qcom/display/msm8909/libdrmutils/
Android.mk 10 LOCAL_CFLAGS := -DLOG_TAG=\"DRMUTILS\" -Wall -std=c++11 -Werror -fno-operator-names
  /hardware/qcom/display/msm8909w_3100/libdrmutils/
Android.mk 9 LOCAL_CFLAGS := -DLOG_TAG=\"DRMUTILS\" -Wall -std=c++11 -Werror -fno-operator-names
  /hardware/qcom/display/msm8998/libdrmutils/
Android.mk 9 LOCAL_CFLAGS := -DLOG_TAG=\"DRMUTILS\" -Wall -std=c++11 -Werror -fno-operator-names
  /prebuilts/go/darwin-x86/test/fixedbugs/
bug390.go 15 _ = unsafe.Pointer(x) - unsafe.Pointer(x) // ERROR "operator - not defined on unsafe.Pointer|expected integer, floating, or complex type"
  /prebuilts/go/darwin-x86/test/fixedbugs/bug448.dir/
pkg2.go 5 // Issue 3843: inlining bug due to wrong receive operator precedence.
  /prebuilts/go/linux-x86/test/fixedbugs/
bug390.go 15 _ = unsafe.Pointer(x) - unsafe.Pointer(x) // ERROR "operator - not defined on unsafe.Pointer|expected integer, floating, or complex type"
  /prebuilts/go/linux-x86/test/fixedbugs/bug448.dir/
pkg2.go 5 // Issue 3843: inlining bug due to wrong receive operator precedence.
  /external/llvm/examples/OCaml-Kaleidoscope/Chapter6/
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. *)
89 (* If this is a unary operator, read it. *)
93 (* If the current token is not an operator, it must be a primary expr. *)
110 (* Parse the unary expression after the binary operator. *)
117 (* If BinOp binds less tightly with rhs than the operator after
118 * rhs, let the pending operator take rhs as its lhs. *)
162 'Token.Kwd op ?? "expected an operator";
171 (* Verify right number of arguments for operator. *)
173 then raise (Stream.Error "invalid number of operands for operator")
    [all...]
  /external/swiftshader/third_party/LLVM/examples/OCaml-Kaleidoscope/Chapter6/
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. *)
89 (* If this is a unary operator, read it. *)
93 (* If the current token is not an operator, it must be a primary expr. *)
110 (* Parse the unary expression after the binary operator. *)
117 (* If BinOp binds less tightly with rhs than the operator after
118 * rhs, let the pending operator take rhs as its lhs. *)
162 'Token.Kwd op ?? "expected an operator";
171 (* Verify right number of arguments for operator. *)
173 then raise (Stream.Error "invalid number of operands for operator")
    [all...]
  /external/tensorflow/tensorflow/contrib/specs/python/
specs_lib.py 22 import operator
98 return Operator(operator.add, self, g)
101 return Operator(operator.mul, self, g)
124 class Operator(Composable):
125 """A wrapper for an operator.
127 This takes an operator and an argument list and returns
128 the result of applying the operator to the results of applying
144 This overloads the regular __call__ operator for currying, i.e.
    [all...]
  /external/deqp/external/vulkancts/framework/vulkan/
vkRefUtilImpl.inl 8 void Deleter<VkDeviceMemory>::operator() (VkDeviceMemory obj) const
14 void Deleter<VkFence>::operator() (VkFence obj) const
20 void Deleter<VkSemaphore>::operator() (VkSemaphore obj) const
26 void Deleter<VkEvent>::operator() (VkEvent obj) const
32 void Deleter<VkQueryPool>::operator() (VkQueryPool obj) const
38 void Deleter<VkBuffer>::operator() (VkBuffer obj) const
44 void Deleter<VkBufferView>::operator() (VkBufferView obj) const
50 void Deleter<VkImage>::operator() (VkImage obj) const
56 void Deleter<VkImageView>::operator() (VkImageView obj) const
62 void Deleter<VkShaderModule>::operator() (VkShaderModule obj) cons
    [all...]
  /external/autotest/client/site_tests/video_YouTubePage/
video_YouTubePage.py 6 import operator
123 @param op: truth or not_ operator from the standard Python operator
230 'seeking', operator.truth,
233 'seeked', operator.truth,
244 'seeking', operator.not_,
248 'seeked', operator.not_,
265 'seeking', operator.truth,
269 'seeked', operator.truth,
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
JcaContentVerifierProviderBuilder.java 1 package org.bouncycastle.operator.jcajce;
21 import org.bouncycastle.operator.ContentVerifier;
22 import org.bouncycastle.operator.ContentVerifierProvider;
23 import org.bouncycastle.operator.OperatorCreationException;
24 import org.bouncycastle.operator.OperatorStreamException;
25 import org.bouncycastle.operator.RawContentVerifier;
26 import org.bouncycastle.operator.RuntimeOperatorException;
  /external/python/cpython3/Lib/ctypes/test/
test_slicing.py 49 from operator import setitem
76 import operator
77 self.assertRaises(ValueError, operator.getitem,
79 self.assertRaises(ValueError, operator.getitem,
81 self.assertRaises(ValueError, operator.getitem,
83 self.assertRaises(ValueError, operator.getitem,
86 self.assertRaises(TypeError, operator.setitem,
143 import operator
144 self.assertRaises(TypeError, operator.setitem,
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/site-packages/setools/policyrep/
constraint.py 151 # being overused. Set previous operator at start to the
153 # operator, no parentheses are output
163 # unary operator
164 operator = op
167 stack.append([operator, "(", operand, ")"])
172 operator = op
174 # if previous operator is of higher precedence
177 stack.append([operand1, operator, operand2])
179 stack.append(["(", operand1, operator, operand2, ")"])
234 # logical operator with symbols (e.g. u1 == u2
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
analyze_dxp.py 25 import operator
92 result.sort(key=operator.itemgetter(2), reverse=True)
112 result.sort(key=operator.itemgetter(2), reverse=True)
  /external/python/cpython2/Tools/scripts/
analyze_dxp.py 26 import operator
93 result.sort(key=operator.itemgetter(2), reverse=True)
113 result.sort(key=operator.itemgetter(2), reverse=True)
  /external/python/cpython3/Tools/scripts/
analyze_dxp.py 25 import operator
92 result.sort(key=operator.itemgetter(2), reverse=True)
112 result.sort(key=operator.itemgetter(2), reverse=True)
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/ocsp/jcajce/
JcaRespID.java 11 import org.bouncycastle.operator.DigestCalculator;

Completed in 827 milliseconds

1 2 3 4 5 6 78 91011>>