/third_party/rust/crates/bitflags/tests/compile-fail/non_integer_base/ |
D | all_defined.rs | 14 BitXor, 45 impl BitXor for MyInt {
|
/third_party/rust/crates/syn/src/ |
D | op.rs | 23 BitXor(Token![^]), 116 input.parse().map(BinOp::BitXor) in parse_binop() 199 BinOp::BitXor(t) => t.to_tokens(tokens), in to_tokens()
|
D | expr.rs | 1120 BitXor, enumerator 1135 BinOp::BitXor(_) => Precedence::BitXor, in of()
|
/third_party/node/deps/v8/tools/ |
D | bigint-tester.py | 271 class BitXor(BinaryOp): class 289 "xor": BitXor
|
/third_party/rust/crates/rustc-hash/src/ |
D | lib.rs | 37 use core::ops::BitXor;
|
/third_party/python/Parser/ |
D | Python.asdl | 100 | RShift | BitOr | BitXor | BitAnd | FloorDiv
|
D | parser.c | 2763 _res = _PyPegen_augoperator ( p , BitXor ); in augassign_rule() 13219 _res = _PyAST_BinOp ( a , BitXor , b , EXTRA ); in bitwise_xor_raw()
|
/third_party/python/Python/ |
D | ast_unparse.c | 160 case BitXor: op = " ^ "; pr = PR_BXOR; break; in append_ast_binop()
|
D | ast_opt.c | 272 case BitXor: in fold_binop()
|
D | compile.c | 3628 case BitXor: in binop() 3665 case BitXor: in inplace_binop()
|
D | Python-ast.c | 4708 case BitXor: in ast2obj_operator() 9748 *out = BitXor; in obj2ast_operator()
|
/third_party/python/Include/internal/ |
D | pycore_ast.h | 26 LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12, enumerator
|
/third_party/python/Grammar/ |
D | python.gram | 118 | '^=' { _PyPegen_augoperator(p, BitXor) } 637 | a=bitwise_xor '^' b=bitwise_and { _PyAST_BinOp(a, BitXor, b, EXTRA) }
|
/third_party/rust/crates/bitflags/src/ |
D | lib.rs | 744 impl $crate::_core::ops::BitXor for $BitFlags {
|
/third_party/rust/crates/syn/tests/common/ |
D | eq.rs | 478 spanless_eq_enum!(BinOpKind; Add Sub Mul Div Rem And Or BitXor BitAnd BitOr Shl Shr Eq Lt Le Ne Ge …
|
/third_party/rust/crates/syn/src/gen/ |
D | eq.rs | 88 (BinOp::BitXor(_), BinOp::BitXor(_)) => true, in eq()
|
D | fold.rs | 893 BinOp::BitXor(_binding_0) => { in fold_bin_op() 894 BinOp::BitXor(Token![^](tokens_helper(f, &_binding_0.spans))) in fold_bin_op()
|
D | hash.rs | 113 BinOp::BitXor(_) => { in hash()
|
D | debug.rs | 120 BinOp::BitXor(v0) => { in fmt()
|
D | visit_mut.rs | 893 BinOp::BitXor(_binding_0) => { in visit_bin_op_mut()
|
D | visit.rs | 892 BinOp::BitXor(_binding_0) => { in visit_bin_op()
|
/third_party/skia/third_party/externals/spirv-cross/ |
D | spirv_hlsl.cpp | 4709 HLSL_GROUP_OP(BitwiseXor, BitXor, false) in emit_subgroup_op() 4712 HLSL_GROUP_OP_CAST(LogicalXor, BitXor, uint_type) in emit_subgroup_op()
|
/third_party/python/Doc/library/ |
D | ast.rst | 417 BitXor
|
/third_party/rust/crates/syn/tests/debug/ |
D | gen.rs | 172 syn::BinOp::BitXor(_val) => { in fmt()
|
/third_party/rust/crates/memchr/bench/data/code/ |
D | rust-library.rs | 32175 use core::ops::{BitAnd, BitOr, BitXor, RangeBounds, Sub}; 33369 impl<T: Ord + Clone> BitXor<&BTreeSet<T>> for &BTreeSet<T> { impl
|