Searched refs:or_ (Results 1 – 14 of 14) sorted by relevance
/third_party/protobuf/src/google/protobuf/stubs/ |
D | template_util_unittest.cc | 107 value = or_<true_, true_>::value; in TEST() 110 value = or_<true_, false_>::value; in TEST() 113 value = or_<false_, true_>::value; in TEST() 116 value = or_<false_, false_>::value; in TEST()
|
D | template_util.h | 130 struct or_ : public integral_constant<bool, (A::value || B::value)> {
|
/third_party/python/Lib/ |
D | operator.py | 116 def or_(a, b): function 435 __or__ = or_
|
D | copyreg.py | 41 return functools.reduce, (operator.or_, obj.__args__)
|
D | typing.py | 334 return functools.reduce(operator.or_, ev_args) 1875 return functools.reduce(operator.or_, stripped_args)
|
/third_party/python/Lib/test/ |
D | test_operator.py | 246 self.assertRaises(TypeError, operator.or_) 247 self.assertRaises(TypeError, operator.or_, None, None) 248 self.assertEqual(operator.or_(0xa, 0x5), 0xf)
|
/third_party/python/Doc/library/ |
D | operator.rst | 160 .. function:: or_(a, b) 389 | Bitwise Or | ``a | b`` | ``or_(a, b)`` |
|
/third_party/protobuf/python/google/protobuf/internal/ |
D | test_util.py | 833 return NonStandardInteger(operator.or_(self.val, y)) 842 return NonStandardInteger(operator.or_(y, self.val))
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceAssemblerMIPS32.h | 251 void or_(const Operand *OpRd, const Operand *OpRs, const Operand *OpRt);
|
D | IceInstMIPS32.cpp | 998 Asm->or_(getDest(), getSrc(0), getSrc(1)); in emitIAS()
|
D | IceAssemblerMIPS32.cpp | 960 void AssemblerMIPS32::or_(const Operand *OpRd, const Operand *OpRs, in or_() function in Ice::MIPS32::AssemblerMIPS32
|
/third_party/python/Doc/howto/ |
D | functional.rst | 1090 * Bitwise operations: ``and_()``, ``or_()``, ``invert()``.
|
/third_party/rust/crates/bindgen/bindgen-tests/tests/ |
D | stylo.hpp | 50113 static T or_(typename Base::ValueType& aPtr, T aVal) in or_() function 50249 return Base::Intrinsics::or_(Base::mValue, aVal) | aVal; in operator |=()
|
/third_party/python/Misc/ |
D | HISTORY | 31902 functions "or" and "and" are renamed to "or_" and "and_" (since "or" and
|