Home
last modified time | relevance | path

Searched refs:move2 (Results 1 – 25 of 351) sorted by relevance

12345678910>>...15

/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/odoo/addons/stock_account/tests/
H A Dtest_stockvaluation.py231 move2._action_assign()
233 move2._action_done()
555 move2._action_done()
776 move2._action_done()
887 move2._action_done()
1029 move2._action_done()
1175 move2._action_done()
3281 move2.date = date3
3446 move2.date = date2
3575 move2.date = date2
[all …]
H A Dtest_stockvaluationlayer.py140 move2 = self._make_in_move(self.product1, 10)
150 move2 = self._make_in_move(self.product1, 10)
161 move2 = self._make_in_move(self.product1, 10)
191 move2.move_line_ids.qty_done = 5
201 move2.move_line_ids.qty_done = 1
594 move2.move_line_ids.qty_done = 25
605 move2.move_line_ids.qty_done = 5
617 'move_id': move2.id,
618 'product_id': move2.product_id.id,
621 'location_id': move2.location_id.id,
[all …]
/dports/devel/hs-darcs/darcs-2.16.4/tests/
H A Dlook_for_moves_with_args.sh27 move2='move \./old2 \./new2'
31 grep "$move2" out
37 not grep "$move2" out
43 grep "$move2" out
48 grep "$move2" out
/dports/games/dreamchess/dreamchess-0.3.0/dreamer/src/
H A Dhistory.c31 static inline int move_compare(move_t move1, move_t move2, int current_side) { in move_compare() argument
33 …if ((move1 & (CAPTURE_MOVE | CAPTURE_MOVE_EN_PASSANT)) && !(move2 & (CAPTURE_MOVE | CAPTURE_MOVE_E… in move_compare()
36 …if (!(move1 & (CAPTURE_MOVE | CAPTURE_MOVE_EN_PASSANT)) && (move2 & (CAPTURE_MOVE | CAPTURE_MOVE_E… in move_compare()
40 history[current_side][MOVE_GET(move2, SOURCE)][MOVE_GET(move2, DEST)]) in move_compare()
/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/odoo/addons/stock_landed_costs/tests/
H A Dtest_stockvaluationlayer.py159 lc = self._make_lc(move2, 100)
166 move2 = self._make_out_move(self.product1, 10)
175 move2 = self._make_out_move(self.product1, 1)
183 move2 = self._make_out_move(self.product1, 10)
207 move2 = self._make_out_move(self.product1, 1)
219 move2 = self._make_out_move(self.product1, 1)
233 move2 = self._make_out_move(self.product1, 1)
250 move2 = self._make_out_move(self.product1, 1)
273 lc = self._make_lc(move2, 100)
280 move2 = self._make_out_move(self.product1, 10)
[all …]
/dports/graphics/krita/krita-4.4.8/libs/flake/tools/
H A DKoPathSegmentChangeStrategy.cpp76 QPointF move1, move2; in handleMouseMove() local
85 move1 = move2 = ipol.controlPoints()[1] - m_segment.controlPoints()[1]; in handleMouseMove()
92 std::tie(move2, move1) = in handleMouseMove()
97 KoPathControlPointMoveCommand cmd(m_pointData1, move2, KoPathPoint::ControlPoint2); in handleMouseMove()
107 m_ctrlPoint2Move += move2; in handleMouseMove()
/dports/editors/calligra/calligra-3.2.1/libs/flake/tools/
H A DKoPathSegmentChangeStrategy.cpp76 QPointF move1, move2; in handleMouseMove() local
85 move1 = move2 = ipol.controlPoints().at(1) - m_segment.controlPoints().at(1); in handleMouseMove()
111 move2 = ((1-feel_good)/(3*t*(1-t)*(1-t))) * delta; in handleMouseMove()
117 KoPathControlPointMoveCommand cmd(m_pointData1, move2, KoPathPoint::ControlPoint2); in handleMouseMove()
128 m_ctrlPoint2Move += move2; in handleMouseMove()
/dports/audio/tuxguitar/tuxguitar-src-1.2/TuxGuitar/src/org/herac/tuxguitar/gui/actions/note/
H A DMoveBeatsCustomAction.java142 Group move2 = new Group(dialog,SWT.SHADOW_ETCHED_IN); in showDialog() local
143 move2.setLayout(new GridLayout(2,false)); in showDialog()
144 move2.setLayoutData(new GridData(SWT.FILL,SWT.FILL,true,true)); in showDialog()
145 move2.setText(TuxGuitar.getProperty("beat.move-custom.dialog.move-2.tip")); in showDialog()
147 Label count2Label = new Label(move2, SWT.RIGHT); in showDialog()
151 final Spinner count2Spinner = new Spinner(move2 , SWT.BORDER ); in showDialog()
160 Label duration2Label = new Label(move2, SWT.RIGHT); in showDialog()
165 final Combo duration2Combo = new Combo(move2, SWT.DROP_DOWN | SWT.READ_ONLY); in showDialog()
173 Label type2Label = new Label(move2, SWT.RIGHT); in showDialog()
178 final Combo type2Combo = new Combo(move2, SWT.DROP_DOWN | SWT.READ_ONLY); in showDialog()
[all …]
/dports/java/openjdk11/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DEdgeMoveOptimizer.java101 ValueMoveOp move2 = ValueMoveOp.asValueMoveOp(op2); in same() local
102 … if (move1.getInput().equals(move2.getInput()) && move1.getResult().equals(move2.getResult())) { in same()
108 LoadConstantOp move2 = LoadConstantOp.asLoadConstantOp(op2); in same() local
109 …if (move1.getConstant().equals(move2.getConstant()) && move1.getResult().equals(move2.getResult())… in same()
/dports/java/openjdk13/jdk13u-jdk-13.0.10-1-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DEdgeMoveOptimizer.java101 ValueMoveOp move2 = ValueMoveOp.asValueMoveOp(op2); in same() local
102 … if (move1.getInput().equals(move2.getInput()) && move1.getResult().equals(move2.getResult())) { in same()
108 LoadConstantOp move2 = LoadConstantOp.asLoadConstantOp(op2); in same() local
109 …if (move1.getConstant().equals(move2.getConstant()) && move1.getResult().equals(move2.getResult())… in same()
/dports/java/openjdk11-jre/jdk11u-jdk-11.0.13-8-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DEdgeMoveOptimizer.java101 ValueMoveOp move2 = ValueMoveOp.asValueMoveOp(op2); in same() local
102 … if (move1.getInput().equals(move2.getInput()) && move1.getResult().equals(move2.getResult())) { in same()
108 LoadConstantOp move2 = LoadConstantOp.asLoadConstantOp(op2); in same() local
109 …if (move1.getConstant().equals(move2.getConstant()) && move1.getResult().equals(move2.getResult())… in same()
/dports/java/openjdk12/openjdk-jdk12u-jdk-12.0.2-10-4/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DEdgeMoveOptimizer.java101 ValueMoveOp move2 = ValueMoveOp.asValueMoveOp(op2); in same() local
102 … if (move1.getInput().equals(move2.getInput()) && move1.getResult().equals(move2.getResult())) { in same()
108 LoadConstantOp move2 = LoadConstantOp.asLoadConstantOp(op2); in same() local
109 …if (move1.getConstant().equals(move2.getConstant()) && move1.getResult().equals(move2.getResult())… in same()
/dports/java/openjdk16/jdk16u-jdk-16.0.2-7-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DEdgeMoveOptimizer.java101 ValueMoveOp move2 = ValueMoveOp.asValueMoveOp(op2); in same() local
102 … if (move1.getInput().equals(move2.getInput()) && move1.getResult().equals(move2.getResult())) { in same()
108 LoadConstantOp move2 = LoadConstantOp.asLoadConstantOp(op2); in same() local
109 …if (move1.getConstant().equals(move2.getConstant()) && move1.getResult().equals(move2.getResult())… in same()
/dports/java/openjdk15/jdk15u-jdk-15.0.6-1-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DEdgeMoveOptimizer.java101 ValueMoveOp move2 = ValueMoveOp.asValueMoveOp(op2); in same() local
102 … if (move1.getInput().equals(move2.getInput()) && move1.getResult().equals(move2.getResult())) { in same()
108 LoadConstantOp move2 = LoadConstantOp.asLoadConstantOp(op2); in same() local
109 …if (move1.getConstant().equals(move2.getConstant()) && move1.getResult().equals(move2.getResult())… in same()
/dports/java/openjdk14/jdk14u-jdk-14.0.2-12-1/src/jdk.internal.vm.compiler/share/classes/org.graalvm.compiler.lir/src/org/graalvm/compiler/lir/
H A DEdgeMoveOptimizer.java101 ValueMoveOp move2 = ValueMoveOp.asValueMoveOp(op2); in same() local
102 … if (move1.getInput().equals(move2.getInput()) && move1.getResult().equals(move2.getResult())) { in same()
108 LoadConstantOp move2 = LoadConstantOp.asLoadConstantOp(op2); in same() local
109 …if (move1.getConstant().equals(move2.getConstant()) && move1.getResult().equals(move2.getResult())… in same()
/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/odoo/addons/mrp_subcontracting_account/tests/
H A Dtest_subcontracting_account.py29 move2 = self.env['stock.move'].create({
38 move2._action_confirm()
39 move2._action_assign()
40 move2.move_line_ids.qty_done = 10.0
41 move2._action_done()
/dports/games/crafty/crafty-25.2_1/
H A Dhistory.c55 tree->killers[ply].move2 = tree->killers[ply].move1; in History()
67 tree->counter_move[tree->curmv[ply - 1] & 4095].move2 = in History()
82 tree->move_pair[tree->curmv[ply - 2] & 4095].move2 = in History()
/dports/games/xcheckers/xcheckers-2.2.3/simplech.src/
H A Dsimplech.c137 struct move2 struct
194 struct move2 movelist[MAXMOVES]; in main()
480 struct move2 movelist[20]; in timerroutine()
659 struct move2 movelist[MAXMOVES]; in firstalphabeta()
737 struct move2 movelist[MAXMOVES]; in alphabeta()
801 domove (int b[46], struct move2 move) in domove()
818 undomove (int b[46], struct move2 move) in undomove()
1891 struct move2 move, orgmove; in blackmancapture()
1957 struct move2 move, orgmove; in blackkingcapture()
2074 struct move2 move, orgmove; in whitemancapture()
[all …]
/dports/finance/odoo/odoo-19d77c2a03335eb95a686bd69a1b56b38e87d609/odoo/addons/stock/tests/
H A Dtest_robustness.py194 move2 = self.env['stock.move'].create({
202 (move1 + move2)._action_confirm()
215 move2.write({'move_line_ids': [(0, 0, {
220 'location_id': move2.location_id.id,
221 'location_dest_id': move2.location_dest_id.id,
/dports/graphics/frei0r-plugins-gavl/frei0r-1.7.0-18-g86475d3/src/generator/dem0scene/
H A Dplasma.cpp79 double move2; // 8 member in Plasma
107 register_param(move2, "2_move", " "); in Plasma()
147 move2 = 1.; in Plasma()
183 _move2 = _move2 * move2; in update()
/dports/graphics/frei0r/frei0r-1.7.0-18-g86475d3/src/generator/dem0scene/
H A Dplasma.cpp79 double move2; // 8 member in Plasma
107 register_param(move2, "2_move", " "); in Plasma()
147 move2 = 1.; in Plasma()
183 _move2 = _move2 * move2; in update()
/dports/graphics/frei0r-plugins-opencv/frei0r-1.7.0-18-g86475d3/src/generator/dem0scene/
H A Dplasma.cpp79 double move2; // 8 member in Plasma
107 register_param(move2, "2_move", " "); in Plasma()
147 move2 = 1.; in Plasma()
183 _move2 = _move2 * move2; in update()
/dports/emulators/mess/mame-mame0226/3rdparty/pugixml/tests/
H A Dtest_xpath_variables.cpp501 xpath_variable_set move2; variable
502 move2 = std::move(move1);
505 CHECK(move2.get(STR("a")) && move2.get(STR("b")) && move2.get(STR("c")) && move2.get(STR("d")));
509 copy = std::move(move2);
511 …CHECK(!move2.get(STR("a")) && !move2.get(STR("b")) && !move2.get(STR("c")) && !move2.get(STR("d"))…
/dports/emulators/mame/mame-mame0226/3rdparty/pugixml/tests/
H A Dtest_xpath_variables.cpp501 xpath_variable_set move2; variable
502 move2 = std::move(move1);
505 CHECK(move2.get(STR("a")) && move2.get(STR("b")) && move2.get(STR("c")) && move2.get(STR("d")));
509 copy = std::move(move2);
511 …CHECK(!move2.get(STR("a")) && !move2.get(STR("b")) && !move2.get(STR("c")) && !move2.get(STR("d"))…
/dports/devel/pysvn/pysvn-1.9.12/Tests/
H A Dtest_07_move2.py12 c.move2( src_list, 'wc_move_1', make_parents=True, move_as_child=True )
21 c.move2( src_list, 'wc_move_3', make_parents=True )

12345678910>>...15