Home
last modified time | relevance | path

Searched refs:or_ (Results 1 – 14 of 14) sorted by relevance

/third_party/protobuf/src/google/protobuf/stubs/
Dtemplate_util_unittest.cc107 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()
Dtemplate_util.h130 struct or_ : public integral_constant<bool, (A::value || B::value)> {
/third_party/python/Lib/
Doperator.py116 def or_(a, b): function
435 __or__ = or_
Dcopyreg.py41 return functools.reduce, (operator.or_, obj.__args__)
Dtyping.py334 return functools.reduce(operator.or_, ev_args)
1875 return functools.reduce(operator.or_, stripped_args)
/third_party/python/Lib/test/
Dtest_operator.py246 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/
Doperator.rst160 .. function:: or_(a, b)
389 | Bitwise Or | ``a | b`` | ``or_(a, b)`` |
/third_party/protobuf/python/google/protobuf/internal/
Dtest_util.py833 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/
DIceAssemblerMIPS32.h251 void or_(const Operand *OpRd, const Operand *OpRs, const Operand *OpRt);
DIceInstMIPS32.cpp998 Asm->or_(getDest(), getSrc(0), getSrc(1)); in emitIAS()
DIceAssemblerMIPS32.cpp960 void AssemblerMIPS32::or_(const Operand *OpRd, const Operand *OpRs, in or_() function in Ice::MIPS32::AssemblerMIPS32
/third_party/python/Doc/howto/
Dfunctional.rst1090 * Bitwise operations: ``and_()``, ``or_()``, ``invert()``.
/third_party/rust/crates/bindgen/bindgen-tests/tests/
Dstylo.hpp50113 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/
DHISTORY31902 functions "or" and "and" are renamed to "or_" and "and_" (since "or" and