Home
last modified time | relevance | path

Searched refs:dangle (Results 1 – 25 of 714) sorted by relevance

12345678910>>...29

/dports/biology/viennarna/ViennaRNA-2.4.18/tests/
H A Deval_structure.c23 int dangle; member
38 str.dangle = 2; in START_TEST()
45 str.dangle = 2; in START_TEST()
52 str.dangle = 2; in START_TEST()
59 str.dangle = 2; in START_TEST()
66 str.dangle = 3; in START_TEST()
73 str.dangle = 2; in START_TEST()
80 str.dangle = 2; in START_TEST()
87 str.dangle = 2; in START_TEST()
94 str.dangle = 2; in START_TEST()
[all …]
H A Deval_structure.ts15 int dangle;
28 str.dangle = 2;
35 str.dangle = 2;
42 str.dangle = 2;
49 str.dangle = 2;
56 str.dangle = 3;
63 str.dangle = 2;
70 str.dangle = 2;
77 str.dangle = 2;
84 str.dangle = 2;
[all …]
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/extsrc/com/lightcrafts/media/jai/opimage/
H A DRotateCRIF.java101 if (dangle < 0) { in create()
102 dangle += 360; in create()
109 if (dangle == 0) { in create()
131 if (dangle == 90) { in create()
311 int dangle = 0; in getBounds2D() local
324 if (dangle % 360 == 0) { in getBounds2D()
346 if (dangle % 270 == 0) { in getBounds2D()
347 if (dangle < 0) { in getBounds2D()
370 if (dangle % 180 == 0) { in getBounds2D()
382 if (dangle % 90 == 0) { in getBounds2D()
[all …]
/dports/sysutils/coreutils/coreutils-8.32/tests/ls/
H A Ddangle.sh25 ln -s no-such-file dangle || framework_failure_
29 ln -s no-such d/dangle || framework_failure_
34 returns_ $LS_FAILURE ls -L dangle > /dev/null 2>&1 || fail=1
36 returns_ $LS_FAILURE ls -H dangle > /dev/null 2>&1 || fail=1
39 ls dangle >> out || fail=1
46 dangle
/dports/misc/gnuls/coreutils-8.30/tests/ls/
H A Ddangle.sh25 ln -s no-such-file dangle || framework_failure_
29 ln -s no-such d/dangle || framework_failure_
34 returns_ $LS_FAILURE ls -L dangle > /dev/null 2>&1 || fail=1
36 returns_ $LS_FAILURE ls -H dangle > /dev/null 2>&1 || fail=1
39 ls dangle >> out || fail=1
46 dangle
/dports/graphics/py-pyx/PyX-0.15/pyx/
H A Dconnector.py179 dangle = atan2(rel[1], rel[0])
188 angle1 = dangle + radians(relangle1)
192 angle2 = dangle + radians(relangle2)
238 dangle = atan2(rel[1], rel[0])
245 if absangle1 is not None: relangle1 = dangle - radians(absangle1)
268 middle = self._middle_a(begin, dangle, length1, relangle1)
273 middle = self._middle_a(begin, dangle, length1, relangle1)
308 def _middle_a(self, begin, dangle, length1, angle1): argument
309 a = dangle - angle1
313 def _middle_b(self, end, dangle, length2, angle2): argument
[all …]
/dports/x11-toolkits/xforms/xforms-1.2.4/lib/
H A Ddial.c82 double dangle; in draw_dial() local
92 dangle = ( sp->val - sp->b ) / sp->a; in draw_dial()
95 dangle = sp->origin - dangle; in draw_dial()
97 dangle += sp->origin; in draw_dial()
99 if ( ( dangle = fmod( dangle, 360.0 ) ) < 0.0 ) in draw_dial()
100 dangle += 360.0; in draw_dial()
102 dangle *= M_PI / 180.0; in draw_dial()
149 rotate_it( xp, x, y, dangle ); in draw_dial()
150 rotate_it( xp + 1, x + dx, y - dy, dangle ); in draw_dial()
151 rotate_it( xp + 2, x + iradius - 2, y, dangle ); in draw_dial()
[all …]
/dports/sysutils/coreutils/coreutils-8.32/tests/cp/
H A Dpreserve-slink-time.sh26 ln -s no-such dangle || framework_failure_
30 case $(stat --format=%y dangle) in
37 cp -Pp dangle d2 || framework_failure_
39 stat --format=%y dangle > t1 || framework_failure_
/dports/misc/gnuls/coreutils-8.30/tests/cp/
H A Dpreserve-slink-time.sh26 ln -s no-such dangle || framework_failure_
30 case $(stat --format=%y dangle) in
37 cp -Pp dangle d2 || framework_failure_
39 stat --format=%y dangle > t1 || framework_failure_
/dports/lang/rust/rustc-1.58.1-src/src/test/ui/consts/
H A Dcopy-intrinsic.rs25 let dangle = (&mut x as *mut i32).wrapping_add(10); localVariable
27 …copy_nonoverlapping(0x100 as *const i32, dangle, 0); //~ ERROR evaluation of constant value failed…
32 let dangle = (&x as *const i32).wrapping_add(10); localVariable
34 …copy_nonoverlapping(dangle, 0x100 as *mut i32, 0); //~ ERROR evaluation of constant value failed […
/dports/graphics/lightzone/LightZone-4.1.8-3-g36e87773/lightcrafts/extsrc/com/lightcrafts/media/jai/mlib/
H A DMlibRotateRIF.java93 int dangle = (int)rnd_angle % 360; in create() local
96 if (dangle < 0) { in create()
97 dangle += 360; in create()
104 if (dangle == 0) { in create()
113 if (((dangle % 90) == 0) && in create()
126 if (dangle == 90) { in create()
130 } else if (dangle == 180) { in create()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang-tools-extra/docs/clang-tidy/checks/
H A Dbugprone-dangling-handle.rst15 string_view View = string(); // View will dangle.
17 View = A + "A"; // still dangle.
21 V.resize(3, string()); // V[1] and V[2] will also dangle.
24 // All these return values will dangle.
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
H A Dbugprone-dangling-handle.rst15 string_view View = string(); // View will dangle.
17 View = A + "A"; // still dangle.
21 V.resize(3, string()); // V[1] and V[2] will also dangle.
24 // All these return values will dangle.
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang-tools-extra/docs/clang-tidy/checks/
H A Dbugprone-dangling-handle.rst14 string_view View = string(); // View will dangle.
16 View = A + "A"; // still dangle.
20 V.resize(3, string()); // V[1] and V[2] will also dangle.
23 // All these return values will dangle.
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/tools/extra/docs/clang-tidy/checks/
H A Dbugprone-dangling-handle.rst15 string_view View = string(); // View will dangle.
17 View = A + "A"; // still dangle.
21 V.resize(3, string()); // V[1] and V[2] will also dangle.
24 // All these return values will dangle.
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang-tools-extra/docs/clang-tidy/checks/
H A Dbugprone-dangling-handle.rst15 string_view View = string(); // View will dangle.
17 View = A + "A"; // still dangle.
21 V.resize(3, string()); // V[1] and V[2] will also dangle.
24 // All these return values will dangle.
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/tools/extra/docs/clang-tidy/checks/
H A Dbugprone-dangling-handle.rst15 string_view View = string(); // View will dangle.
17 View = A + "A"; // still dangle.
21 V.resize(3, string()); // V[1] and V[2] will also dangle.
24 // All these return values will dangle.
/dports/devel/llvm12/llvm-project-12.0.1.src/clang-tools-extra/docs/clang-tidy/checks/
H A Dbugprone-dangling-handle.rst15 string_view View = string(); // View will dangle.
17 View = A + "A"; // still dangle.
21 V.resize(3, string()); // V[1] and V[2] will also dangle.
24 // All these return values will dangle.
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/tools/extra/docs/clang-tidy/checks/
H A Dbugprone-dangling-handle.rst15 string_view View = string(); // View will dangle.
17 View = A + "A"; // still dangle.
21 V.resize(3, string()); // V[1] and V[2] will also dangle.
24 // All these return values will dangle.
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang-tools-extra/docs/clang-tidy/checks/
H A Dbugprone-dangling-handle.rst14 string_view View = string(); // View will dangle.
16 View = A + "A"; // still dangle.
20 V.resize(3, string()); // V[1] and V[2] will also dangle.
23 // All these return values will dangle.
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang-tools-extra/docs/clang-tidy/checks/
H A Dbugprone-dangling-handle.rst14 string_view View = string(); // View will dangle.
16 View = A + "A"; // still dangle.
20 V.resize(3, string()); // V[1] and V[2] will also dangle.
23 // All these return values will dangle.
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang-tools-extra/docs/clang-tidy/checks/
H A Dbugprone-dangling-handle.rst14 string_view View = string(); // View will dangle.
16 View = A + "A"; // still dangle.
20 V.resize(3, string()); // V[1] and V[2] will also dangle.
23 // All these return values will dangle.
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang-tools-extra/docs/clang-tidy/checks/
H A Dbugprone-dangling-handle.rst15 string_view View = string(); // View will dangle.
17 View = A + "A"; // still dangle.
21 V.resize(3, string()); // V[1] and V[2] will also dangle.
24 // All these return values will dangle.
/dports/devel/llvm13/llvm-project-13.0.1.src/clang-tools-extra/docs/clang-tidy/checks/
H A Dbugprone-dangling-handle.rst14 string_view View = string(); // View will dangle.
16 View = A + "A"; // still dangle.
20 V.resize(3, string()); // V[1] and V[2] will also dangle.
23 // All these return values will dangle.
/dports/devel/llvm80/llvm-8.0.1.src/tools/clang/tools/extra/docs/clang-tidy/checks/
H A Dbugprone-dangling-handle.rst15 string_view View = string(); // View will dangle.
17 View = A + "A"; // still dangle.
21 V.resize(3, string()); // V[1] and V[2] will also dangle.
24 // All these return values will dangle.

12345678910>>...29