Home
last modified time | relevance | path

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

12345678910>>...27

/dports/math/kig/kig-21.12.3/modes/
H A Dedittype.cc22 EditType::EditType( QWidget* parent, const QString& name, const QString& desc, in EditType() function in EditType
57 connect(okButton, &QAbstractButton::clicked, this, &EditType::slotOk ); in EditType()
58 …connect(buttonBox->button(QDialogButtonBox::Cancel), &QAbstractButton::clicked, this, &EditType::s… in EditType()
61 EditType::~EditType() in ~EditType()
66 void EditType::slotHelp() in slotHelp()
71 void EditType::slotOk() in slotOk()
103 void EditType::slotCancel() in slotCancel()
108 QString EditType::name() const in name()
113 QString EditType::description() const in description()
118 QString EditType::icon() const in icon()
H A Dedittype.h17 class EditType : public QDialog
27 explicit EditType( QWidget* parent, const QString& name = QString(),
29 ~EditType();
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/triple_accel-0.3.4/tests/
H A Dbasic_tests.rs169 assert!(res.1.unwrap() == vec![Edit{edit: EditType::AGap, count: 1}, in test_trace_on_levenshtein_naive()
170 Edit{edit: EditType::Match, count: 2}, in test_trace_on_levenshtein_naive()
171 Edit{edit: EditType::AGap, count: 1}, in test_trace_on_levenshtein_naive()
178 assert!(res.1.unwrap() == vec![Edit{edit: EditType::BGap, count: 5}]); in test_trace_on_levenshtein_naive()
184 assert!(res.1.unwrap() == vec![Edit{edit: EditType::Match, count: 3}, in test_trace_on_levenshtein_naive()
192 assert!(res.1.unwrap() == vec![Edit{edit: EditType::Match, count: 1}, in test_trace_on_levenshtein_naive()
401 assert!(res.1.unwrap() == vec![Edit{edit: EditType::AGap, count: 1}, in test_trace_on_levenshtein_naive_k_with_opts()
402 Edit{edit: EditType::Match, count: 2}, in test_trace_on_levenshtein_naive_k_with_opts()
403 Edit{edit: EditType::AGap, count: 1}, in test_trace_on_levenshtein_naive_k_with_opts()
551 assert!(res.1.unwrap() == vec![Edit{edit: EditType::AGap, count: 1}, in test_trace_on_levenshtein_simd_k_with_opts()
[all …]
/dports/editors/xi-core/xi-editor-0.3.0/rust/core-lib/src/
H A Deditor.rs79 this_edit_type: EditType,
80 last_edit_type: EditType,
119 last_edit_type: EditType::Other, in with_text()
120 this_edit_type: EditType::Other, in with_text()
154 self.this_edit_type = EditType::Other in update_edit_type()
504 self.this_edit_type = EditType::Indent; in modify_indent()
545 self.this_edit_type = EditType::Delete; in outdent()
824 self.this_edit_type = EditType::Other; in duplicate_line()
985 pub enum EditType { enum
1003 impl EditType { implementation
[all …]
/dports/editors/xi-core/xi-editor-0.3.0/rust/syntect-plugin/src/
H A Dmain.rs51 pub enum EditType { enum
57 impl FromStr for EditType { implementation
60 fn from_str(s: &str) -> Result<EditType, ()> { in from_str() argument
62 "insert" => Ok(EditType::Insert), in from_str()
63 "newline" => Ok(EditType::Newline), in from_str()
64 "other" => Ok(EditType::Other), in from_str()
273 EditType::Newline => { in consider_indentation()
276 EditType::Insert => { in consider_indentation()
287 EditType::Other => { in consider_indentation()
683 && (edit_type == Some(EditType::Newline) in update()
[all …]
/dports/graphics/rawtherapee/rawtherapee-5.8/rtgui/
H A Deditcallbacks.h40 EditType editingType;
56 explicit EditSubscriber (EditType editType);
67 EditType getEditingType() const;
/dports/net-im/psi/psi-1.5/src/sxe/
H A Dsxeedit.h31 enum EditType {New, Record, Remove}; enum
47 virtual EditType type() const = 0;
/dports/cad/opencascade/opencascade-7.6.0/tools/ViewControl/
H A DViewControl_TableItemDelegate.cxx54 ViewControl_EditType anEditType = myModelValues->EditType (aRow, aColumn); in createEditor()
72 ViewControl_EditType anEditType = myModelValues->EditType (aRow, aColumn); in setEditorData()
89 ViewControl_EditType anEditType = myModelValues->EditType (aRow, aColumn); in setModelData()
/dports/misc/usd/USD-21.11/pxr/usd/pcp/
H A DnamespaceEdits.h55 enum EditType { enum
83 EditType type; ///< Type of edit.
/dports/sysutils/czkawka/czkawka-3.3.1/cargo-crates/triple_accel-0.3.4/src/
H A Dlib.rs148 pub enum EditType { enum
162 pub edit: EditType,
H A Dlevenshtein.rs217 if a_new[j] == b_new[i] {EditType::Match} else {EditType::Mismatch} in levenshtein_naive_with_opts()
221 if swap {EditType::BGap} else {EditType::AGap} in levenshtein_naive_with_opts()
225 if swap {EditType::AGap} else {EditType::BGap} in levenshtein_naive_with_opts()
230 EditType::Transpose in levenshtein_naive_with_opts()
452 if a_new[i] == b_new[j] {EditType::Match} else {EditType::Mismatch} in levenshtein_naive_k_with_opts()
456 if swap {EditType::BGap} else {EditType::AGap} in levenshtein_naive_k_with_opts()
460 if swap {EditType::AGap} else {EditType::BGap} in levenshtein_naive_k_with_opts()
465 EditType::Transpose in levenshtein_naive_k_with_opts()
946 … if *a.get_unchecked(i) == *b.get_unchecked(j) {EditType::Match} else {EditType::Mismatch}
957 … if swap {EditType::BGap} else {EditType::AGap} // account for the swap in the beginning
[all …]
/dports/security/keybase/client-v5.7.1/shared/fs/browser/rows/
H A Dediting.tsx30 type={edit.type === Types.EditType.NewFolder ? 'iconfont-add' : 'iconfont-edit'}
65 … label={edit.error ? 'Retry' : edit.type === Types.EditType.NewFolder ? 'Create' : 'Save'}
71 type={edit.type === Types.EditType.NewFolder ? 'iconfont-trash' : 'iconfont-close'}
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/golang/gddo/vendor/github.com/google/go-cmp/cmp/internal/diff/
H A Ddiff.go16 type EditType uint8 type
20 Identity EditType = iota
30 type EditScript []EditType
339 func (p *path) append(t EditType) {
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/docker/moby-20.10.2/vendor/github.com/google/go-cmp/cmp/internal/diff/
H A Ddiff.go16 type EditType uint8 type
20 Identity EditType = iota
30 type EditScript []EditType
339 func (p *path) append(t EditType) {
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/docker/cli/cli-20.10.2/vendor/github.com/google/go-cmp/cmp/internal/diff/
H A Ddiff.go16 type EditType uint8 type
20 Identity EditType = iota
30 type EditScript []EditType
339 func (p *path) append(t EditType) {
/dports/devel/gitlab-runner/gitlab-runner-8925d9a06fd8e452e2161a768462652a2a13111f/vendor/github.com/containerd/containerd/containerd-1.4.3/vendor/github.com/google/go-cmp/cmp/internal/diff/
H A Ddiff.go16 type EditType uint8 type
20 Identity EditType = iota
30 type EditScript []EditType
339 func (p *path) append(t EditType) {
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/containerd/containerd/vendor/github.com/google/go-cmp/cmp/internal/diff/
H A Ddiff.go16 type EditType uint8 type
20 Identity EditType = iota
30 type EditScript []EditType
339 func (p *path) append(t EditType) {
/dports/sysutils/istio/istio-1.6.7/vendor/github.com/docker/docker/vendor/github.com/google/go-cmp/cmp/internal/diff/
H A Ddiff.go16 type EditType uint8 type
20 Identity EditType = iota
30 type EditScript []EditType
339 func (p *path) append(t EditType) {
/dports/sysutils/docker/docker-ce-18.09.5/components/engine/vendor/github.com/google/go-cmp/cmp/internal/diff/
H A Ddiff.go16 type EditType uint8 type
20 Identity EditType = iota
30 type EditScript []EditType
339 func (p *path) append(t EditType) {
/dports/sysutils/docker/docker-ce-18.09.5/components/cli/vendor/github.com/google/go-cmp/cmp/internal/diff/
H A Ddiff.go16 type EditType uint8 type
20 Identity EditType = iota
30 type EditScript []EditType
339 func (p *path) append(t EditType) {
/dports/databases/cayley/cayley-0.7.5-2-gcf576ba/vendor/github.com/docker/docker/vendor/github.com/google/go-cmp/cmp/internal/diff/
H A Ddiff.go16 type EditType uint8 type
20 Identity EditType = iota
30 type EditScript []EditType
339 func (p *path) append(t EditType) {
/dports/databases/timescaledb-backup/timescaledb-backup-0.1.1/vendor/github.com/docker/docker/vendor/github.com/google/go-cmp/cmp/internal/diff/
H A Ddiff.go16 type EditType uint8 type
20 Identity EditType = iota
30 type EditScript []EditType
339 func (p *path) append(t EditType) {
/dports/net-mgmt/promscale/promscale-0.6.2/vendor/github.com/docker/docker/vendor/github.com/google/go-cmp/cmp/internal/diff/
H A Ddiff.go16 type EditType uint8 type
20 Identity EditType = iota
30 type EditScript []EditType
339 func (p *path) append(t EditType) {
/dports/net-mgmt/semaphore/semaphore-2.6.8/vendor/go.mongodb.org/mongo-driver/vendor/github.com/google/go-cmp/cmp/internal/diff/
H A Ddiff.go16 type EditType uint8 type
20 Identity EditType = iota
30 type EditScript []EditType
339 func (p *path) append(t EditType) {
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/go.mongodb.org/mongo-driver/vendor/github.com/google/go-cmp/cmp/internal/diff/
H A Ddiff.go16 type EditType uint8 type
20 Identity EditType = iota
30 type EditScript []EditType
339 func (p *path) append(t EditType) {

12345678910>>...27