Home
last modified time | relevance | path

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

/dports/lang/rust/rustc-1.58.1-src/compiler/rustc_mir_build/src/build/
H A Dscope.rs258 let drop_idx = DropIdx::MAX; in new() localVariable
329 needs_block[drop_idx] = Block::Own; in assign_blocks()
335 match needs_block[drop_idx] { in assign_blocks()
341 blocks[drop_idx] = blocks[pred]; in assign_blocks()
346 } else if drop_idx != ROOT_NODE { in assign_blocks()
685 let mut drop_idx = ROOT_NODE; in break_scope() localVariable
688 drop_idx = drops.add_drop(*drop, drop_idx); in break_scope()
691 drops.add_entry(block, drop_idx); in break_scope()
716 let mut drop_idx = ROOT_NODE; in break_for_else() localVariable
720 drop_idx = drops.add_drop(*drop, drop_idx); in break_for_else()
[all …]
/dports/devel/R-cran-R6/R6/R/
H A Dutils.R13 drop_idx <- duplicated(names(x), fromLast = TRUE) functionVar
14 x[!drop_idx]
/dports/devel/godot/godot-3.2.3-stable/editor/
H A Dcreate_dialog.cpp697 int drop_idx = favorite_list.find(drop_at); in drop_data_fw() local
698 if (drop_idx < 0) in drop_data_fw()
707 if (drop_idx == from_idx) { in drop_data_fw()
709 } else if (drop_idx > from_idx) { in drop_data_fw()
710 drop_idx--; in drop_data_fw()
716 favorite_list.insert(drop_idx, type); in drop_data_fw()
718 if (drop_idx >= favorite_list.size() - 1) { in drop_data_fw()
721 favorite_list.insert(drop_idx + 1, type); in drop_data_fw()
/dports/devel/godot-tools/godot-3.2.3-stable/editor/
H A Dcreate_dialog.cpp697 int drop_idx = favorite_list.find(drop_at); in drop_data_fw() local
698 if (drop_idx < 0) in drop_data_fw()
707 if (drop_idx == from_idx) { in drop_data_fw()
709 } else if (drop_idx > from_idx) { in drop_data_fw()
710 drop_idx--; in drop_data_fw()
716 favorite_list.insert(drop_idx, type); in drop_data_fw()
718 if (drop_idx >= favorite_list.size() - 1) { in drop_data_fw()
721 favorite_list.insert(drop_idx + 1, type); in drop_data_fw()
/dports/devel/godot2/godot-2.1.6-stable/editor/
H A Dcreate_dialog.cpp555 int drop_idx = favorite_list.find(drop_at); in drop_data_fw() local
556 if (drop_idx < 0) in drop_data_fw()
565 if (drop_idx == from_idx) { in drop_data_fw()
567 } else if (drop_idx > from_idx) { in drop_data_fw()
568 drop_idx--; in drop_data_fw()
574 favorite_list.insert(drop_idx, type); in drop_data_fw()
576 if (drop_idx >= favorite_list.size() - 1) { in drop_data_fw()
579 favorite_list.insert(drop_idx + 1, type); in drop_data_fw()
/dports/devel/godot2-tools/godot-2.1.6-stable/editor/
H A Dcreate_dialog.cpp555 int drop_idx = favorite_list.find(drop_at); in drop_data_fw() local
556 if (drop_idx < 0) in drop_data_fw()
565 if (drop_idx == from_idx) { in drop_data_fw()
567 } else if (drop_idx > from_idx) { in drop_data_fw()
568 drop_idx--; in drop_data_fw()
574 favorite_list.insert(drop_idx, type); in drop_data_fw()
576 if (drop_idx >= favorite_list.size() - 1) { in drop_data_fw()
579 favorite_list.insert(drop_idx + 1, type); in drop_data_fw()
/dports/math/py-statsmodels/statsmodels-0.13.1/examples/python/
H A Dinteractions_anova.py155 drop_idx = abs(resid).argmax() variable
156 print(drop_idx) # zero-based index
157 idx = salary_table.index.drop(drop_idx)
201 lm_final = ols("S ~ X + C(E)*C(M)", data=salary_table.drop([drop_idx])).fit()
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/stats/
H A Doutliers_influence.py852 def _ols_xnoti(self, drop_idx, endog_idx='endog', store=True): argument
879 if hasattr(stored, drop_idx):
880 return stored[drop_idx]
886 self.aux_regression_exog[endog_idx][drop_idx]
896 mask = np.arange(k_vars) != drop_idx
900 stored[drop_idx] = res
/dports/math/py-statsmodels/statsmodels-0.13.1/statsmodels/tools/
H A Dgrouputils.py220 def dummy(self, drop_idx=None, sparse=False, dtype=int): argument
227 if drop_idx is not None:
229 del idx[drop_idx]
/dports/math/py-pandas/pandas-1.2.5/pandas/tests/frame/methods/
H A Dtest_drop.py339 drop_idx = grp_size.loc[grp_size == 1]
344 result = idf.drop(drop_idx.index, level=0).reset_index()
345 expected = df[-df.var1.isin(drop_idx.index)]
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/preprocessing/
H A D_encoders.py411 drop_idx = np.where(cat_list == val)[0]
412 if drop_idx.size: # found drop idx
413 drop_indices.append(drop_idx[0])
/dports/devel/functionalplus/FunctionalPlus-0.2.18-p0/examples/
H A D99_problems.cpp185 print_result(drop_idx(0, xs)); in problem_20()
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/linear_model/
H A D_least_angle.py790 drop_idx = [active.pop(ii) for ii in idx]
819 temp = Cov_copy[drop_idx] - np.dot(Gram_copy[drop_idx], coef)
827 % (n_iter, "", drop_idx, n_active, abs(temp))
/dports/math/py-statsmodels/statsmodels-0.13.1/examples/notebooks/
H A Dinteractions_anova.ipynb336 "drop_idx = abs(resid).argmax()\n",
337 "print(drop_idx) # zero-based index\n",
338 "idx = salary_table.index.drop(drop_idx)\n",
408 "lm_final = ols(\"S ~ X + C(E)*C(M)\", data=salary_table.drop([drop_idx])).fit()\n",
/dports/net-mgmt/net-snmp/net-snmp-5.9/snmplib/
H A Dsnmp_client.c497 int drop_idx; in _copy_pdu_vars() local
503 drop_idx = pdu->errindex - skip_count; in _copy_pdu_vars()
505 drop_idx = 0; in _copy_pdu_vars()
517 newpdu->variables = _copy_varlist(var, drop_idx, copy_count); in _copy_pdu_vars()
/dports/devel/functionalplus/FunctionalPlus-0.2.18-p0/test/
H A Dfilter_test.cpp115 auto result = fplus::drop_idx(2, v);
/dports/math/py-spvcm/spvcm-0.3.0/spvcm/
H A Ddiagnostics.py331 return _np.squeeze([_geweke_statistic(data[drop_idx:], drop, hold, **kw)
332 for drop_idx in to_drop])
/dports/devel/functionalplus/FunctionalPlus-0.2.18-p0/include/fplus/
H A Dfwd_instances.autogenerated_defines155 fplus_fwd_define_fn_1(drop_idx)
564 fplus_fwd_flip_define_fn_1(drop_idx)
H A Dfilter.hpp249 Container drop_idx(std::size_t idx, const Container& xs) in drop_idx() function
H A Dcurry_instances.autogenerated_defines155 fplus_curry_define_fn_1(drop_idx)
/dports/databases/pg_repack/pg_repack-ver_1.4.7/bin/
H A Dpg_repack.c2152 goto drop_idx; in repack_table_indexes()
2163 goto drop_idx; in repack_table_indexes()
2181 drop_idx: in repack_table_indexes()
/dports/www/R-cran-shiny/shiny/R/
H A Dutils.R181 drop_idx <- duplicated(names(x), fromLast = TRUE) functionVar
182 x[!drop_idx]
/dports/science/py-scikit-learn/scikit-learn-1.0.2/sklearn/preprocessing/tests/
H A Dtest_encoders.py933 for drop_cat, drop_idx, cat_list in zip(
936 assert cat_list[int(drop_idx)] == drop_cat
/dports/databases/xtrabackup8/percona-xtrabackup-8.0.14/sql/
H A Dsql_table.cc14324 size_t drop_idx = 0; in prepare_fields_and_keys() local
14325 while (drop_idx < drop_list.size()) { in prepare_fields_and_keys()
14326 const Alter_drop *drop = drop_list[drop_idx]; in prepare_fields_and_keys()
14330 drop_idx++; in prepare_fields_and_keys()
14332 if (drop_idx < drop_list.size()) { in prepare_fields_and_keys()
14333 drop_list.erase(drop_idx); in prepare_fields_and_keys()
/dports/devel/functionalplus/FunctionalPlus-0.2.18-p0/include_all_in_one/include/fplus/
H A Dfplus.hpp5820 Container drop_idx(std::size_t idx, const Container& xs) in drop_idx() function
15066 fplus_curry_define_fn_1(drop_idx)
15676 fplus_fwd_define_fn_1(drop_idx)
16085 fplus_fwd_flip_define_fn_1(drop_idx)