Home
last modified time | relevance | path

Searched refs:insert_cols (Results 1 – 25 of 42) sorted by relevance

12

/dports/math/mlpack/mlpack-3.4.2/src/mlpack/tests/
H A Dmetric_test.cpp152 bbox.insert_cols(0, bbox3);
153 bbox.insert_cols(0, bbox2);
154 bbox.insert_cols(0, bbox1);
190 bbox.insert_cols(0, bbox1);
191 bbox.insert_cols(0, bbox2);
192 bbox.insert_cols(0, bbox1);
220 bbox.insert_cols(0, bbox3);
221 bbox.insert_cols(0, bbox2);
222 bbox.insert_cols(0, bbox1);
253 bbox.insert_cols(0, bbox3);
[all …]
/dports/databases/p5-DBIx-Lite/DBIx-Lite-0.33/lib/DBIx/Lite/
H A DResultSet.pm318 my $insert_cols = shift;
325 if (!%$insert_cols && $self->{dbix_lite}->driver_name eq 'Pg') {
332 $self->{table}{name}, $insert_cols,
338 my $insert_cols = shift;
341 my ($sql, @bind) = $self->insert_sql($insert_cols);
347 my $insert_cols = shift;
348 ref $insert_cols eq 'HASH' or croak "insert() requires a hashref";
353 my ($sth, @bind) = $self->insert_sth($insert_cols);
360 $insert_cols = clone $insert_cols;
362 if !exists $insert_cols->{$pk};
[all …]
H A DRow.pm53 my ($rel_name, $insert_cols) = @_;
55 $insert_cols //= {};
63 ->insert({ $their_key => $selfs->{data}{$my_key}, %$insert_cols });
/dports/devel/hoel/hoel-1.4.14/src/
H A Dhoel-simple-json.c112 char * insert_cols = NULL, * tmp; in h_get_insert_columns_from_json_object() local
119 insert_cols = msprintf("%s", key); in h_get_insert_columns_from_json_object()
120 if (insert_cols == NULL) { in h_get_insert_columns_from_json_object()
126 tmp = msprintf("%s,%s", insert_cols, key); in h_get_insert_columns_from_json_object()
127 o_free(insert_cols); in h_get_insert_columns_from_json_object()
132 insert_cols = tmp; in h_get_insert_columns_from_json_object()
136 return insert_cols; in h_get_insert_columns_from_json_object()
144 char * to_return = NULL, * insert_cols, * insert_data; in h_get_insert_query_from_json_object() local
148 if (insert_cols == NULL || insert_data == NULL) { in h_get_insert_query_from_json_object()
153 o_free(insert_cols); in h_get_insert_query_from_json_object()
[all …]
/dports/mail/roundcube/roundcubemail-1.5.1/program/lib/Roundcube/
H A Drcube_user.php409 $insert_cols = [];
413 $insert_cols[] = $this->db->quote_identifier($col);
417 $insert_cols[] = $this->db->quote_identifier('user_id');
421 . " (`changed`, " . implode(', ', $insert_cols) . ")"
874 $insert_cols[] = 'user_id';
876 $insert_cols[] = $this->db->quote_identifier('type');
878 $insert_cols[] = $this->db->quote_identifier('name');
880 $insert_cols[] = $this->db->quote_identifier('data');
884 . " (" . implode(', ', $insert_cols) . ")"
/dports/devel/bugzilla44/bugzilla-4.4.13/Bugzilla/DB/Schema/
H A DSqlite.pm94 my @insert_cols = @columns;
99 @insert_cols = map { $_ eq $from ? $to : $_ } @insert_cols;
103 my $insert_str = join(',', @insert_cols);
/dports/devel/bugzilla50/bugzilla-5.0.4/Bugzilla/DB/Schema/
H A DSqlite.pm99 my @insert_cols = @columns;
104 @insert_cols = map { $_ eq $from ? $to : $_ } @insert_cols;
108 my $insert_str = join(',', @insert_cols);
/dports/math/mlpack/mlpack-3.4.2/src/mlpack/methods/mean_shift/
H A Dmean_shift_impl.hpp253 centroids.insert_cols(centroids.n_cols, allCentroids.unsafe_col(i)); in Cluster()
274 centroids.insert_cols(centroids.n_cols, data.col(0)); in Cluster()
278 centroids.insert_cols(centroids.n_cols, allCentroids.col(0)); in Cluster()
/dports/net-im/py-matrix-synapse/synapse-1.50.2/synapse/storage/databases/main/
H A Dstats.py463 insert_cols = []
469 insert_cols.append(key)
478 "insert_cols_cs": ", ".join(insert_cols),
/dports/devel/py-pyface/pyface-7.2.0/pyface/ui/wx/grid/
H A Dinverted_grid_model.py94 def insert_cols(self, pos, num_rows): member in InvertedGridModel
/dports/math/ensmallen/ensmallen-2.17.0/include/ensmallen_bits/fw/
H A Datoms.hpp47 currentAtoms.insert_cols(0, v); in AddAtom()
/dports/math/armadillo/armadillo-10.7.1/include/armadillo_bits/
H A DRow_bones.hpp141 … inline void insert_cols(const uword col_num, const uword N, const bool set_to_zero = true);
142 template<typename T1> inline void insert_cols(const uword col_num, const Base<eT,T1>& X);
H A DRow_meat.hpp1076 Row<eT>::insert_cols(const uword col_num, const uword N, const bool set_to_zero) in insert_cols() function in Row
1122 Row<eT>::insert_cols(const uword col_num, const Base<eT,T1>& X) in insert_cols() function in Row
1126 Mat<eT>::insert_cols(col_num, X); in insert_cols()
H A DCube_bones.hpp205 inline void insert_cols(const uword row_num, const uword N, const bool set_to_zero = true);
209 template<typename T1> inline void insert_cols(const uword col_num, const BaseCube<eT,T1>& X);
H A DMat_bones.hpp312 inline void insert_cols(const uword col_num, const uword N, const bool set_to_zero = true);
315 template<typename T1> inline void insert_cols(const uword col_num, const Base<eT,T1>& X);
/dports/science/helfem/HelFEM-21461e9/libhelfem/src/
H A Dpolynomial_basis.cpp114 bf.insert_cols(0,x); in print()
115 df.insert_cols(0,x); in print()
/dports/math/R-cran-RcppArmadillo/RcppArmadillo/inst/include/armadillo_bits/
H A DRow_bones.hpp141 … inline void insert_cols(const uword col_num, const uword N, const bool set_to_zero = true);
142 template<typename T1> inline void insert_cols(const uword col_num, const Base<eT,T1>& X);
H A DRow_meat.hpp1076 Row<eT>::insert_cols(const uword col_num, const uword N, const bool set_to_zero) in insert_cols() function in Row
1122 Row<eT>::insert_cols(const uword col_num, const Base<eT,T1>& X) in insert_cols() function in Row
1126 Mat<eT>::insert_cols(col_num, X); in insert_cols()
H A DCube_bones.hpp205 inline void insert_cols(const uword row_num, const uword N, const bool set_to_zero = true);
209 template<typename T1> inline void insert_cols(const uword col_num, const BaseCube<eT,T1>& X);
H A DMat_bones.hpp312 inline void insert_cols(const uword col_num, const uword N, const bool set_to_zero = true);
315 template<typename T1> inline void insert_cols(const uword col_num, const Base<eT,T1>& X);
/dports/science/helfem/HelFEM-21461e9/src/diatomic/
H A Dcompleteness.cpp104 Y.insert_cols(0,expn); in main()
/dports/x11-toolkits/tktable/Tktable2.10/demos/
H A Dtktable.py181 def insert_cols(self, *args): member in Table
/dports/x11-toolkits/tktable/Tktable2.10/library/
H A Dtktable.py285 def insert_cols(self, index, count=None, switches=None): member in Table
/dports/net/py-gspread/gspread-5.1.1/gspread/
H A Dworksheet.py1211 def insert_cols(self, values, col=1, value_input_option=ValueInputOption.raw): member in Worksheet
/dports/textproc/py-openpyxl/openpyxl-2.6.4/openpyxl/worksheet/
H A Dworksheet.py701 def insert_cols(self, idx, amount=1): member in Worksheet

12