/third_party/rust/crates/bitflags/tests/compile-fail/non_integer_base/ |
H A D | all_defined.rs | 14 BitXor, 45 impl BitXor for MyInt {
|
/third_party/rust/crates/syn/src/ |
H A D | op.rs | 21 BitXor(Token![^]), 134 input.parse().map(BinOp::BitXor) in parse() 183 BinOp::BitXor(t) => t.to_tokens(tokens), in to_tokens()
|
H A D | expr.rs | 972 BitXor, 987 BinOp::BitXor(_) => Precedence::BitXor,
|
/third_party/node/deps/v8/tools/ |
H A D | bigint-tester.py | 271 class BitXor(BinaryOp): class 289 "xor": BitXor
|
/third_party/rust/crates/rustc-hash/src/ |
H A D | lib.rs | 37 use core::ops::BitXor;
|
/third_party/python/Include/internal/ |
H A D | pycore_ast.h | 26 LShift=8, RShift=9, BitOr=10, BitXor=11, BitAnd=12, enumerator
|
/third_party/python/Python/ |
H A D | ast_unparse.c | 160 case BitXor: op = " ^ "; pr = PR_BXOR; break; in append_ast_binop()
|
H A D | ast_opt.c | 501 case BitXor: in fold_binop()
|
H A D | Python-ast.c | 1510 "operator = Add | Sub | Mult | MatMult | Div | Mod | Pow | LShift | RShift | BitOr | BitXor | BitAnd | FloorDiv"); in init_types() 1579 state->BitXor_type = make_type(state, "BitXor", state->operator_type, NULL, in init_types() 1581 "BitXor"); in init_types() 4791 case BitXor: in ast2obj_operator() 10055 *out = BitXor; in obj2ast_operator() 12165 if (PyModule_AddObjectRef(m, "BitXor", state->BitXor_type) < 0) { in astmodule_exec()
|
H A D | compile.c | 4218 case BitXor: in addop_binary()
|
/third_party/rust/crates/bitflags/src/ |
H A D | lib.rs | 154 //! - `BitXor` and `BitXorAssign`: toggle 695 /// [`ops::BitXor`]), as in `flags ^ other`. 698 /// [`ops::BitXor`]: https://doc.rust-lang.org/std/ops/trait.BitXor.html 744 impl $crate::_core::ops::BitXor for $BitFlags {
|
/third_party/rust/crates/syn/tests/common/ |
H A D | eq.rs | 532 spanless_eq_enum!(BinOpKind; Add Sub Mul Div Rem And Or BitXor BitAnd BitOr Shl Shr Eq Lt Le Ne Ge Gt);
|
/third_party/rust/crates/syn/src/gen/ |
H A D | eq.rs | 119 (BinOp::BitXor(_), BinOp::BitXor(_)) => true, in eq()
|
H A D | visit.rs | 1081 BinOp::BitXor(_binding_0) => { in visit_bin_op()
|
H A D | hash.rs | 148 BinOp::BitXor(_) => { in hash()
|
H A D | fold.rs | 1061 BinOp::BitXor(_binding_0) => BinOp::BitXor(_binding_0), in fold_bin_op()
|
H A D | debug.rs | 162 BinOp::BitXor(v0) => { in fmt() 163 let mut formatter = formatter.debug_tuple("BitXor"); in fmt()
|
H A D | visit_mut.rs | 1082 BinOp::BitXor(_binding_0) => { in visit_bin_op_mut()
|
/third_party/skia/third_party/externals/spirv-cross/ |
H A 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/rust/crates/syn/tests/debug/ |
H A D | gen.rs | 213 syn::BinOp::BitXor(_val) => { in fmt() 214 formatter.write_str("BinOp::BitXor")?; in fmt()
|
/third_party/python/Parser/ |
H A D | parser.c | 2678 _res = _PyPegen_augoperator ( p , BitXor ); in augassign_rule() 12585 _res = _PyAST_BinOp ( a , BitXor , b , EXTRA ); in bitwise_xor_raw() [all...] |