HomeSort by relevance Sort by last modified time
    Searched refs:or_ (Results 1 - 25 of 54) sorted by null

1 2 3

  /external/protobuf/src/google/protobuf/stubs/
template_util_unittest.cc 107 value = or_<true_, true_>::value;
110 value = or_<true_, false_>::value;
113 value = or_<false_, true_>::value;
116 value = or_<false_, false_>::value;
template_util.h 127 // or_ is a template || operator.
128 // or_<A, B>::value evaluates "A::value || B::value".
130 struct or_ : public integral_constant<bool, (A::value || B::value)> { struct in namespace:google::protobuf::internal
  /prebuilts/misc/darwin-x86_64/protobuf2.5/include/google/protobuf/stubs/
template_util.h 127 // or_ is a template || operator.
128 // or_<A, B>::value evaluates "A::value || B::value".
130 struct or_ : public integral_constant<bool, (A::value || B::value)> { struct in namespace:google::protobuf::internal
  /prebuilts/misc/linux-x86_64/protobuf2.5/include/google/protobuf/stubs/
template_util.h 127 // or_ is a template || operator.
128 // or_<A, B>::value evaluates "A::value || B::value".
130 struct or_ : public integral_constant<bool, (A::value || B::value)> { struct in namespace:google::protobuf::internal
  /prebuilts/misc/windows/protobuf2.5/include/google/protobuf/stubs/
template_util.h 127 // or_ is a template || operator.
128 // or_<A, B>::value evaluates "A::value || B::value".
130 struct or_ : public integral_constant<bool, (A::value || B::value)> { struct in namespace:google::protobuf::internal
  /prebuilts/tools/darwin-x86_64/protoc/include/google/protobuf/stubs/
template_util.h 127 // or_ is a template || operator.
128 // or_<A, B>::value evaluates "A::value || B::value".
130 struct or_ : public integral_constant<bool, (A::value || B::value)> { struct in namespace:google::protobuf::internal
  /prebuilts/tools/linux-x86_64/protoc/include/google/protobuf/stubs/
template_util.h 127 // or_ is a template || operator.
128 // or_<A, B>::value evaluates "A::value || B::value".
130 struct or_ : public integral_constant<bool, (A::value || B::value)> { struct in namespace:google::protobuf::internal
  /art/test/968-default-partial-compile-gen/util-src/
generate_java.py 100 overrides = functools.reduce(operator.or_, map(lambda i: i.get_super_types(), tops), set())
  /external/bison/lib/
bbitset.h 138 void (*or_) (bitset, bitset, bitset); member in struct:bitset_vtable
238 #define BITSET_OR_(DST, SRC1, SRC2) (SRC1)->b.vtable->or_ (DST, SRC1, SRC2)
  /external/v8/src/x87/
assembler-x87.h 730 void or_(Register dst, int32_t imm32);
731 void or_(Register dst, Register src) { or_(dst, Operand(src)); }
732 void or_(Register dst, const Operand& src);
733 void or_(const Operand& dst, Register src);
734 void or_(Register dst, const Immediate& imm) { or_(Operand(dst), imm); }
735 void or_(const Operand& dst, const Immediate& x);
    [all...]
assembler-x87.cc 919 void Assembler::or_(Register dst, int32_t imm32) { function in class:v8::internal::Assembler
925 void Assembler::or_(Register dst, const Operand& src) { function in class:v8::internal::Assembler
932 void Assembler::or_(const Operand& dst, const Immediate& x) { function in class:v8::internal::Assembler
938 void Assembler::or_(const Operand& dst, Register src) { function in class:v8::internal::Assembler
    [all...]
  /external/v8/src/regexp/ia32/
regexp-macro-assembler-ia32.cc 237 __ or_(eax, 0x20); // Convert match character to lower-case.
251 __ or_(ecx, 0x20);
338 __ or_(eax, eax);
693 __ or_(eax, eax);
880 __ or_(eax, eax);
915 __ or_(eax, eax);
    [all...]
  /external/v8/src/regexp/x87/
regexp-macro-assembler-x87.cc 236 __ or_(eax, 0x20); // Convert match character to lower-case.
250 __ or_(ecx, 0x20);
337 __ or_(eax, eax);
692 __ or_(eax, eax);
879 __ or_(eax, eax);
914 __ or_(eax, eax);
    [all...]
  /art/test/971-iface-super/util-src/
generate_java.py 104 overrides = functools.reduce(operator.or_, map(lambda i: i.get_super_types(), tops), set())
  /external/v8/src/ia32/
assembler-ia32.h 737 void or_(Register dst, int32_t imm32);
738 void or_(Register dst, Register src) { or_(dst, Operand(src)); }
739 void or_(Register dst, const Operand& src);
740 void or_(const Operand& dst, Register src);
741 void or_(Register dst, const Immediate& imm) { or_(Operand(dst), imm); }
742 void or_(const Operand& dst, const Immediate& x);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/
test_operator.py 254 self.assertRaises(TypeError, operator.or_)
255 self.assertRaises(TypeError, operator.or_, None, None)
256 self.assertTrue(operator.or_(0xa, 0x5) == 0xf)
  /external/python/cpython2/Lib/test/
test_operator.py 254 self.assertRaises(TypeError, operator.or_)
255 self.assertRaises(TypeError, operator.or_, None, None)
256 self.assertTrue(operator.or_(0xa, 0x5) == 0xf)
  /prebuilts/gdb/darwin-x86/lib/python2.7/test/
test_operator.py 254 self.assertRaises(TypeError, operator.or_)
255 self.assertRaises(TypeError, operator.or_, None, None)
256 self.assertTrue(operator.or_(0xa, 0x5) == 0xf)
  /prebuilts/gdb/linux-x86/lib/python2.7/test/
test_operator.py 254 self.assertRaises(TypeError, operator.or_)
255 self.assertRaises(TypeError, operator.or_, None, None)
256 self.assertTrue(operator.or_(0xa, 0x5) == 0xf)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_operator.py 254 self.assertRaises(TypeError, operator.or_)
255 self.assertRaises(TypeError, operator.or_, None, None)
256 self.assertTrue(operator.or_(0xa, 0x5) == 0xf)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_operator.py 254 self.assertRaises(TypeError, operator.or_)
255 self.assertRaises(TypeError, operator.or_, None, None)
256 self.assertTrue(operator.or_(0xa, 0x5) == 0xf)
  /external/v8/src/mips/
macro-assembler-mips.cc 896 or_(rd, rs, rt.rm());
904 or_(rd, rs, at);
996 or_(rd, rd, at);
1003 or_(rd, rd, at);
1077 or_(tmp, zero_reg, tmp2);
1081 or_(tmp, tmp, tmp2);
1085 or_(tmp, tmp, tmp2);
1089 or_(tmp, tmp, tmp2);
1091 or_(dest, tmp, zero_reg);
1118 or_(dest, tmp, src)
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceAssemblerMIPS32.h 251 void or_(const Operand *OpRd, const Operand *OpRs, const Operand *OpRt);
  /external/v8/src/full-codegen/ia32/
full-codegen-ia32.cc 849 __ or_(ecx, eax);
    [all...]
  /external/v8/src/full-codegen/x87/
full-codegen-x87.cc 839 __ or_(ecx, eax);
    [all...]

Completed in 1360 milliseconds

1 2 3