Home
last modified time | relevance | path

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

12345678910>>...525

/dports/lang/mono-basic/mono-basic-4.7/vbnc/vbnc/tests/CompileTime2/
H A DBoolean2.vb990 Check("1" And "1", 1L, "'1' and '1'")
991 Check("1" And "0", 0L, "'1' and '0'")
1943 Check("1" Or "1", 1L, "'1' or '1'")
1944 Check("1" Or "0", 1L, "'1' or '0'")
1945 Check("0" Or "1", 1L, "'0' or '1'")
1946 Check("0" Or "0", 0L, "'0' or '0'")
1964 Check(Not True, False, "not true")
1965 Check(Not False, True, "not false")
2034 Check(Not "0", -1L, "not '0'")
2035 Check(Not "1", -2L, "not '1'")
[all …]
H A DMethodResolution8.vb24 result = Check("A1", result, A(Nothing), 1)
25 result = Check("A2", result, A("a"), 3)
28 result = Check("A5", result, A(), 2)
30 result = Check("B10", result, B(Nothing), 1)
31 result = Check("B11", result, B(), 2)
32 result = Check("B12", result, B("b"), -1)
33 result = Check("B13", result, B("b", 1), -2)
36 result = Check("B16", result, B(1, 2, 3, 4), 6)
47 result = Check("C11", result, B(), 2)
48 result = Check("C12", result, B("b"), -1)
[all …]
/dports/devel/qtcreator/qt-creator-opensource-src-5.0.3/tests/auto/debugger/
H A Dtst_dumpers.cpp523 struct Check struct
525 Check() {} in Check() argument
633 QList<Check> checks;
640 struct Check4 : Check
651 struct Check5 : Check
662 struct Check6 : Check
674 struct CheckPairish : Check
676 using Check::Check;
787 Check check5 = check; in operator +()
791 Check check6 = check; in operator +()
[all …]
/dports/net/ns3/ns-allinone-3.35/ns-3.35/src/core/test/
H A Dint64x64-test-suite.cc995 Check (2); in DoRun()
996 Check (3); in DoRun()
997 Check (4); in DoRun()
998 Check (5); in DoRun()
999 Check (6); in DoRun()
1000 Check (10); in DoRun()
1001 Check (99); in DoRun()
1224 Check (-2); in DoRun()
1225 Check (-1); in DoRun()
1226 Check ( 0); in DoRun()
[all …]
/dports/sysutils/aptly/aptly-1.4.0/deb/
H A Dversion_test.go105 c.Check(e, IsNil)
112 c.Check(e, IsNil)
118 c.Check(e, IsNil)
124 c.Check(e, IsNil)
130 c.Check(e, IsNil)
136 c.Check(e, IsNil)
142 c.Check(e, IsNil)
148 c.Check(e, IsNil)
154 c.Check(e, IsNil)
160 c.Check(e, IsNil)
[all …]
H A Dpackage_test.go69 c.Check(err, IsNil)
87 c.Check(err, IsNil)
324 c.Check(
327 c.Check(
330 c.Check(
361 c.Check(err, IsNil)
367 c.Check(err, IsNil)
373 c.Check(err, IsNil)
379 c.Check(err, IsNil)
400 c.Check(err, IsNil)
[all …]
/dports/science/madness/madness-ebb3fd7/src/madness/external/elemental/tests/core/
H A DDistMatrix.cpp17 Check( DistMatrix<T,AColDist,ARowDist>& A, in Check() function
100 Check( A_MC_STAR, A_MC_MR, print ); in DistMatrixTest()
101 Check( A_STAR_MR, A_MC_MR, print ); in DistMatrixTest()
102 Check( A_MR_MC, A_MC_MR, print ); in DistMatrixTest()
103 Check( A_MR_STAR, A_MC_MR, print ); in DistMatrixTest()
104 Check( A_STAR_MC, A_MC_MR, print ); in DistMatrixTest()
105 Check( A_VC_STAR, A_MC_MR, print ); in DistMatrixTest()
106 Check( A_STAR_VC, A_MC_MR, print ); in DistMatrixTest()
107 Check( A_VR_STAR, A_MC_MR, print ); in DistMatrixTest()
108 Check( A_STAR_VR, A_MC_MR, print ); in DistMatrixTest()
[all …]
H A DBlockDistMatrix.cpp104 Check( A_MC_STAR, A_MC_MR, print ); in BlockDistMatrixTest()
105 Check( A_STAR_MR, A_MC_MR, print ); in BlockDistMatrixTest()
106 Check( A_MR_MC, A_MC_MR, print ); in BlockDistMatrixTest()
107 Check( A_MR_STAR, A_MC_MR, print ); in BlockDistMatrixTest()
108 Check( A_STAR_MC, A_MC_MR, print ); in BlockDistMatrixTest()
109 Check( A_VC_STAR, A_MC_MR, print ); in BlockDistMatrixTest()
110 Check( A_STAR_VC, A_MC_MR, print ); in BlockDistMatrixTest()
111 Check( A_VR_STAR, A_MC_MR, print ); in BlockDistMatrixTest()
112 Check( A_STAR_VR, A_MC_MR, print ); in BlockDistMatrixTest()
113 Check( A_STAR_STAR, A_MC_MR, print ); in BlockDistMatrixTest()
[all …]
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Linq.Expressions/tests/
H A DDebugViewTests.cs18 Check("null", Expression.Constant(null)); in Constant_Null()
97 Check("$a + $b", Expression.Add(a, b)); in Binary_Arithmetic()
103 Check("$a / $b", Expression.Divide(a, b)); in Binary_Arithmetic()
116 Check("$a & $b", Expression.And(a, b)); in Binary_Logical()
117 Check("$a | $b", Expression.Or(a, b)); in Binary_Logical()
195 Check("+$a", Expression.UnaryPlus(a)); in Unary_Arithmetic()
196 Check("-$a", Expression.Negate(a)); in Unary_Arithmetic()
201 Check("~$a", Expression.Not(a)); in Unary_Arithmetic()
209 Check("!$b", Expression.Not(b)); in Unary_Boolean()
244 Check(".Rethrow", Expression.Rethrow()); in Unary_Exceptions()
[all …]
/dports/databases/elixir-ecto/ecto-2.2.10/
H A D.credo.exs18 {Credo.Check.Consistency.ExceptionNames},
19 {Credo.Check.Consistency.LineEndings},
23 {Credo.Check.Consistency.TabsOrSpaces},
25 {Credo.Check.Design.AliasUsage, false},
29 {Credo.Check.Design.TagTODO, false},
30 {Credo.Check.Design.TagFIXME, false},
36 {Credo.Check.Readability.ModuleDoc},
37 {Credo.Check.Readability.ModuleNames},
49 {Credo.Check.Refactor.ABCSize, false},
58 {Credo.Check.Refactor.Nesting},
[all …]
/dports/audio/musicpd/mpd-0.23.6/test/
H A DTestFs.cxx15 EXPECT_TRUE(glob.Check("foo")); in TEST()
16 EXPECT_FALSE(glob.Check("fooo")); in TEST()
17 EXPECT_FALSE(glob.Check("_foo")); in TEST()
18 EXPECT_FALSE(glob.Check("a/foo")); in TEST()
19 EXPECT_FALSE(glob.Check("")); in TEST()
20 EXPECT_FALSE(glob.Check("*")); in TEST()
26 EXPECT_TRUE(glob.Check("foo")); in TEST()
27 EXPECT_TRUE(glob.Check("bar")); in TEST()
28 EXPECT_TRUE(glob.Check("*")); in TEST()
29 EXPECT_TRUE(glob.Check("?")); in TEST()
[all …]
/dports/devel/elixir-cachex/cachex-3.0.3/
H A D.credo.exs41 {Credo.Check.Consistency.TabsOrSpaces},
48 {Credo.Check.Design.TagTODO, false},
49 {Credo.Check.Design.TagFIXME, false},
55 {Credo.Check.Readability.ModuleDoc},
56 {Credo.Check.Readability.ModuleNames},
70 {Credo.Check.Refactor.CondStatements},
72 {Credo.Check.Refactor.FunctionArity},
76 {Credo.Check.Refactor.Nesting},
81 {Credo.Check.Refactor.Nesting},
86 {Credo.Check.Warning.IExPry},
[all …]
/dports/mail/emailrelay/emailrelay-1.9/test/
H A Demailrelay-test.pl_49 use Check ;
334 Check::that( $rc == 0 ) ;
571 Check::ok( $c->open() ) ;
606 Check::ok( $c->open() ) ;
644 Check::ok( $c->open() ) ;
696 Check::ok( $c->open() ) ;
774 Check::ok( $c->open() ) ;
812 Check::ok( $c->open() ) ;
871 Check::ok( $ok ) ;
946 Check::ok( $c->open() ) ;
[all …]
/dports/cad/geda/geda-gaf-1.8.2/utils/tests/gxyrs/outputs/
H A Dmatch_col_is_too_high-pcb_example1.xy-error1 Error: Check pattern: Element number (100) is not within (1..7).
2 Error: Check pattern: Element number (100) is not within (1..7).
3 Error: Check pattern: Element number (100) is not within (1..7).
4 Error: Check pattern: Element number (100) is not within (1..7).
5 Error: Check pattern: Element number (100) is not within (1..7).
6 Error: Check pattern: Element number (100) is not within (1..7).
7 Error: Check pattern: Element number (100) is not within (1..7).
8 Error: Check pattern: Element number (100) is not within (1..7).
9 Error: Check pattern: Element number (100) is not within (1..7).
10 Error: Check pattern: Element number (100) is not within (1..7).
[all …]
/dports/net/elixir-oauth2/oauth2-2.0.0/
H A D.credo.exs59 {Credo.Check.Consistency.LineEndings, []},
71 {Credo.Check.Design.AliasUsage,
78 {Credo.Check.Design.TagFIXME, []},
88 {Credo.Check.Readability.ModuleDoc, []},
111 {Credo.Check.Refactor.MapInto, false},
115 {Credo.Check.Refactor.Nesting, []},
117 {Credo.Check.Refactor.WithClauses, []},
124 {Credo.Check.Warning.IExPry, []},
125 {Credo.Check.Warning.IoInspect, []},
145 {Credo.Check.Readability.Specs, false},
[all …]
/dports/science/getdp/getdp-3.4.0-source/Interface/
H A DProData.cpp508 Message::Check("{"); in Print_WholeQuantity()
616 Message::Check("\n"); in Print_Group()
639 Message::Check(" }"); in Print_Group()
644 Message::Check(" %s", in Print_Group()
658 Message::Check(" }"); in Print_Group()
663 Message::Check(" %s", in Print_Group()
952 if (k) Message::Check(","); else Message::Check(" {"); in Print_Jacobian()
999 Message::Check("\n"); in Print_Integration()
1166 Message::Check("\n"); in Print_FunctionSpace()
1234 Message::Check("\n"); in Print_Formulation()
[all …]
/dports/devel/elixir-hex/hex-1.0.1/
H A D.credo.exs20 {Credo.Check.Consistency.ExceptionNames},
21 {Credo.Check.Consistency.LineEndings},
25 {Credo.Check.Consistency.TabsOrSpaces},
29 {Credo.Check.Design.AliasUsage, false},
39 {Credo.Check.Design.TagTODO, false},
40 {Credo.Check.Design.TagFIXME, false},
45 {Credo.Check.Readability.ModuleNames},
57 {Credo.Check.Refactor.ABCSize, false},
58 {Credo.Check.Refactor.CondStatements},
68 {Credo.Check.Refactor.UnlessWithElse},
[all …]
/dports/net/elixir-kafka_ex/kafka_ex-0.10.0/
H A D.credo.exs52 {Credo.Check.Consistency.LineEndings},
56 {Credo.Check.Consistency.TabsOrSpaces},
76 {Credo.Check.Design.TagFIXME},
82 {Credo.Check.Readability.ModuleDoc},
83 {Credo.Check.Readability.ModuleNames},
93 {Credo.Check.Readability.Semicolons},
99 {Credo.Check.Refactor.FunctionArity},
104 {Credo.Check.Refactor.Nesting},
110 {Credo.Check.Warning.IExPry},
111 {Credo.Check.Warning.IoInspect},
[all …]
/dports/lang/fpc-source/fpc-3.2.2/tests/tbs/
H A Dtb0627.pp51 Check(s32-s32,0);
52 Check(s32 xor s32,0);
53 Check(s32=s32, True);
54 Check(s32<=s32, True);
55 Check(s32>=s32, True);
59 Check(0*s32, 0);
60 Check(s32*0, 0);
61 Check(0 and s32, 0);
62 Check(s32 and 0, 0);
63 Check(0 shr s32, 0);
[all …]
/dports/devel/elixir-distillery/distillery-1.5.2/
H A D.credo.exs42 {Credo.Check.Consistency.LineEndings},
47 {Credo.Check.Consistency.TabsOrSpaces},
51 {Credo.Check.Design.AliasUsage, false},
64 {Credo.Check.Design.TagFIXME},
67 {Credo.Check.Readability.LargeNumbers},
70 {Credo.Check.Readability.ModuleDoc},
71 {Credo.Check.Readability.ModuleNames},
77 {Credo.Check.Readability.Specs},
84 {Credo.Check.Refactor.ABCSize, false},
97 {Credo.Check.Warning.IExPry},
[all …]
/dports/devel/ada-util/ada-util-b6612400/regtests/
H A Dutil-dates-formats-tests.adb73 end Check; argument
79 Check ("%H", T1, "10");
80 Check ("%H", T2, "00");
81 Check ("%I", T3, "11");
82 Check ("%k", T2, " 0");
83 Check ("%k", T3, "23");
84 Check ("%l", T2, " 0");
85 Check ("%l", T3, "11");
93 Check ("%e", T1, " 1");
147 end Check;
[all …]
/dports/math/vtk9/VTK-9.1.0/Filters/General/
H A DvtkCellValidator.h164 static State Check(vtkCell*, double tolerance);
167 static State Check(vtkVertex*, double tolerance);
169 static State Check(vtkLine*, double tolerance);
170 static State Check(vtkPolyLine*, double tolerance);
173 static State Check(vtkPolygon*, double tolerance);
174 static State Check(vtkPixel*, double tolerance);
175 static State Check(vtkQuad*, double tolerance);
176 static State Check(vtkTetra*, double tolerance);
177 static State Check(vtkVoxel*, double tolerance);
179 static State Check(vtkWedge*, double tolerance);
[all …]
/dports/databases/couchdb3/apache-couchdb-3.2.1/
H A D.credo.exs85 {Credo.Check.Design.AliasUsage,
91 {Credo.Check.Design.TagTODO, false},
92 {Credo.Check.Design.TagFIXME, []},
102 {Credo.Check.Readability.ModuleDoc, []},
123 {Credo.Check.Refactor.MapInto, []},
127 {Credo.Check.Refactor.Nesting, false},
128 {Credo.Check.Refactor.PipeChainStart,
140 {Credo.Check.Warning.IExPry, []},
141 {Credo.Check.Warning.IoInspect, []},
142 {Credo.Check.Warning.LazyLogging, []},
[all …]
/dports/devel/elixir-smppex/smppex-2.2.9/
H A D.credo.exs56 {Credo.Check.Consistency.LineEndings},
60 {Credo.Check.Consistency.TabsOrSpaces},
80 {Credo.Check.Design.TagFIXME},
87 {Credo.Check.Readability.ModuleDoc},
88 {Credo.Check.Readability.ModuleNames},
98 {Credo.Check.Readability.Semicolons},
104 {Credo.Check.Refactor.FunctionArity},
109 {Credo.Check.Refactor.Nesting},
114 {Credo.Check.Warning.IExPry},
115 {Credo.Check.Warning.IoInspect},
[all …]
/dports/net-mgmt/p5-jmx4perl/jmx4perl-1.11_2/it/check_jmx4perl/
H A Dchecks.cfg12 </Check>
24 </Check>
36 </Check>
43 </Check>
51 </Check>
62 </Check>
70 </Check>
75 </Check>
79 </Check>
83 </Check>
[all …]

12345678910>>...525