Lines Matching defs:update

52     auto update = fromjson("{$bit: {a: 0}}");  in TEST()  local
59 auto update = fromjson("{$bit: {a: ''}}"); in TEST() local
66 auto update = fromjson("{$bit: {a: []}}"); in TEST() local
73 auto update = fromjson("{$bit: {a: {}}}}"); in TEST() local
80 auto update = fromjson("{$bit: {a: {foo: 4}}}"); in TEST() local
87 auto update = fromjson("{$bit: {a: {or: []}}}"); in TEST() local
94 auto update = fromjson("{$bit: {a: {or: 'foo'}}}"); in TEST() local
101 auto update = fromjson("{$bit: {a: {or: 1.0}}}"); in TEST() local
108 auto update = fromjson("{$bit: {a: {or: NumberDecimal(\"1.0\")}}}"); in TEST() local
114 auto update = fromjson("{$bit: {a: {and: NumberInt(1)}}}"); in TEST() local
121 auto update = fromjson("{$bit: {a: {or: NumberInt(1)}}}"); in TEST() local
128 auto update = fromjson("{$bit: {a: {xor: NumberInt(1)}}}"); in TEST() local
135 auto update = fromjson("{$bit: {a: {and: NumberLong(1)}}}"); in TEST() local
142 auto update = fromjson("{$bit: {a: {or: NumberLong(1)}}}"); in TEST() local
149 auto update = fromjson("{$bit: {a: {xor: NumberLong(1)}}}"); in TEST() local
156 auto update = fromjson("{$bit: {a: {and: 1}}}"); in TEST_F() local
171 auto update = fromjson("{$bit: {a: {or: 1}}}"); in TEST_F() local
186 auto update = fromjson("{$bit: {a: {xor: 1}}}"); in TEST_F() local
201 auto update = BSON("$bit" << BSON("a" << BSON("and" << 0b0110))); in TEST_F() local
216 auto update = BSON("$bit" << BSON("a" << BSON("or" << 0b0110))); in TEST_F() local
231 auto update = BSON("$bit" << BSON("a" << BSON("xor" << 0b0110))); in TEST_F() local
246 auto update = BSON("$bit" << BSON("a" << BSON("and" << static_cast<int>(1)))); in TEST_F() local
262 auto update = BSON("$bit" << BSON("a" << BSON("and" << 0b1111000011110000 // in TEST_F() local
281 auto update = BSON("$bit" << BSON("a" << BSON("xor" << 0b11001100 << "xor" << 0b10101010))); in TEST_F() local