Home
last modified time | relevance | path

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

1234567891011

/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/demos/dbbrowse/
H A Ddlguser.cpp48 layout->left.SameAs(this, wxLeft, 10); in DlgUser()
49 layout->top.SameAs(this, wxTop, 10); in DlgUser()
62 layout->left.SameAs(m_Label1, wxRight, 10); in DlgUser()
73 layout->left.SameAs(m_Label1, wxLeft); in DlgUser()
76 layout->width.SameAs(m_Label1, wxWidth); in DlgUser()
82 layout->left.SameAs(m_UserName, wxLeft); in DlgUser()
83 layout->width.SameAs(m_UserName, wxWidth); in DlgUser()
92 layout->left.SameAs(this, wxLeft, 10); in DlgUser()
101 layout->left.SameAs(m_OK, wxRight, 10); in DlgUser()
102 layout->top.SameAs(m_OK, wxTop); in DlgUser()
[all …]
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/demos/dbbrowse/
H A Ddlguser.cpp48 layout->left.SameAs(this, wxLeft, 10); in DlgUser()
49 layout->top.SameAs(this, wxTop, 10); in DlgUser()
62 layout->left.SameAs(m_Label1, wxRight, 10); in DlgUser()
73 layout->left.SameAs(m_Label1, wxLeft); in DlgUser()
76 layout->width.SameAs(m_Label1, wxWidth); in DlgUser()
82 layout->left.SameAs(m_UserName, wxLeft); in DlgUser()
83 layout->width.SameAs(m_UserName, wxWidth); in DlgUser()
92 layout->left.SameAs(this, wxLeft, 10); in DlgUser()
101 layout->left.SameAs(m_OK, wxRight, 10); in DlgUser()
102 layout->top.SameAs(m_OK, wxTop); in DlgUser()
[all …]
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/demos/dbbrowse/
H A Ddlguser.cpp48 layout->left.SameAs(this, wxLeft, 10); in DlgUser()
49 layout->top.SameAs(this, wxTop, 10); in DlgUser()
62 layout->left.SameAs(m_Label1, wxRight, 10); in DlgUser()
73 layout->left.SameAs(m_Label1, wxLeft); in DlgUser()
76 layout->width.SameAs(m_Label1, wxWidth); in DlgUser()
82 layout->left.SameAs(m_UserName, wxLeft); in DlgUser()
83 layout->width.SameAs(m_UserName, wxWidth); in DlgUser()
92 layout->left.SameAs(this, wxLeft, 10); in DlgUser()
101 layout->left.SameAs(m_OK, wxRight, 10); in DlgUser()
102 layout->top.SameAs(m_OK, wxTop); in DlgUser()
[all …]
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/demos/dbbrowse/
H A Ddlguser.cpp48 layout->left.SameAs(this, wxLeft, 10); in DlgUser()
49 layout->top.SameAs(this, wxTop, 10); in DlgUser()
62 layout->left.SameAs(m_Label1, wxRight, 10); in DlgUser()
73 layout->left.SameAs(m_Label1, wxLeft); in DlgUser()
76 layout->width.SameAs(m_Label1, wxWidth); in DlgUser()
82 layout->left.SameAs(m_UserName, wxLeft); in DlgUser()
83 layout->width.SameAs(m_UserName, wxWidth); in DlgUser()
92 layout->left.SameAs(this, wxLeft, 10); in DlgUser()
101 layout->left.SameAs(m_OK, wxRight, 10); in DlgUser()
102 layout->top.SameAs(m_OK, wxTop); in DlgUser()
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-ts1.C13 concept SameAs = __is_same_as(T, U);
20 void f3(SameAs<int> q) { } in f3()
21 void f4(True a, SameAs<decltype(a)> b) { } in f4()
25 SameAs<int> f7() { return 0; } in f7()
26 SameAs<int> f8() { return 'a'; } // { dg-error "deduced return type" } in f8()
29 auto f11() -> SameAs<int> { return 0; }
30 auto f12() -> SameAs<char> { return 0; } // { dg-error "deduced return type" }
31 auto f13(int n) -> SameAs<decltype(n)> { return n; }
32 auto f14(int n) -> SameAs<decltype(n)> { return 'a'; } // { dg-error "deduced return type" }
33 auto f15(auto x) -> SameAs<decltype(x)> { return 0; } // { dg-error "deduced return type" }
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-ts1.C13 concept SameAs = __is_same_as(T, U);
20 void f3(SameAs<int> q) { } in f3()
21 void f4(True a, SameAs<decltype(a)> b) { } in f4()
25 SameAs<int> f7() { return 0; } in f7()
26 SameAs<int> f8() { return 'a'; } // { dg-error "deduced return type" } in f8()
29 auto f11() -> SameAs<int> { return 0; }
30 auto f12() -> SameAs<char> { return 0; } // { dg-error "deduced return type" }
31 auto f13(int n) -> SameAs<decltype(n)> { return n; }
32 auto f14(int n) -> SameAs<decltype(n)> { return 'a'; } // { dg-error "deduced return type" }
33 auto f15(auto x) -> SameAs<decltype(x)> { return 0; } // { dg-error "deduced return type" }
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-ts1.C13 concept SameAs = __is_same_as(T, U);
20 void f3(SameAs<int> q) { } in f3()
21 void f4(True a, SameAs<decltype(a)> b) { } in f4()
25 SameAs<int> f7() { return 0; } in f7()
26 SameAs<int> f8() { return 'a'; } // { dg-error "deduced return type" } in f8()
29 auto f11() -> SameAs<int> { return 0; }
30 auto f12() -> SameAs<char> { return 0; } // { dg-error "deduced return type" }
31 auto f13(int n) -> SameAs<decltype(n)> { return n; }
32 auto f14(int n) -> SameAs<decltype(n)> { return 'a'; } // { dg-error "deduced return type" }
33 auto f15(auto x) -> SameAs<decltype(x)> { return 0; } // { dg-error "deduced return type" }
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-ts1.C13 concept SameAs = __is_same_as(T, U);
20 void f3(SameAs<int> q) { } in f3()
21 void f4(True a, SameAs<decltype(a)> b) { } in f4()
25 SameAs<int> f7() { return 0; } in f7()
26 SameAs<int> f8() { return 'a'; } // { dg-error "deduced return type" } in f8()
29 auto f11() -> SameAs<int> { return 0; }
30 auto f12() -> SameAs<char> { return 0; } // { dg-error "deduced return type" }
31 auto f13(int n) -> SameAs<decltype(n)> { return n; }
32 auto f14(int n) -> SameAs<decltype(n)> { return 'a'; } // { dg-error "deduced return type" }
33 auto f15(auto x) -> SameAs<decltype(x)> { return 0; } // { dg-error "deduced return type" }
/dports/misc/cxx_atomics_pic/gcc-11.2.0/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-ts1.C13 concept SameAs = __is_same_as(T, U);
20 void f3(SameAs<int> q) { } in f3()
21 void f4(True a, SameAs<decltype(a)> b) { } in f4()
25 SameAs<int> f7() { return 0; } in f7()
26 SameAs<int> f8() { return 'a'; } // { dg-error "deduced return type" } in f8()
29 auto f11() -> SameAs<int> { return 0; }
30 auto f12() -> SameAs<char> { return 0; } // { dg-error "deduced return type" }
31 auto f13(int n) -> SameAs<decltype(n)> { return n; }
32 auto f14(int n) -> SameAs<decltype(n)> { return 'a'; } // { dg-error "deduced return type" }
33 auto f15(auto x) -> SameAs<decltype(x)> { return 0; } // { dg-error "deduced return type" }
/dports/lang/gcc10/gcc-10.3.0/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-ts1.C13 concept SameAs = __is_same_as(T, U);
20 void f3(SameAs<int> q) { } in f3()
21 void f4(True a, SameAs<decltype(a)> b) { } in f4()
25 SameAs<int> f7() { return 0; } in f7()
26 SameAs<int> f8() { return 'a'; } // { dg-error "deduced return type" } in f8()
29 auto f11() -> SameAs<int> { return 0; }
30 auto f12() -> SameAs<char> { return 0; } // { dg-error "deduced return type" }
31 auto f13(int n) -> SameAs<decltype(n)> { return n; }
32 auto f14(int n) -> SameAs<decltype(n)> { return 'a'; } // { dg-error "deduced return type" }
33 auto f15(auto x) -> SameAs<decltype(x)> { return 0; } // { dg-error "deduced return type" }
/dports/lang/gcc10-devel/gcc-10-20211008/gcc/testsuite/g++.dg/cpp2a/
H A Dconcepts-ts1.C13 concept SameAs = __is_same_as(T, U);
20 void f3(SameAs<int> q) { } in f3()
21 void f4(True a, SameAs<decltype(a)> b) { } in f4()
25 SameAs<int> f7() { return 0; } in f7()
26 SameAs<int> f8() { return 'a'; } // { dg-error "deduced return type" } in f8()
29 auto f11() -> SameAs<int> { return 0; }
30 auto f12() -> SameAs<char> { return 0; } // { dg-error "deduced return type" }
31 auto f13(int n) -> SameAs<decltype(n)> { return n; }
32 auto f14(int n) -> SameAs<decltype(n)> { return 'a'; } // { dg-error "deduced return type" }
33 auto f15(auto x) -> SameAs<decltype(x)> { return 0; } // { dg-error "deduced return type" }
/dports/biology/ncbi-cxx-toolkit/ncbi_cxx--25_2_0/src/app/cn3d/
H A Dshow_hide_dialog.cpp79 c1->bottom.SameAs (this, wxBottom, MARGIN); in BEGIN_EVENT_TABLE()
80 c1->right.SameAs (this, wxRight, MARGIN); in BEGIN_EVENT_TABLE()
87 c2->bottom.SameAs (this, wxBottom, MARGIN); in BEGIN_EVENT_TABLE()
88 c2->centreX.SameAs (this, wxCentreX); in BEGIN_EVENT_TABLE()
90 c2->top.SameAs (doneB, wxTop); in BEGIN_EVENT_TABLE()
96 c3->bottom.SameAs (this, wxBottom, MARGIN); in BEGIN_EVENT_TABLE()
99 c3->top.SameAs (doneB, wxTop); in BEGIN_EVENT_TABLE()
119 c3->top.SameAs (doneB, wxTop); in BEGIN_EVENT_TABLE()
128 c4->top.SameAs (this, wxTop, MARGIN); in BEGIN_EVENT_TABLE()
129 c4->left.SameAs (this, wxLeft, MARGIN); in BEGIN_EVENT_TABLE()
[all …]
H A Dmultitext_dialog.cpp76 c->bottom.SameAs (this, wxBottom, 10); in BEGIN_EVENT_TABLE()
77 c->left.SameAs (this, wxCentreX, 10); in BEGIN_EVENT_TABLE()
83 c->bottom.SameAs (this, wxBottom, 10); in BEGIN_EVENT_TABLE()
84 c->right.SameAs (this, wxCentreX, 10); in BEGIN_EVENT_TABLE()
90 c->top.SameAs (this, wxTop); in BEGIN_EVENT_TABLE()
91 c->left.SameAs (this, wxLeft); in BEGIN_EVENT_TABLE()
92 c->right.SameAs (this, wxRight); in BEGIN_EVENT_TABLE()
93 c->bottom.SameAs (bDone, wxTop, 10); in BEGIN_EVENT_TABLE()
/dports/x11-toolkits/py-wxPython40/wxPython-4.0.7/demo/
H A DLayoutConstraints.py30 lc.top.SameAs(self, wx.Top, 10)
31 lc.left.SameAs(self, wx.Left, 10)
32 lc.bottom.SameAs(self, wx.Bottom, 10)
39 lc.top.SameAs(self, wx.Top, 10)
40 lc.right.SameAs(self, wx.Right, 10)
49 lc.right.SameAs(self, wx.Right, 10)
50 lc.bottom.SameAs(self, wx.Bottom, 10)
56 lc.centreX.SameAs (self.panelA, wx.CentreX)
64 lc.top.SameAs (self.panelB, wx.Top, 2)
87 lc.height.SameAs (b, wx.Height)
[all …]
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/contrib/samples/ogl/studio/
H A Ddialogs.cpp124 c->top.SameAs (this, wxTop, 5); in IMPLEMENT_CLASS()
125 c->left.SameAs (this, wxLeft, 5); in IMPLEMENT_CLASS()
126 c->right.SameAs (this, wxRight, 5); in IMPLEMENT_CLASS()
134 c->right.SameAs (this, wxRight, 5); in IMPLEMENT_CLASS()
135 c->bottom.SameAs (this, wxBottom, 5); in IMPLEMENT_CLASS()
143 c->bottom.SameAs (this, wxBottom, 5); in IMPLEMENT_CLASS()
151 c->bottom.SameAs (this, wxBottom, 5); in IMPLEMENT_CLASS()
308 c->top.SameAs (this, wxTop, 5); in IMPLEMENT_CLASS()
309 c->left.SameAs (this, wxLeft, 5); in IMPLEMENT_CLASS()
310 c->right.SameAs (this, wxRight, 5); in IMPLEMENT_CLASS()
[all …]
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/contrib/samples/ogl/studio/
H A Ddialogs.cpp124 c->top.SameAs (this, wxTop, 5); in IMPLEMENT_CLASS()
125 c->left.SameAs (this, wxLeft, 5); in IMPLEMENT_CLASS()
126 c->right.SameAs (this, wxRight, 5); in IMPLEMENT_CLASS()
134 c->right.SameAs (this, wxRight, 5); in IMPLEMENT_CLASS()
135 c->bottom.SameAs (this, wxBottom, 5); in IMPLEMENT_CLASS()
143 c->bottom.SameAs (this, wxBottom, 5); in IMPLEMENT_CLASS()
151 c->bottom.SameAs (this, wxBottom, 5); in IMPLEMENT_CLASS()
308 c->top.SameAs (this, wxTop, 5); in IMPLEMENT_CLASS()
309 c->left.SameAs (this, wxLeft, 5); in IMPLEMENT_CLASS()
310 c->right.SameAs (this, wxRight, 5); in IMPLEMENT_CLASS()
[all …]
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/contrib/samples/ogl/studio/
H A Ddialogs.cpp124 c->top.SameAs (this, wxTop, 5); in IMPLEMENT_CLASS()
125 c->left.SameAs (this, wxLeft, 5); in IMPLEMENT_CLASS()
126 c->right.SameAs (this, wxRight, 5); in IMPLEMENT_CLASS()
134 c->right.SameAs (this, wxRight, 5); in IMPLEMENT_CLASS()
135 c->bottom.SameAs (this, wxBottom, 5); in IMPLEMENT_CLASS()
143 c->bottom.SameAs (this, wxBottom, 5); in IMPLEMENT_CLASS()
151 c->bottom.SameAs (this, wxBottom, 5); in IMPLEMENT_CLASS()
308 c->top.SameAs (this, wxTop, 5); in IMPLEMENT_CLASS()
309 c->left.SameAs (this, wxLeft, 5); in IMPLEMENT_CLASS()
310 c->right.SameAs (this, wxRight, 5); in IMPLEMENT_CLASS()
[all …]
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/contrib/samples/ogl/studio/
H A Ddialogs.cpp124 c->top.SameAs (this, wxTop, 5); in IMPLEMENT_CLASS()
125 c->left.SameAs (this, wxLeft, 5); in IMPLEMENT_CLASS()
126 c->right.SameAs (this, wxRight, 5); in IMPLEMENT_CLASS()
134 c->right.SameAs (this, wxRight, 5); in IMPLEMENT_CLASS()
135 c->bottom.SameAs (this, wxBottom, 5); in IMPLEMENT_CLASS()
143 c->bottom.SameAs (this, wxBottom, 5); in IMPLEMENT_CLASS()
151 c->bottom.SameAs (this, wxBottom, 5); in IMPLEMENT_CLASS()
308 c->top.SameAs (this, wxTop, 5); in IMPLEMENT_CLASS()
309 c->left.SameAs (this, wxLeft, 5); in IMPLEMENT_CLASS()
310 c->right.SameAs (this, wxRight, 5); in IMPLEMENT_CLASS()
[all …]
/dports/x11-toolkits/wxgtk28-contrib-common/wxGTK-2.8.12/contrib/samples/deprecated/proplist/
H A Dproplist.cpp277 c->right.SameAs(panel, wxRight, 4); in PropertyFormTest()
278 c->bottom.SameAs(panel, wxBottom, 4); in PropertyFormTest()
285 c->bottom.SameAs(panel, wxBottom, 4); in PropertyFormTest()
309 c->left.SameAs(panel, wxLeft, 4); in PropertyFormTest()
310 c->top.SameAs(panel, wxTop, 4); in PropertyFormTest()
319 c->left.SameAs(text, wxRight, 20); in PropertyFormTest()
320 c->top.SameAs(panel, wxTop, 4); in PropertyFormTest()
329 c->left.SameAs(panel, wxLeft, 4); in PropertyFormTest()
330 c->top.SameAs(text, wxBottom, 10); in PropertyFormTest()
339 c->left.SameAs(panel, wxLeft, 4); in PropertyFormTest()
[all …]
/dports/x11-toolkits/wxgtk28/wxGTK-2.8.12/contrib/samples/deprecated/proplist/
H A Dproplist.cpp277 c->right.SameAs(panel, wxRight, 4); in PropertyFormTest()
278 c->bottom.SameAs(panel, wxBottom, 4); in PropertyFormTest()
285 c->bottom.SameAs(panel, wxBottom, 4); in PropertyFormTest()
309 c->left.SameAs(panel, wxLeft, 4); in PropertyFormTest()
310 c->top.SameAs(panel, wxTop, 4); in PropertyFormTest()
319 c->left.SameAs(text, wxRight, 20); in PropertyFormTest()
320 c->top.SameAs(panel, wxTop, 4); in PropertyFormTest()
329 c->left.SameAs(panel, wxLeft, 4); in PropertyFormTest()
330 c->top.SameAs(text, wxBottom, 10); in PropertyFormTest()
339 c->left.SameAs(panel, wxLeft, 4); in PropertyFormTest()
[all …]
/dports/x11-toolkits/wxgtk28-common/wxGTK-2.8.12/contrib/samples/deprecated/proplist/
H A Dproplist.cpp277 c->right.SameAs(panel, wxRight, 4); in PropertyFormTest()
278 c->bottom.SameAs(panel, wxBottom, 4); in PropertyFormTest()
285 c->bottom.SameAs(panel, wxBottom, 4); in PropertyFormTest()
309 c->left.SameAs(panel, wxLeft, 4); in PropertyFormTest()
310 c->top.SameAs(panel, wxTop, 4); in PropertyFormTest()
319 c->left.SameAs(text, wxRight, 20); in PropertyFormTest()
320 c->top.SameAs(panel, wxTop, 4); in PropertyFormTest()
329 c->left.SameAs(panel, wxLeft, 4); in PropertyFormTest()
330 c->top.SameAs(text, wxBottom, 10); in PropertyFormTest()
339 c->left.SameAs(panel, wxLeft, 4); in PropertyFormTest()
[all …]
/dports/x11-toolkits/wxgtk28-contrib/wxGTK-2.8.12/contrib/samples/deprecated/proplist/
H A Dproplist.cpp277 c->right.SameAs(panel, wxRight, 4); in PropertyFormTest()
278 c->bottom.SameAs(panel, wxBottom, 4); in PropertyFormTest()
285 c->bottom.SameAs(panel, wxBottom, 4); in PropertyFormTest()
309 c->left.SameAs(panel, wxLeft, 4); in PropertyFormTest()
310 c->top.SameAs(panel, wxTop, 4); in PropertyFormTest()
319 c->left.SameAs(text, wxRight, 20); in PropertyFormTest()
320 c->top.SameAs(panel, wxTop, 4); in PropertyFormTest()
329 c->left.SameAs(panel, wxLeft, 4); in PropertyFormTest()
330 c->top.SameAs(text, wxBottom, 10); in PropertyFormTest()
339 c->left.SameAs(panel, wxLeft, 4); in PropertyFormTest()
[all …]
/dports/www/grafana8/grafana-8.3.6/vendor/github.com/dop251/goja/
H A Dmap_test.go47 if !expected.SameAs(actual) {
92 if n2Val := m.get(n2Key); !asciiString("n2").SameAs(n2Val) {
95 if n1Val := m.get(n1Key); !asciiString("n1").SameAs(n1Val) {
102 if n2Val := m.get(n2Key); !asciiString("n2").SameAs(n2Val) {
124 if !intToValue(1).SameAs(ent.key) {
127 if !valueTrue.SameAs(ent.value) {
141 if !one.SameAs(entry.key) {
148 if !two.SameAs(entry.key) {
156 if !one.SameAs(entry.key) {
/dports/net-p2p/go-ethereum/go-ethereum-1.10.14/vendor/github.com/dop251/goja/
H A Dmap_test.go47 if !expected.SameAs(actual) {
92 if n2Val := m.get(n2Key); !asciiString("n2").SameAs(n2Val) {
95 if n1Val := m.get(n1Key); !asciiString("n1").SameAs(n1Val) {
102 if n2Val := m.get(n2Key); !asciiString("n2").SameAs(n2Val) {
124 if !intToValue(1).SameAs(ent.key) {
127 if !valueTrue.SameAs(ent.value) {
141 if !one.SameAs(entry.key) {
148 if !two.SameAs(entry.key) {
156 if !one.SameAs(entry.key) {
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/ghc-exactprint-0.6.4/tests/examples/ghc710/
H A DPuncFunctions.hs3 -> SameAs f g r -> r -> Property
8 -> SameAs f g r -> r -> t -> Property
13 -> SameAs f g r -> r -> t -> s -> Property
18 -> SameAs f g r -> r -> r -> Property
23 -> SameAs f g r -> p -> Property

1234567891011