Home
last modified time | relevance | path

Searched refs:to_trans (Results 1 – 15 of 15) sorted by relevance

/dports/finance/frontaccounting/frontaccounting/gl/view/
H A Dgl_deposit_view.php35 $to_trans = db_fetch($result); variable
41 if ($to_trans['bank_curr_code'] != $to_trans['settle_curr'])
64 label_cells(_("To Bank Account"), $to_trans['bank_account_name'], "class='tableheader2'");
66 label_cells(_("Currency"), $to_trans['bank_curr_code'], "class='tableheader2'");
68 label_cells(_("Date"), sql2date($to_trans['trans_date']), "class='tableheader2'");
71 label_cells(_("From"), payment_person_name($to_trans['person_type_id'], $to_trans['person_id']), "c…
74 label_cells(_("Settle currency"), $to_trans['settle_curr'], "class='tableheader2'");
77 label_cells(_("Deposit Type"), $bank_transfer_types[$to_trans['account_type']], "class='tableheader…
80 label_cells(_("Reference"), $to_trans['ref'], "class='tableheader2'", "colspan=$colspan2");
120 if ($item["account"] != $to_trans["account_code"])
[all …]
H A Dbank_transfer_view.php39 $to_trans = $trans2; variable
44 $to_trans = $trans1; variable
52 if (($from_trans['bank_curr_code'] != $company_currency) || ($to_trans['bank_curr_code'] != $compan…
55 if ($from_trans['bank_curr_code'] != $to_trans['bank_curr_code'])
76 label_cells(_("To Bank Account"), $to_trans['bank_account_name'], "class='tableheader2'");
78 label_cells(_("Currency"), $to_trans['bank_curr_code'], "class='tableheader2'");
80 …label_cells(_("Amount"), number_format2($to_trans['amount'], user_price_dec()), "class='tableheade…
/dports/net/openmpi3/openmpi-3.1.6/orte/mca/oob/ud/
H A Doob_ud.c202 unsigned int to_trans = min (iov_left, mtu - packet_size); in mca_oob_ud_register_iov() local
204 packet_size = (to_trans < iov_left) ? 0 : packet_size + to_trans; in mca_oob_ud_register_iov()
205 iov_left -= to_trans; in mca_oob_ud_register_iov()
253 unsigned int to_trans = min (iov_left, mtu - packet_size); in mca_oob_ud_register_buf() local
255 packet_size = (to_trans < iov_left) ? 0 : packet_size + to_trans; in mca_oob_ud_register_buf()
256 iov_left -= to_trans; in mca_oob_ud_register_buf()
/dports/www/phpgroupware/phpgroupware-0.9.16.017/etemplate/inc/
H A Dclass.soetemplate.inc.php696 function getToTranslateCell($cell,&$to_trans) argument
717 $to_trans[trim(strtolower($str))] = $str;
731 $to_trans = array();
738 $this->getToTranslateCell($cell,$to_trans);
749 return $to_trans;
761 $to_trans = array();
774 $to_trans += $tpl->getToTranslate();
778 return $to_trans;
814 $to_trans = $this->getToTranslateApp($app);
820 $to_trans[trim(strtolower($msg))] = $msg;
[all …]
/dports/finance/frontaccounting/frontaccounting/inventory/view/
H A Dview_transfer.php31 $to_trans = $transfer_items[1]; variable
41 label_cells(_("To Location"), $to_trans['location_name'], "class='tableheader2'");
62 if ($item['loc_code'] == $to_trans['loc_code'])
/dports/misc/vxl/vxl-3.3.2/contrib/rpl/rgrl/
H A Drgrl_est_homo2d_lm.cxx232 vnl_matrix<double> to_trans( 3, 3, vnl_matrix_identity ); in estimate() local
233 to_trans(0,2) = -to_centre[0]; in estimate()
234 to_trans(1,2) = -to_centre[1]; in estimate()
240 init_H = to_trans * init_H * from_inv; in estimate()
H A Drgrl_est_dis_homo2d_lm.cxx376 vnl_matrix_fixed<double, 3, 3> to_trans; in estimate() local
377 to_trans.set_identity(); in estimate()
378 to_trans(0,2) = -to_centre_[0]; in estimate()
379 to_trans(1,2) = -to_centre_[1]; in estimate()
386 init_H = to_trans * init_H * from_inv; in estimate()
/dports/finance/gnucash/gnucash-4.9/libgnucash/engine/
H A DTransaction.c712 Transaction *to_trans; in xaccTransCopyToClipBoard() local
717 to_trans = dupe_trans(from_trans); in xaccTransCopyToClipBoard()
718 return to_trans; in xaccTransCopyToClipBoard()
756 if (!from_trans || !to_trans) in xaccTransCopyFromClipBoard()
760 xaccTransBeginEdit(to_trans); in xaccTransCopyFromClipBoard()
762 FOR_EACH_SPLIT(to_trans, xaccSplitDestroy(s)); in xaccTransCopyFromClipBoard()
763 g_list_free(to_trans->splits); in xaccTransCopyFromClipBoard()
764 to_trans->splits = NULL; in xaccTransCopyFromClipBoard()
769 if ((xaccTransGetNum(to_trans) == NULL) || (g_strcmp0 (xaccTransGetNum(to_trans), "") == 0)) in xaccTransCopyFromClipBoard()
786 xaccSplitSetParent(new_split, to_trans); in xaccTransCopyFromClipBoard()
[all …]
H A DTransaction.h245 void xaccTransCopyOnto(const Transaction *from_trans, Transaction *to_trans);
264 void xaccTransCopyFromClipBoard(const Transaction *from_trans, Transaction *to_trans,
/dports/finance/gnucash/gnucash-4.9/gnucash/gnome-utils/
H A Dgnc-tree-control-split-reg.c2095 Transaction *to_trans; in gnc_tree_control_split_reg_paste_trans() local
2102 to_trans = gnc_tree_view_split_reg_get_current_trans (view); in gnc_tree_control_split_reg_paste_trans()
2103 if (!to_trans || !clipboard_trans) in gnc_tree_control_split_reg_paste_trans()
2107 if (gtc_sr_trans_test_for_edit (view, to_trans)) in gnc_tree_control_split_reg_paste_trans()
2111 if (gtc_sr_is_trans_readonly_and_warn (view, to_trans)) in gnc_tree_control_split_reg_paste_trans()
2125 gnc_tree_view_split_reg_set_dirty_trans (view, to_trans); in gnc_tree_control_split_reg_paste_trans()
2126 if (!xaccTransIsOpen (to_trans)) in gnc_tree_control_split_reg_paste_trans()
2127 xaccTransBeginEdit (to_trans); in gnc_tree_control_split_reg_paste_trans()
2130 gnc_tree_model_split_reg_set_blank_split_parent (model, to_trans, TRUE); in gnc_tree_control_split_reg_paste_trans()
2132 xaccTransCopyFromClipBoard (clipboard_trans, to_trans, clipboard_acct, anchor_acct, FALSE); in gnc_tree_control_split_reg_paste_trans()
[all …]
/dports/multimedia/xine/xine-ui-0.99.12/src/xitk/oxine/
H A Dodk.c68 uint32_t to_color, uint8_t to_trans) { in palette_transition() argument
78 trans_step = (double)(to_trans - from_trans) / num; in palette_transition()
102 odk->trans[to_index] = to_trans; in palette_transition()
/dports/cad/openroad/OpenROAD-2.0/src/sta/dcalc/
H A DDelayCalc.tcl96 set to_rf [$arc to_trans]
/dports/mail/dovecot/dovecot-2.3.17/src/lib-smtp/
H A Dsmtp-client-connection.c1967 timeout_remove(&conn->to_trans); in smtp_client_connection_disconnect()
2275 if (conn->to_trans != NULL) in smtp_client_connection_switch_ioloop()
2276 conn->to_trans = io_loop_move_timeout(&conn->to_trans); in smtp_client_connection_switch_ioloop()
2315 timeout_remove(&conn->to_trans); in smtp_client_connection_do_start_transaction()
2342 if (conn->to_trans != NULL) in smtp_client_connection_start_transaction()
2347 conn->to_trans = timeout_add_short( in smtp_client_connection_start_transaction()
H A Dsmtp-client-private.h199 struct timeout *to_connect, *to_trans, *to_commands, *to_cmd_fail; member
/dports/cad/openroad/OpenROAD-2.0/src/sta/tcl/
H A DStaTcl.i5691 Transition *to_trans() { return self->toTrans(); } in to_trans() function