/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/ |
H A D | enum-default-bitfield.rs | 28 impl ::std::ops::BitAnd<foo__bindgen_ty_1> for foo__bindgen_ty_1 { 98 impl ::std::ops::BitAnd<Foo> for Foo { 138 impl ::std::ops::BitAnd<NoDebug> for NoDebug { 174 impl ::std::ops::BitAnd<Debug> for Debug {
|
H A D | bitfield-enum-basic.rs | 33 impl ::std::ops::BitAnd<Foo> for Foo { 74 impl ::std::ops::BitAnd<Buz> for Buz { 105 impl ::std::ops::BitAnd<_bindgen_ty_1> for _bindgen_ty_1 { 141 impl ::std::ops::BitAnd<Dummy__bindgen_ty_1> for Dummy__bindgen_ty_1 {
|
H A D | issue-1198-alias-rust-bitfield-enum.rs | 30 impl ::std::ops::BitAnd<MyDupeEnum> for MyDupeEnum { 68 impl ::std::ops::BitAnd<MyOtherDupeEnum> for MyOtherDupeEnum {
|
H A D | bitfield-enum-repr-transparent.rs | 33 impl ::std::ops::BitAnd<Foo> for Foo {
|
H A D | bitfield-enum-repr-c.rs | 33 impl ::std::ops::BitAnd<Foo> for Foo {
|
H A D | enum-doc-bitfield.rs | 48 impl ::std::ops::BitAnd<B> for B {
|
/third_party/rust/crates/bitflags/tests/compile-fail/non_integer_base/ |
H A D | all_defined.rs | 12 BitAnd, 29 impl BitAnd for MyInt {
|
/third_party/rust/crates/syn/src/ |
H A D | op.rs | 23 BitAnd(Token![&]), 136 input.parse().map(BinOp::BitAnd) in parse() 184 BinOp::BitAnd(t) => t.to_tokens(tokens), in to_tokens()
|
H A D | expr.rs | 973 BitAnd, 988 BinOp::BitAnd(_) => Precedence::BitAnd,
|
/third_party/node/deps/v8/tools/ |
H A D | bigint-tester.py | 263 class BitAnd(BinaryOp): class 287 "and": BitAnd,
|
/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 | 161 case BitAnd: op = " & "; pr = PR_BAND; break; in append_ast_binop()
|
H A D | ast_opt.c | 504 case BitAnd: 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() 1587 state->BitAnd_type = make_type(state, "BitAnd", state->operator_type, NULL, in init_types() 1589 "BitAnd"); in init_types() 4794 case BitAnd: in ast2obj_operator() 10063 *out = BitAnd; in obj2ast_operator() 12168 if (PyModule_AddObjectRef(m, "BitAnd", state->BitAnd_type) < 0) { in astmodule_exec()
|
H A D | compile.c | 4221 case BitAnd: in addop_binary()
|
/third_party/rust/crates/bitflags/src/ |
H A D | lib.rs | 153 //! - `BitAnd` and `BitAndAssign`: intersection 642 /// [`ops::BitAnd`]), as in `flags & other`. 644 /// [`ops::BitAnd`]: https://doc.rust-lang.org/std/ops/trait.BitAnd.html 762 impl $crate::_core::ops::BitAnd 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 | 120 (BinOp::BitAnd(_), BinOp::BitAnd(_)) => true, in eq()
|
H A D | visit.rs | 1084 BinOp::BitAnd(_binding_0) => { in visit_bin_op()
|
H A D | hash.rs | 151 BinOp::BitAnd(_) => { in hash()
|
H A D | fold.rs | 1062 BinOp::BitAnd(_binding_0) => BinOp::BitAnd(_binding_0), in fold_bin_op()
|
H A D | debug.rs | 167 BinOp::BitAnd(v0) => { in fmt() 168 let mut formatter = formatter.debug_tuple("BitAnd"); in fmt()
|
H A D | visit_mut.rs | 1085 BinOp::BitAnd(_binding_0) => { in visit_bin_op_mut()
|
/third_party/skia/third_party/externals/spirv-cross/ |
H A D | spirv_hlsl.cpp | 4707 HLSL_GROUP_OP(BitwiseAnd, BitAnd, false) in emit_subgroup_op() 4710 HLSL_GROUP_OP_CAST(LogicalAnd, BitAnd, uint_type) in emit_subgroup_op()
|
/third_party/rust/crates/bindgen/bindgen/codegen/ |
H A D | mod.rs | 2978 impl ::#prefix::ops::BitAnd<#rust_ty> for #rust_ty { in build()
|