Home
last modified time | relevance | path

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

12345678

/dports/finance/hs-hledger-web/hledger-web-1.19/_cabal_deps/language-javascript-0.7.1.0/test/Test/Language/Javascript/
H A DExpressionParser.hs15 testExpr "this" `shouldBe` "Right (JSAstExpression (JSLiteral 'this'))"
17 testExpr "/blah/" `shouldBe` "Right (JSAstExpression (JSRegEx '/blah/'))"
18 testExpr "/$/g" `shouldBe` "Right (JSAstExpression (JSRegEx '/$/g'))"
19 testExpr "/\\n/g" `shouldBe` "Right (JSAstExpression (JSRegEx '/\\n/g'))"
20 testExpr "/(\\/)/" `shouldBe` "Right (JSAstExpression (JSRegEx '/(\\/)/'))"
21 testExpr "/a[/]b/" `shouldBe` "Right (JSAstExpression (JSRegEx '/a[/]b/'))"
22 testExpr "/[/\\]/" `shouldBe` "Right (JSAstExpression (JSRegEx '/[/\\]/'))"
29 testExpr "_$" `shouldBe` "Right (JSAstExpression (JSIdentifier '_$'))"
32 testExpr "[]" `shouldBe` "Right (JSAstExpression (JSArrayLiteral []))"
199 testExpr :: String -> String
[all …]
/dports/www/hs-hjsmin/hjsmin-0.2.0.4/_cabal_deps/language-javascript-0.7.0.0/test/Test/Language/Javascript/
H A DExpressionParser.hs15 testExpr "this" `shouldBe` "Right (JSAstExpression (JSLiteral 'this'))"
17 testExpr "/blah/" `shouldBe` "Right (JSAstExpression (JSRegEx '/blah/'))"
18 testExpr "/$/g" `shouldBe` "Right (JSAstExpression (JSRegEx '/$/g'))"
19 testExpr "/\\n/g" `shouldBe` "Right (JSAstExpression (JSRegEx '/\\n/g'))"
20 testExpr "/(\\/)/" `shouldBe` "Right (JSAstExpression (JSRegEx '/(\\/)/'))"
21 testExpr "/a[/]b/" `shouldBe` "Right (JSAstExpression (JSRegEx '/a[/]b/'))"
22 testExpr "/[/\\]/" `shouldBe` "Right (JSAstExpression (JSRegEx '/[/\\]/'))"
29 testExpr "_$" `shouldBe` "Right (JSAstExpression (JSIdentifier '_$'))"
32 testExpr "[]" `shouldBe` "Right (JSAstExpression (JSArrayLiteral []))"
199 testExpr :: String -> String
[all …]
/dports/devel/hs-git-annex/git-annex-8.20210903/_cabal_deps/language-javascript-0.7.1.0/test/Test/Language/Javascript/
H A DExpressionParser.hs15 testExpr "this" `shouldBe` "Right (JSAstExpression (JSLiteral 'this'))"
17 testExpr "/blah/" `shouldBe` "Right (JSAstExpression (JSRegEx '/blah/'))"
18 testExpr "/$/g" `shouldBe` "Right (JSAstExpression (JSRegEx '/$/g'))"
19 testExpr "/\\n/g" `shouldBe` "Right (JSAstExpression (JSRegEx '/\\n/g'))"
20 testExpr "/(\\/)/" `shouldBe` "Right (JSAstExpression (JSRegEx '/(\\/)/'))"
21 testExpr "/a[/]b/" `shouldBe` "Right (JSAstExpression (JSRegEx '/a[/]b/'))"
22 testExpr "/[/\\]/" `shouldBe` "Right (JSAstExpression (JSRegEx '/[/\\]/'))"
29 testExpr "_$" `shouldBe` "Right (JSAstExpression (JSIdentifier '_$'))"
32 testExpr "[]" `shouldBe` "Right (JSAstExpression (JSArrayLiteral []))"
199 testExpr :: String -> String
[all …]
/dports/lang/purescript/purescript-0.14.5/_cabal_deps/language-javascript-0.7.0.0/test/Test/Language/Javascript/
H A DExpressionParser.hs15 testExpr "this" `shouldBe` "Right (JSAstExpression (JSLiteral 'this'))"
17 testExpr "/blah/" `shouldBe` "Right (JSAstExpression (JSRegEx '/blah/'))"
18 testExpr "/$/g" `shouldBe` "Right (JSAstExpression (JSRegEx '/$/g'))"
19 testExpr "/\\n/g" `shouldBe` "Right (JSAstExpression (JSRegEx '/\\n/g'))"
20 testExpr "/(\\/)/" `shouldBe` "Right (JSAstExpression (JSRegEx '/(\\/)/'))"
21 testExpr "/a[/]b/" `shouldBe` "Right (JSAstExpression (JSRegEx '/a[/]b/'))"
22 testExpr "/[/\\]/" `shouldBe` "Right (JSAstExpression (JSRegEx '/[/\\]/'))"
29 testExpr "_$" `shouldBe` "Right (JSAstExpression (JSIdentifier '_$'))"
32 testExpr "[]" `shouldBe` "Right (JSAstExpression (JSArrayLiteral []))"
199 testExpr :: String -> String
[all …]
/dports/devel/spark/spark-2.1.1/sql/catalyst/src/test/scala/org/apache/spark/sql/catalyst/expressions/xml/
H A DXPathExpressionSuite.scala66 testNullAndErrorBehavior(testExpr)
78 testExpr(
95 testExpr(
112 testExpr(
200 testExpr(XPathBoolean)
201 testExpr(XPathShort)
202 testExpr(XPathInt)
203 testExpr(XPathLong)
204 testExpr(XPathFloat)
205 testExpr(XPathDouble)
[all …]
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/unittests/Tooling/
H A DStencilTest.cpp173 testExpr(Id, "3;", cat(node(Id)), "3"); in TEST_F()
188 testExpr(Id, "3;", expression(Id), "3"); in TEST_F()
194 testExpr(Id, "(3);", expression(Id), "(3)"); in TEST_F()
199 testExpr(Id, "3+4;", expression(Id), "(3+4)"); in TEST_F()
213 testExpr(Id, "int *x; x;", deref(Id), "*x"); in TEST_F()
223 testExpr(Id, "int x; &x;", deref(Id), "x"); in TEST_F()
228 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
233 testExpr(Id, "int *x; *x;", addressOf(Id), "x"); in TEST_F()
238 testExpr(Id, "int x; x;", maybeDeref(Id), "x"); in TEST_F()
263 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
[all …]
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/unittests/Tooling/
H A DStencilTest.cpp173 testExpr(Id, "3;", cat(node(Id)), "3"); in TEST_F()
188 testExpr(Id, "3;", expression(Id), "3"); in TEST_F()
194 testExpr(Id, "(3);", expression(Id), "(3)"); in TEST_F()
199 testExpr(Id, "3+4;", expression(Id), "(3+4)"); in TEST_F()
213 testExpr(Id, "int *x; x;", deref(Id), "*x"); in TEST_F()
223 testExpr(Id, "int x; &x;", deref(Id), "x"); in TEST_F()
228 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
233 testExpr(Id, "int *x; *x;", addressOf(Id), "x"); in TEST_F()
238 testExpr(Id, "int x; x;", maybeDeref(Id), "x"); in TEST_F()
263 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
[all …]
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/unittests/Tooling/
H A DStencilTest.cpp193 testExpr(Id, "3;", expression(Id), "3"); in TEST_F()
199 testExpr(Id, "(3);", expression(Id), "(3)"); in TEST_F()
204 testExpr(Id, "3+4;", expression(Id), "(3+4)"); in TEST_F()
218 testExpr(Id, "int *x; x;", deref(Id), "*x"); in TEST_F()
228 testExpr(Id, "int x; &x;", deref(Id), "x"); in TEST_F()
233 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
238 testExpr(Id, "int *x; *x;", addressOf(Id), "x"); in TEST_F()
243 testExpr(Id, "int x; x;", maybeDeref(Id), "x"); in TEST_F()
258 testExpr(Id, "int x; &x;", maybeDeref(Id), "x"); in TEST_F()
268 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
[all …]
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/unittests/Tooling/
H A DStencilTest.cpp193 testExpr(Id, "3;", expression(Id), "3"); in TEST_F()
199 testExpr(Id, "(3);", expression(Id), "(3)"); in TEST_F()
204 testExpr(Id, "3+4;", expression(Id), "(3+4)"); in TEST_F()
218 testExpr(Id, "int *x; x;", deref(Id), "*x"); in TEST_F()
228 testExpr(Id, "int x; &x;", deref(Id), "x"); in TEST_F()
233 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
238 testExpr(Id, "int *x; *x;", addressOf(Id), "x"); in TEST_F()
243 testExpr(Id, "int x; x;", maybeDeref(Id), "x"); in TEST_F()
258 testExpr(Id, "int x; &x;", maybeDeref(Id), "x"); in TEST_F()
268 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
[all …]
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/unittests/Tooling/
H A DStencilTest.cpp193 testExpr(Id, "3;", expression(Id), "3"); in TEST_F()
199 testExpr(Id, "(3);", expression(Id), "(3)"); in TEST_F()
204 testExpr(Id, "3+4;", expression(Id), "(3+4)"); in TEST_F()
218 testExpr(Id, "int *x; x;", deref(Id), "*x"); in TEST_F()
228 testExpr(Id, "int x; &x;", deref(Id), "x"); in TEST_F()
233 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
238 testExpr(Id, "int *x; *x;", addressOf(Id), "x"); in TEST_F()
243 testExpr(Id, "int x; x;", maybeDeref(Id), "x"); in TEST_F()
258 testExpr(Id, "int x; &x;", maybeDeref(Id), "x"); in TEST_F()
268 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
[all …]
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/unittests/Tooling/
H A DStencilTest.cpp206 testExpr(Id, "3;", expression(Id), "3"); in TEST_F()
212 testExpr(Id, "(3);", expression(Id), "(3)"); in TEST_F()
217 testExpr(Id, "3+4;", expression(Id), "(3+4)"); in TEST_F()
231 testExpr(Id, "int *x; x;", deref(Id), "*x"); in TEST_F()
241 testExpr(Id, "int x; &x;", deref(Id), "x"); in TEST_F()
246 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
251 testExpr(Id, "int *x; *x;", addressOf(Id), "x"); in TEST_F()
256 testExpr(Id, "int x; x;", maybeDeref(Id), "x"); in TEST_F()
280 testExpr(Id, Snippet, maybeDeref(Id), "*x"); in TEST_F()
317 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/unittests/Tooling/
H A DStencilTest.cpp206 testExpr(Id, "3;", expression(Id), "3"); in TEST_F()
212 testExpr(Id, "(3);", expression(Id), "(3)"); in TEST_F()
217 testExpr(Id, "3+4;", expression(Id), "(3+4)"); in TEST_F()
231 testExpr(Id, "int *x; x;", deref(Id), "*x"); in TEST_F()
241 testExpr(Id, "int x; &x;", deref(Id), "x"); in TEST_F()
246 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
251 testExpr(Id, "int *x; *x;", addressOf(Id), "x"); in TEST_F()
256 testExpr(Id, "int x; x;", maybeDeref(Id), "x"); in TEST_F()
280 testExpr(Id, Snippet, maybeDeref(Id), "*x"); in TEST_F()
317 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
[all …]
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang/unittests/Tooling/
H A DStencilTest.cpp206 testExpr(Id, "3;", expression(Id), "3"); in TEST_F()
212 testExpr(Id, "(3);", expression(Id), "(3)"); in TEST_F()
217 testExpr(Id, "3+4;", expression(Id), "(3+4)"); in TEST_F()
231 testExpr(Id, "int *x; x;", deref(Id), "*x"); in TEST_F()
241 testExpr(Id, "int x; &x;", deref(Id), "x"); in TEST_F()
246 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
251 testExpr(Id, "int *x; *x;", addressOf(Id), "x"); in TEST_F()
256 testExpr(Id, "int x; x;", maybeDeref(Id), "x"); in TEST_F()
280 testExpr(Id, Snippet, maybeDeref(Id), "*x"); in TEST_F()
317 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
[all …]
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/unittests/Tooling/
H A DStencilTest.cpp206 testExpr(Id, "3;", expression(Id), "3"); in TEST_F()
212 testExpr(Id, "(3);", expression(Id), "(3)"); in TEST_F()
217 testExpr(Id, "3+4;", expression(Id), "(3+4)"); in TEST_F()
231 testExpr(Id, "int *x; x;", deref(Id), "*x"); in TEST_F()
241 testExpr(Id, "int x; &x;", deref(Id), "x"); in TEST_F()
246 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
251 testExpr(Id, "int *x; *x;", addressOf(Id), "x"); in TEST_F()
256 testExpr(Id, "int x; x;", maybeDeref(Id), "x"); in TEST_F()
280 testExpr(Id, Snippet, maybeDeref(Id), "*x"); in TEST_F()
317 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
[all …]
/dports/devel/llvm13/llvm-project-13.0.1.src/clang/unittests/Tooling/
H A DStencilTest.cpp206 testExpr(Id, "3;", expression(Id), "3"); in TEST_F()
212 testExpr(Id, "(3);", expression(Id), "(3)"); in TEST_F()
217 testExpr(Id, "3+4;", expression(Id), "(3+4)"); in TEST_F()
231 testExpr(Id, "int *x; x;", deref(Id), "*x"); in TEST_F()
241 testExpr(Id, "int x; &x;", deref(Id), "x"); in TEST_F()
246 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
251 testExpr(Id, "int *x; *x;", addressOf(Id), "x"); in TEST_F()
256 testExpr(Id, "int x; x;", maybeDeref(Id), "x"); in TEST_F()
280 testExpr(Id, Snippet, maybeDeref(Id), "*x"); in TEST_F()
317 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
[all …]
/dports/lang/clang-mesa/clang-13.0.1.src/unittests/Tooling/
H A DStencilTest.cpp206 testExpr(Id, "3;", expression(Id), "3"); in TEST_F()
212 testExpr(Id, "(3);", expression(Id), "(3)"); in TEST_F()
217 testExpr(Id, "3+4;", expression(Id), "(3+4)"); in TEST_F()
231 testExpr(Id, "int *x; x;", deref(Id), "*x"); in TEST_F()
241 testExpr(Id, "int x; &x;", deref(Id), "x"); in TEST_F()
246 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
251 testExpr(Id, "int *x; *x;", addressOf(Id), "x"); in TEST_F()
256 testExpr(Id, "int x; x;", maybeDeref(Id), "x"); in TEST_F()
280 testExpr(Id, Snippet, maybeDeref(Id), "*x"); in TEST_F()
317 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
[all …]
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/llvm/unittests/DebugInfo/DWARF/
H A DDWARFExpressionCopyBytesTest.cpp89 void testExpr(ArrayRef<uint8_t> ExprData);
185 void DWARFExpressionCopyBytesTest::testExpr(ArrayRef<uint8_t> ExprData) { in testExpr() function in DWARFExpressionCopyBytesTest
204 testExpr({DW_OP_regx, 0x80, 0x02}); in TEST_F()
208 testExpr({DW_OP_breg0, 0x04}); in TEST_F()
212 testExpr({DW_OP_breg0, 0x80, 0x02}); in TEST_F()
216 testExpr({DW_OP_breg13, 0x10}); in TEST_F()
220 testExpr({DW_OP_breg13, 0x00}); in TEST_F()
224 testExpr({DW_OP_breg0, 0x70}); in TEST_F()
228 testExpr({DW_OP_bregx, 0x0d, 0x28}); in TEST_F()
232 testExpr({DW_OP_breg13, 0x04, DW_OP_stack_value}); in TEST_F()
[all …]
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/unittests/Tooling/
H A DStencilTest.cpp206 testExpr(Id, "3;", expression(Id), "3"); in TEST_F()
212 testExpr(Id, "(3);", expression(Id), "(3)"); in TEST_F()
217 testExpr(Id, "3+4;", expression(Id), "(3+4)"); in TEST_F()
231 testExpr(Id, "int *x; x;", deref(Id), "*x"); in TEST_F()
241 testExpr(Id, "int x; &x;", deref(Id), "x"); in TEST_F()
246 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
251 testExpr(Id, "int *x; *x;", addressOf(Id), "x"); in TEST_F()
256 testExpr(Id, "int x; x;", maybeDeref(Id), "x"); in TEST_F()
280 testExpr(Id, Snippet, maybeDeref(Id), "*x"); in TEST_F()
317 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
[all …]
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang/unittests/Tooling/
H A DStencilTest.cpp206 testExpr(Id, "3;", expression(Id), "3"); in TEST_F()
212 testExpr(Id, "(3);", expression(Id), "(3)"); in TEST_F()
217 testExpr(Id, "3+4;", expression(Id), "(3+4)"); in TEST_F()
231 testExpr(Id, "int *x; x;", deref(Id), "*x"); in TEST_F()
241 testExpr(Id, "int x; &x;", deref(Id), "x"); in TEST_F()
246 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
251 testExpr(Id, "int *x; *x;", addressOf(Id), "x"); in TEST_F()
256 testExpr(Id, "int x; x;", maybeDeref(Id), "x"); in TEST_F()
280 testExpr(Id, Snippet, maybeDeref(Id), "*x"); in TEST_F()
317 testExpr(Id, "int x; x;", addressOf(Id), "&x"); in TEST_F()
[all …]
/dports/java/servingxml/servingxml-1.1.2/servingxml-framework/src/main/java/com/servingxml/components/recordio/
H A DRecordRestrictionAssembler.java42 private String testExpr = ""; field in RecordRestrictionAssembler
49 public void setTest(String testExpr) { in setTest() argument
50 this.testExpr = testExpr; in setTest()
67 if (recordTypeName.isEmpty() && testExpr.length() == 0) { in assemble()
84 if (testExpr.length() > 0) { in assemble()
85 …actory = RecordAccepterFactory.newInstance(context.getQnameContext(), xsltConfiguration, testExpr); in assemble()
/dports/graphics/seexpr/seexpr-3.4.4.0/src/tests/
H A Dbasic.cpp162 testExpr("countInvocations(1)&&countInvocations(0)", 0, 2); in TEST()
163 testExpr("countInvocations(1)&&countInvocations(1)", 1, 2); in TEST()
164 testExpr("countInvocations(0)&&countInvocations(1)", 0, 1); in TEST()
165 testExpr("countInvocations(0)&&countInvocations(0)", 0, 1); in TEST()
166 testExpr("countInvocations(1)||countInvocations(0)", 1, 1); in TEST()
167 testExpr("countInvocations(1)||countInvocations(1)", 1, 1); in TEST()
168 testExpr("countInvocations(0)||countInvocations(1)", 1, 2); in TEST()
169 testExpr("countInvocations(0)||countInvocations(0)", 0, 2); in TEST()
170 testExpr("1?countInvocations(5):countInvocations(10)", 5, 1); in TEST()
171 testExpr("0?countInvocations(5):countInvocations(10)", 10, 1); in TEST()
[all …]
/dports/java/servingxml/servingxml-1.1.2/servingxml-framework/src/main/java/com/servingxml/components/recordmapping/
H A DOnRecordFactoryAssembler.java48 private String testExpr = ""; field in OnRecordFactoryAssembler
54 public void setTest(String testExpr) { in setTest() argument
55 this.testExpr = testExpr; in setTest()
83 if (testExpr.length() > 0) { in assemble()
84 …actory = RecordAccepterFactory.newInstance(context.getQnameContext(), xsltConfiguration, testExpr); in assemble()
/dports/graphics/ampasCTL/CTL-57b48a2/unittest/IlmCtl/
H A DtestExpr.ctl1 namespace testExpr
8 testExpr()
30 const int t = testExpr();
32 } // namespace testExpr
/dports/math/gismo/gismo-21.12.0/src/gsAssembler/
H A DgsExprHelper.h284 void check(const expr::_expr<E> & testExpr) const in check() argument
286 if ( testExpr.isVector() ) in check()
287 … GISMO_ENSURE(m_ptable.find(&testExpr.rowVar().source())!=m_ptable.end(), "Check failed"); in check()
288 if ( testExpr.isMatrix() ) in check()
289 … GISMO_ENSURE(m_ptable.find(&testExpr.colVar().source())!=m_ptable.end(), "Check failed"); in check()
291 if ( testExpr.isVector() ) in check()
292 … GISMO_ENSURE(m_stable.find(&testExpr.rowVar().source())!=m_stable.end(), "Check failed"); in check()
293 if ( testExpr.isMatrix() ) in check()
294 … GISMO_ENSURE(m_stable.find(&testExpr.colVar().source())!=m_stable.end(), "Check failed"); in check()
314 void setFlags(const Expr & testExpr,
[all …]
/dports/lang/gcc48/gcc-4.8.5/gcc/testsuite/go.test/test/
H A Dindex.go155 func testExpr(b *bufio.Writer, expr string) { func
238 testExpr(b, pae + "[" + cni + "]")
243 testExpr(b, pae + "[0:" + cni + "]")
244 testExpr(b, pae + "[1:" + cni + "]")
245 testExpr(b, pae + "[" + cni + ":]")
246 testExpr(b, pae + "[" + cni + ":" + cni + "]")

12345678