Home
last modified time | relevance | path

Searched defs:eq (Results 1 – 25 of 12435) sorted by relevance

12345678910>>...498

/dports/science/code_saturne/code_saturne-7.1.0/src/cdo/
H A Dcs_equation.c367 cs_equation_t *eq = NULL; in cs_equation_by_name() local
406 cs_equation_t *eq = _equations[i]; in cs_equation_by_field_name() local
1193 cs_equation_t *eq = NULL; in cs_equation_add() local
1333 cs_equation_t *eq = in cs_equation_add_user() local
1403 cs_equation_t *eq = _equations[i]; in cs_equation_destroy_all() local
1472 cs_equation_t *eq = _equations[i]; in cs_equation_log_monitoring() local
2518 cs_equation_t *eq = _equations[i]; in cs_equation_initialize() local
3471 cs_equation_t *eq = _equations[i]; in cs_equation_read_extra_restart() local
3494 cs_equation_t *eq = _equations[i]; in cs_equation_write_extra_restart() local
3525 cs_equation_t *eq = _equations[i]; in cs_equation_post_balance() local
[all …]
/dports/devel/hs-hls-install/haskell-language-server-1.4.0/install/_cabal_deps/filepattern-0.1.2/src/System/FilePattern/
H A DListBy.hs13 eqListBy eq (a:as) (b:bs) = liftA2 (:) (eq a b) (eqListBy eq as bs) function
18 stripPrefixBy eq [] bs = Just ([], bs) function
19 stripPrefixBy eq _ [] = Nothing function
20 stripPrefixBy eq (a:as) (b:bs) = do c <- eq a b; first (c:) <$> stripPrefixBy eq as bs function
23 stripSuffixBy eq [] bs = Just (bs, []) -- shortcut, but equal to the equation below function
24 stripSuffixBy eq _ [] = Nothing -- shortcut, but equal to the equation below function
25 stripSuffixBy eq as bs = (\(c,b) -> (reverse b, reverse c)) <$> stripPrefixBy eq (reverse as) (reve… function
28 stripInfixBy eq needle haystack | Just (ans, rest) <- stripPrefixBy eq needle haystack = Just ([], … function
29 stripInfixBy eq needle [] = Nothing function
30 stripInfixBy eq needle (x:xs) = (\(a,b,c) -> (x:a,b,c)) <$> stripInfixBy eq needle xs function
/dports/devel/hs-haskell-language-server/haskell-language-server-1.4.0/_cabal_deps/filepattern-0.1.2/src/System/FilePattern/
H A DListBy.hs13 eqListBy eq (a:as) (b:bs) = liftA2 (:) (eq a b) (eqListBy eq as bs) function
18 stripPrefixBy eq [] bs = Just ([], bs) function
19 stripPrefixBy eq _ [] = Nothing function
20 stripPrefixBy eq (a:as) (b:bs) = do c <- eq a b; first (c:) <$> stripPrefixBy eq as bs function
23 stripSuffixBy eq [] bs = Just (bs, []) -- shortcut, but equal to the equation below function
24 stripSuffixBy eq _ [] = Nothing -- shortcut, but equal to the equation below function
25 stripSuffixBy eq as bs = (\(c,b) -> (reverse b, reverse c)) <$> stripPrefixBy eq (reverse as) (reve… function
28 stripInfixBy eq needle haystack | Just (ans, rest) <- stripPrefixBy eq needle haystack = Just ([], … function
29 stripInfixBy eq needle [] = Nothing function
30 stripInfixBy eq needle (x:xs) = (\(a,b,c) -> (x:a,b,c)) <$> stripInfixBy eq needle xs function
/dports/devel/hs-hlint/hlint-3.3.4/_cabal_deps/filepattern-0.1.2/src/System/FilePattern/
H A DListBy.hs13 eqListBy eq (a:as) (b:bs) = liftA2 (:) (eq a b) (eqListBy eq as bs) function
18 stripPrefixBy eq [] bs = Just ([], bs) function
19 stripPrefixBy eq _ [] = Nothing function
20 stripPrefixBy eq (a:as) (b:bs) = do c <- eq a b; first (c:) <$> stripPrefixBy eq as bs function
23 stripSuffixBy eq [] bs = Just (bs, []) -- shortcut, but equal to the equation below function
24 stripSuffixBy eq _ [] = Nothing -- shortcut, but equal to the equation below function
25 stripSuffixBy eq as bs = (\(c,b) -> (reverse b, reverse c)) <$> stripPrefixBy eq (reverse as) (reve… function
28 stripInfixBy eq needle haystack | Just (ans, rest) <- stripPrefixBy eq needle haystack = Just ([], … function
29 stripInfixBy eq needle [] = Nothing function
30 stripInfixBy eq needle (x:xs) = (\(a,b,c) -> (x:a,b,c)) <$> stripInfixBy eq needle xs function
/dports/devel/hs-shake/shake-0.19.6/_cabal_deps/filepattern-0.1.2/src/System/FilePattern/
H A DListBy.hs13 eqListBy eq (a:as) (b:bs) = liftA2 (:) (eq a b) (eqListBy eq as bs) function
18 stripPrefixBy eq [] bs = Just ([], bs) function
19 stripPrefixBy eq _ [] = Nothing function
20 stripPrefixBy eq (a:as) (b:bs) = do c <- eq a b; first (c:) <$> stripPrefixBy eq as bs function
23 stripSuffixBy eq [] bs = Just (bs, []) -- shortcut, but equal to the equation below function
24 stripSuffixBy eq _ [] = Nothing -- shortcut, but equal to the equation below function
25 stripSuffixBy eq as bs = (\(c,b) -> (reverse b, reverse c)) <$> stripPrefixBy eq (reverse as) (reve… function
28 stripInfixBy eq needle haystack | Just (ans, rest) <- stripPrefixBy eq needle haystack = Just ([], … function
29 stripInfixBy eq needle [] = Nothing function
30 stripInfixBy eq needle (x:xs) = (\(a,b,c) -> (x:a,b,c)) <$> stripInfixBy eq needle xs function
/dports/science/agrum/aGrUM-29e540d8169268e8fe5d5c69bc4b2b1290f12320/src/testunits/module_BASE/
H A DFormulaTestSuite.h41 std::string eq = "1"; in testConstantInt() local
54 std::string eq = "0.99"; in testConstantFloat() local
67 std::string eq = "10 * 2"; in testMultiplication() local
80 std::string eq = "10 / 2"; in testDivision() local
93 std::string eq = "10 + 2"; in testAddition() local
106 std::string eq = "10 - 2"; in testSubstraction() local
119 std::string eq = "10 - 2 * 5"; in testSimplePriority1() local
132 std::string eq = "10 * 2 - 5"; in testSimplePriority2() local
158 std::string eq = "-3"; in testMinusSign() local
197 std::string eq = "2 + ln(1)"; in testLn() local
[all …]
/dports/cad/digital/Digital-0.27/src/test/java/de/neemann/digital/analyse/expression/
H A DEqualsTest.java20 Equals eq = new Equals(Constant.ONE, Constant.ONE); in testConst() local
27 Equals eq = new Equals(v("a"), Constant.ONE); in testNumVars() local
32 Equals eq = new Equals(v("a"), v("b")); in testNotSameVars() local
37 Equals eq = new Equals(v("a"), v("a")); in testSameVars() local
42 Equals eq = new Equals(or(v("a"), v("b")), and(v("a"),v("b"))); in testTwoVars() local
47 Equals eq = new Equals(or(v("a"), v("b")), not(and(not(v("a")),not(v("b"))))); in testTwoVars2() local
/dports/multimedia/librav1e/rav1e-0.5.1/cargo-crates/syn-1.0.82/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/devel/stylua/StyLua-0.11.0/cargo-crates/syn-1.0.76/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/devel/sentry-cli/sentry-cli-1.71.0/cargo-crates/syn-1.0.77/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/multimedia/rav1e/rav1e-0.5.1/cargo-crates/syn-1.0.82/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/net-im/zkgroup/zkgroup-0.7.4/cargo-crates/syn-1.0.72/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/misc/broot/broot-1.7.0/cargo-crates/syn-1.0.74/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/devel/cargo-c/cargo-c-0.9.6+cargo-0.58/cargo-crates/syn-1.0.82/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/net/gemserv/gemserv-v0.4.5/cargo-crates/syn-1.0.55/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/multimedia/gstreamer1-plugins-rust/gst-plugins-rs-d0466b3eee114207f851b37cae0015c0e718f021/cargo-crates/syn-1.0.75/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/devel/sccache/sccache-0.2.15/cargo-crates/syn-1.0.58/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/games/jaggedalliance2/ja2-stracciatella-0.18.0/cargo-crates/syn-1.0.41/src/gen/
H A Deq.rs11 fn eq(&self, other: &Self) -> bool { in eq() method
19 fn eq(&self, other: &Self) -> bool { in eq() method
27 fn eq(&self, other: &Self) -> bool { in eq() method
39 fn eq(&self, other: &Self) -> bool { in eq() method
51 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
69 fn eq(&self, other: &Self) -> bool { in eq() method
107 fn eq(&self, other: &Self) -> bool { in eq() method
115 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/devel/rust-cbindgen/cbindgen-0.20.0/cargo-crates/syn-1.0.41/src/gen/
H A Deq.rs11 fn eq(&self, other: &Self) -> bool { in eq() method
19 fn eq(&self, other: &Self) -> bool { in eq() method
27 fn eq(&self, other: &Self) -> bool { in eq() method
39 fn eq(&self, other: &Self) -> bool { in eq() method
51 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
69 fn eq(&self, other: &Self) -> bool { in eq() method
107 fn eq(&self, other: &Self) -> bool { in eq() method
115 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/devel/rust-analyzer/rust-analyzer-2021-12-20/cargo-crates/syn-1.0.82/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/devel/bingrep/bingrep-0.8.5/cargo-crates/syn-1.0.58/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/devel/git-delta/delta-0.9.2/cargo-crates/syn-1.0.57/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/security/vaultwarden/vaultwarden-1.23.1/cargo-crates/syn-1.0.82/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/www/castor/castor-0.8.16/cargo-crates/syn-1.0.42/src/gen/
H A Deq.rs11 fn eq(&self, other: &Self) -> bool { in eq() method
19 fn eq(&self, other: &Self) -> bool { in eq() method
27 fn eq(&self, other: &Self) -> bool { in eq() method
39 fn eq(&self, other: &Self) -> bool { in eq() method
51 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
69 fn eq(&self, other: &Self) -> bool { in eq() method
107 fn eq(&self, other: &Self) -> bool { in eq() method
115 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]
/dports/lang/gleam/gleam-0.18.2/cargo-crates/syn-1.0.82/src/gen/
H A Deq.rs13 fn eq(&self, other: &Self) -> bool { in eq() method
23 fn eq(&self, other: &Self) -> bool { in eq() method
33 fn eq(&self, other: &Self) -> bool { in eq() method
47 fn eq(&self, other: &Self) -> bool { in eq() method
61 fn eq(&self, other: &Self) -> bool { in eq() method
73 fn eq(&self, other: &Self) -> bool { in eq() method
83 fn eq(&self, other: &Self) -> bool { in eq() method
123 fn eq(&self, other: &Self) -> bool { in eq() method
133 fn eq(&self, other: &Self) -> bool { in eq() method
143 fn eq(&self, other: &Self) -> bool { in eq() method
[all …]

12345678910>>...498