Home
last modified time | relevance | path

Searched refs:fn1 (Results 1 – 25 of 6428) sorted by relevance

12345678910>>...258

/dports/devel/py-nbdime/nbdime-3.1.1/nbdime/tests/
H A Dtest_git_diffdriver.py193 t1 = file_timestamp(fn1)
199 fn1,
215 t1 = file_timestamp(fn1)
221 fn1,
237 t1 = file_timestamp(fn1)
244 fn1,
279 fn1,
301 fn1,
324 fn1,
346 fn1,
[all …]
/dports/graphics/alembic/alembic-1.8.3/maya/Tests/
H A Dutil.py160 if fn1.degreeU() != fn2.degreeU():
162 if fn1.degreeV() != fn2.degreeV():
172 if fn1.formInU() != fn2.formInU():
184 fn1.getCVs(cv1)
197 fn1.getKnotsInU(knotsU1)
199 fn1.getKnotsInV(knotsV1)
271 fn1 = OpenMaya.MFnCamera( obj1 )
401 if fn1.degree() != fn2.degree():
405 if fn1.numCVs() != fn2.numCVs():
417 if fn1.form() != fn2.form():
[all …]
/dports/french/med/med-4.0.0/src/2.3.6/cfi/
H A Dmaacf.c84 if (!fn1) in EDFMAAC()
154 char *fn1; in EDFNNSL() local
158 if (!fn1) in EDFNNSL()
178 char *fn1; in EDFNNSE() local
182 if (!fn1) in EDFNNSE()
201 char *fn1; in EDFNNIL() local
205 if (!fn1) in EDFNNIL()
230 if (!fn1) in EDFNNIE()
253 if (!fn1) in EDFNNML()
277 if (!fn1) in EDFNNME()
[all …]
H A Djntcf.c99 char *fn1; in EDFNJNT() local
104 if (!fn1) in EDFNJNT()
142 char *fn1; in EDFJNTI() local
151 if (!fn1) in EDFJNTI()
289 char *fn1; in EDFJNCO() local
299 if (!fn1) in EDFJNCO()
350 char *fn1; in EDFJTCO() local
406 char *fn1; in EDFGNME() local
410 if (!fn1 ) in EDFGNME()
442 char *fn1; in EDFGNML() local
[all …]
H A Dequcf.c56 _MEDcstringFree(fn1); in EDFEQUC()
77 char * fn1, *fn2; in EDFEQUE() local
82 if (!fn1 || !fn2) in EDFEQUE()
110 char * fn1, *fn2; in EDFEQUL() local
115 if (!fn1 || !fn2) in EDFEQUL()
141 char * fn1, *fn2; in EDFNCOR() local
146 if (!fn1 || !fn2) in EDFNCOR()
169 char * fn1; in EDFNEQU() local
173 if (!fn1) in EDFNEQU()
196 char * fn1, * fs2; in EDFEQUI() local
[all …]
H A Dscalairecf.c50 char *fn1, *fn2; in EDFSCAC() local
55 if (!fn1 || !fn2) in EDFSCAC()
83 char *fn1, *fn2; in EDFSCEE() local
196 char *fn1; in EDFNSPD() local
200 if (!fn1) in EDFNSPD()
223 char *fn1; in EDFSPDI() local
228 if (!fn1) in EDFSPDI()
256 char * fn1; in EDFSCEL() local
260 if (!fn1) in EDFSCEL()
285 char * fn1; in EDFSCFL() local
[all …]
H A Dfamcf.c82 char * fn1; in EDFFAME() local
85 if (!fn1 ) in EDFFAME()
111 char * fn1; in EDFFAML() local
114 if (!fn1 ) in EDFFAML()
149 if (!fn1) in EDFFAMI()
197 char * fn1; in EDFNFAM() local
200 if (!fn1) in EDFNFAM()
219 char * fn1; in EDFNGRO() local
222 if (!fn1) in EDFNGRO()
242 char * fn1; in EDFNATT() local
[all …]
H A Drescf.c317 if (!fn1) in EDFNREF()
379 char *fn1; in EDFNPDT() local
383 if (!fn1) in EDFNPDT()
419 char *fn1; in EDFPDTI() local
426 if (!fn1) in EDFPDTI()
469 char *fn1; in EDFREFI() local
475 if (!fn1) in EDFREFI()
542 char *fn1; in EDFLIEE() local
569 char *fn1; in EDFNVLI() local
573 if (!fn1) in EDFNVLI()
[all …]
H A Dentmaacf.c220 char * fn1, *fn2; in EDFNOME() local
285 char * fn1; in EDFNUME() local
289 if (!fn1 ) in EDFNUME()
314 char *fn1; in EDFNUML() local
318 if (!fn1 ) in EDFNUML()
342 char *fn1; in EDFNEMA() local
346 if (!fn1 ) in EDFNEMA()
628 char * fn1; in EDFSCOE() local
632 if (!fn1 ) in EDFSCOE()
653 char * fn1; in EDFSCOL() local
[all …]
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/honnef.co/go/tools/simple/testdata/src/bool-cmp/
H A Dbool-cmp.go.golden3 func fn1() bool { return false }
12 if fn1() { // want `simplified to fn1\(\)`
14 if !fn1() { // want `simplified to !fn1\(\)`
16 if !fn1() { // want `simplified to !fn1\(\)`
18 if fn1() { // want `simplified to fn1\(\)`
20 if fn1() && (fn1() || fn1()) || (fn1() && fn1()) { // want `simplified to \(fn1\(\) && fn1\(\)\)`
23 if !(fn1() && fn2()) { // want `simplified to !\(fn1\(\) && fn2\(\)\)`
H A Dbool-cmp.go3 func fn1() bool { return false } func
12 if fn1() == true { // want `simplified to fn1\(\)`
14 if fn1() != true { // want `simplified to !fn1\(\)`
16 if fn1() == false { // want `simplified to !fn1\(\)`
18 if fn1() != false { // want `simplified to fn1\(\)`
20 …if fn1() && (fn1() || fn1()) || (fn1() && fn1()) == true { // want `simplified to \(fn1\(\) && fn1…
23 if (fn1() && fn2()) == false { // want `simplified to !\(fn1\(\) && fn2\(\)\)`
/dports/sysutils/terraform-docs/terraform-docs-0.16.0/vendor/honnef.co/go/tools/simple/testdata/src/bool-cmp/
H A Dbool-cmp.go.golden3 func fn1() bool { return false }
12 if fn1() { // want `simplified to fn1\(\)`
14 if !fn1() { // want `simplified to !fn1\(\)`
16 if !fn1() { // want `simplified to !fn1\(\)`
18 if fn1() { // want `simplified to fn1\(\)`
20 if fn1() && (fn1() || fn1()) || (fn1() && fn1()) { // want `simplified to \(fn1\(\) && fn1\(\)\)`
23 if !(fn1() && fn2()) { // want `simplified to !\(fn1\(\) && fn2\(\)\)`
H A Dbool-cmp.go3 func fn1() bool { return false } func
12 if fn1() == true { // want `simplified to fn1\(\)`
14 if fn1() != true { // want `simplified to !fn1\(\)`
16 if fn1() == false { // want `simplified to !fn1\(\)`
18 if fn1() != false { // want `simplified to fn1\(\)`
20 …if fn1() && (fn1() || fn1()) || (fn1() && fn1()) == true { // want `simplified to \(fn1\(\) && fn1…
23 if (fn1() && fn2()) == false { // want `simplified to !\(fn1\(\) && fn2\(\)\)`
/dports/devel/bashdb/bashdb-5.0-1.1.2/test/data/
H A Dparm.right14 3: fn1() {
17 ##1 fn1("5") called from file `parm.sh' at line 27
43 ##2 fn1("0") called from file `parm.sh' at line 10
44 ##3 fn1("1") called from file `parm.sh' at line 10
45 ##4 fn1("2") called from file `parm.sh' at line 10
46 ##5 fn1("3") called from file `parm.sh' at line 10
47 ##6 fn1("4") called from file `parm.sh' at line 10
86 11: x="fn1 returning"
96 11: x="fn1 returning"
105 11: x="fn1 returning"
[all …]
H A Dsearch.right9 +?fn1?
10 6: echo "fn1 here"
12 +reverse ?fn1?
13 5: fn1() {
17 5: fn1() {
28 +/fn1/
29 32: fn1;
39 5: fn1() {
46 +search /fn1/
47 32: fn1;
[all …]
/dports/security/vault/vault-1.8.2/vendor/honnef.co/go/tools/simple/testdata/src/bool-cmp/
H A Dbool-cmp.go3 func fn1() bool { return false } func
12 if fn1() == true { // want `simplified to fn1\(\)`
14 if fn1() != true { // want `simplified to !fn1\(\)`
16 if fn1() == false { // want `simplified to !fn1\(\)`
18 if fn1() != false { // want `simplified to fn1\(\)`
20 …if fn1() && (fn1() || fn1()) || (fn1() && fn1()) == true { // want `simplified to \(fn1\(\) && fn1…
23 if (fn1() && fn2()) == false { // want `simplified to !\(fn1\(\) && fn2\(\)\)`
/dports/security/vuls/vuls-0.13.7/vendor/honnef.co/go/tools/simple/testdata/src/bool-cmp/
H A Dbool-cmp.go3 func fn1() bool { return false } func
12 if fn1() == true { // want `simplified to fn1\(\)`
14 if fn1() != true { // want `simplified to !fn1\(\)`
16 if fn1() == false { // want `simplified to !fn1\(\)`
18 if fn1() != false { // want `simplified to fn1\(\)`
20 …if fn1() && (fn1() || fn1()) || (fn1() && fn1()) == true { // want `simplified to \(fn1\(\) && fn1…
23 if (fn1() && fn2()) == false { // want `simplified to !\(fn1\(\) && fn2\(\)\)`
/dports/net-mgmt/thanos/thanos-0.11.0/vendor/honnef.co/go/tools/simple/testdata/src/bool-cmp/
H A Dbool-cmp.go3 func fn1() bool { return false } func
12 if fn1() == true { // want `simplified to fn1\(\)`
14 if fn1() != true { // want `simplified to !fn1\(\)`
16 if fn1() == false { // want `simplified to !fn1\(\)`
18 if fn1() != false { // want `simplified to fn1\(\)`
20 …if fn1() && (fn1() || fn1()) || (fn1() && fn1()) == true { // want `simplified to \(fn1\(\) && fn1…
23 if (fn1() && fn2()) == false { // want `simplified to !\(fn1\(\) && fn2\(\)\)`
/dports/multimedia/navidrome/navidrome-0.40.0/vendor/honnef.co/go/tools/simple/testdata/src/bool-cmp/
H A Dbool-cmp.go3 func fn1() bool { return false } func
12 if fn1() == true { // want `simplified to fn1\(\)`
14 if fn1() != true { // want `simplified to !fn1\(\)`
16 if fn1() == false { // want `simplified to !fn1\(\)`
18 if fn1() != false { // want `simplified to fn1\(\)`
20 …if fn1() && (fn1() || fn1()) || (fn1() && fn1()) == true { // want `simplified to \(fn1\(\) && fn1…
23 if (fn1() && fn2()) == false { // want `simplified to !\(fn1\(\) && fn2\(\)\)`
/dports/math/reduce/Reduce-svn5758-src/packages/regressions/
H A D2019-12-17-algebraic-procedure-as-operator.rlg5 algebraic procedure fn1(x);
9 fn1
11 algebraic operator fn1;
14 *** fn1 already defined as algebraic procedure
17 fn1 a;
23 get('fn1,'simpfn);
26 flagp('fn1,'opfn);
32 clear fn1;
36 algebraic operator fn1;
40 fn1 a;
[all …]
/dports/lang/gcc12-devel/gcc-12-20211205/gcc/testsuite/c-c++-common/
H A Dpr71574.c4 int fn1 (int);
5 int fn2 (void) __attribute__ ((alloc_align (fn1))); /* { dg-warning ".alloc_align. attribute ignore…
6 int fn3 (void) __attribute__ ((alloc_size (fn1))); /* { dg-warning ".alloc_size. attribute ignored …
7 int fn4 (void) __attribute__ ((assume_aligned (fn1))); /* { dg-warning ".assume_aligned. attribute …
8 int fn5 (char *, char *) __attribute__((nonnull (fn1))); /* { dg-warning ".nonnull. attribute argum…
9 int fn6 (const char *, ...) __attribute__ ((sentinel (fn1))); /* { dg-warning "not an integer const…
11 void* fn7 (void) __attribute__ ((alloc_align (fn1))); /* { dg-warning ".alloc_align. attribute argu…
12 void* fn8 (void) __attribute__ ((assume_aligned (fn1))); /* { dg-warning "not an integer constant" …
14 typedef int __attribute__((vector_size (fn1))) v4si; /* { dg-error "'vector_size' attribute argumen…
15 typedef int T __attribute__((aligned (fn1))); /* { dg-error "requested alignment is not" } */
/dports/lang/gcc9/gcc-9.4.0/gcc/testsuite/c-c++-common/
H A Dpr71574.c4 int fn1 (int);
5 int fn2 (void) __attribute__ ((alloc_align (fn1))); /* { dg-warning ".alloc_align. attribute ignore…
6 int fn3 (void) __attribute__ ((alloc_size (fn1))); /* { dg-warning ".alloc_size. attribute ignored …
7 int fn4 (void) __attribute__ ((assume_aligned (fn1))); /* { dg-warning ".assume_aligned. attribute …
8 int fn5 (char *, char *) __attribute__((nonnull (fn1))); /* { dg-warning ".nonnull. attribute argum…
9 int fn6 (const char *, ...) __attribute__ ((sentinel (fn1))); /* { dg-warning "not an integer const…
11 void* fn7 (void) __attribute__ ((alloc_align (fn1))); /* { dg-warning ".alloc_align. attribute argu…
12 void* fn8 (void) __attribute__ ((assume_aligned (fn1))); /* { dg-warning "not an integer constant" …
14 typedef int __attribute__((vector_size (fn1))) v4si; /* { dg-error "'vector_size' attribute argumen…
15 typedef int T __attribute__((aligned (fn1))); /* { dg-error "requested alignment is not" } */
/dports/devel/avr-gcc/gcc-10.2.0/gcc/testsuite/c-c++-common/
H A Dpr71574.c4 int fn1 (int);
5 int fn2 (void) __attribute__ ((alloc_align (fn1))); /* { dg-warning ".alloc_align. attribute ignore…
6 int fn3 (void) __attribute__ ((alloc_size (fn1))); /* { dg-warning ".alloc_size. attribute ignored …
7 int fn4 (void) __attribute__ ((assume_aligned (fn1))); /* { dg-warning ".assume_aligned. attribute …
8 int fn5 (char *, char *) __attribute__((nonnull (fn1))); /* { dg-warning ".nonnull. attribute argum…
9 int fn6 (const char *, ...) __attribute__ ((sentinel (fn1))); /* { dg-warning "not an integer const…
11 void* fn7 (void) __attribute__ ((alloc_align (fn1))); /* { dg-warning ".alloc_align. attribute argu…
12 void* fn8 (void) __attribute__ ((assume_aligned (fn1))); /* { dg-warning "not an integer constant" …
14 typedef int __attribute__((vector_size (fn1))) v4si; /* { dg-error "'vector_size' attribute argumen…
15 typedef int T __attribute__((aligned (fn1))); /* { dg-error "requested alignment is not" } */
/dports/lang/gcc11-devel/gcc-11-20211009/gcc/testsuite/c-c++-common/
H A Dpr71574.c4 int fn1 (int);
5 int fn2 (void) __attribute__ ((alloc_align (fn1))); /* { dg-warning ".alloc_align. attribute ignore…
6 int fn3 (void) __attribute__ ((alloc_size (fn1))); /* { dg-warning ".alloc_size. attribute ignored …
7 int fn4 (void) __attribute__ ((assume_aligned (fn1))); /* { dg-warning ".assume_aligned. attribute …
8 int fn5 (char *, char *) __attribute__((nonnull (fn1))); /* { dg-warning ".nonnull. attribute argum…
9 int fn6 (const char *, ...) __attribute__ ((sentinel (fn1))); /* { dg-warning "not an integer const…
11 void* fn7 (void) __attribute__ ((alloc_align (fn1))); /* { dg-warning ".alloc_align. attribute argu…
12 void* fn8 (void) __attribute__ ((assume_aligned (fn1))); /* { dg-warning "not an integer constant" …
14 typedef int __attribute__((vector_size (fn1))) v4si; /* { dg-error "'vector_size' attribute argumen…
15 typedef int T __attribute__((aligned (fn1))); /* { dg-error "requested alignment is not" } */
/dports/lang/gcc11/gcc-11.2.0/gcc/testsuite/c-c++-common/
H A Dpr71574.c4 int fn1 (int);
5 int fn2 (void) __attribute__ ((alloc_align (fn1))); /* { dg-warning ".alloc_align. attribute ignore…
6 int fn3 (void) __attribute__ ((alloc_size (fn1))); /* { dg-warning ".alloc_size. attribute ignored …
7 int fn4 (void) __attribute__ ((assume_aligned (fn1))); /* { dg-warning ".assume_aligned. attribute …
8 int fn5 (char *, char *) __attribute__((nonnull (fn1))); /* { dg-warning ".nonnull. attribute argum…
9 int fn6 (const char *, ...) __attribute__ ((sentinel (fn1))); /* { dg-warning "not an integer const…
11 void* fn7 (void) __attribute__ ((alloc_align (fn1))); /* { dg-warning ".alloc_align. attribute argu…
12 void* fn8 (void) __attribute__ ((assume_aligned (fn1))); /* { dg-warning "not an integer constant" …
14 typedef int __attribute__((vector_size (fn1))) v4si; /* { dg-error "'vector_size' attribute argumen…
15 typedef int T __attribute__((aligned (fn1))); /* { dg-error "requested alignment is not" } */

12345678910>>...258