Home
last modified time | relevance | path

Searched refs:vfill (Results 1 – 25 of 1945) sorted by relevance

12345678910>>...78

/dports/cad/impact/Impact/src/gui/
H A DVerticalFlowLayout.java35 boolean vfill; field in VerticalFlowLayout
41 public VerticalFlowLayout(boolean hfill, boolean vfill){ in VerticalFlowLayout() argument
42 this(TOP, 5, 5, hfill, vfill); in VerticalFlowLayout()
49 public VerticalFlowLayout(int align, boolean hfill, boolean vfill) { in VerticalFlowLayout() argument
50 this(align, 5, 5, hfill, vfill); in VerticalFlowLayout()
53 public VerticalFlowLayout(int align, int hgap, int vgap, boolean hfill, boolean vfill) { in VerticalFlowLayout() argument
58 this.vfill = vfill; in VerticalFlowLayout()
99 public void setVerticalFill(boolean vfill) { in setVerticalFill() argument
100 this.vfill = vfill; in setVerticalFill()
104 return vfill; in getVerticalFill()
[all …]
/dports/math/py-numpy/numpy-1.20.3/numpy/core/src/common/simd/sse/
H A Dmemory.h167 const __m128i vfill = npyv_setall_s32(fill); in npyv_load_till_s32() local
188 a = _mm_unpacklo_epi64(a, vfill); in npyv_load_till_s32()
267 __m128i vfill = npyv_setall_s32(fill); in npyv_loadn_till_s32() local
274 vfill = _mm_insert_epi32(vfill, ptr[stride*2], 2); in npyv_loadn_till_s32()
276 vfill = _mm_insert_epi32(vfill, ptr[stride], 1); in npyv_loadn_till_s32()
278 vfill = _mm_insert_epi32(vfill, ptr[0], 0); in npyv_loadn_till_s32()
282 vfill = _mm_unpacklo_epi32(_mm_cvtsi32_si128(ptr[stride*2]), vfill); in npyv_loadn_till_s32()
286 ), vfill); in npyv_loadn_till_s32()
289 vfill = _mm_insert_epi16(vfill, wptr[0], 0); in npyv_loadn_till_s32()
290 vfill = _mm_insert_epi16(vfill, wptr[1], 1); in npyv_loadn_till_s32()
[all …]
/dports/graphics/dia/dia-0.97.3/app/
H A Dgtkwrapbox.c372 gboolean vexpand = FALSE, vfill = FALSE; in gtk_wrap_box_set_child_property() local
431 gboolean vexpand = FALSE, vfill = FALSE; in gtk_wrap_box_get_child_property() local
464 g_value_set_boolean (value, vfill); in gtk_wrap_box_get_child_property()
570 gboolean vfill) in gtk_wrap_box_pack() argument
585 gboolean vfill, in gtk_wrap_box_pack_wrapped() argument
604 child_info->vfill = vfill ? TRUE : FALSE; in gtk_wrap_box_pack_wrapped()
710 if (vfill) in gtk_wrap_box_query_child_packing()
711 *vfill = child_info->vfill; in gtk_wrap_box_query_child_packing()
734 vfill = vfill != FALSE; in gtk_wrap_box_set_child_packing()
743 child_info->hfill != hfill || child_info->vfill != vfill || in gtk_wrap_box_set_child_packing()
[all …]
H A Dgtkwrapbox.h77 guint vfill : 1; member
105 gboolean vfill);
111 gboolean vfill,
121 gboolean *vfill,
128 gboolean vfill,
/dports/graphics/gimp-app/gimp-2.10.30/app/widgets/
H A Dgtkwrapbox.c374 gboolean vexpand = FALSE, vfill = FALSE; in gtk_wrap_box_set_child_property() local
433 gboolean vexpand = FALSE, vfill = FALSE; in gtk_wrap_box_get_child_property() local
466 g_value_set_boolean (value, vfill); in gtk_wrap_box_get_child_property()
572 gboolean vfill) in gtk_wrap_box_pack() argument
587 gboolean vfill, in gtk_wrap_box_pack_wrapped() argument
602 child_info->vfill = vfill ? TRUE : FALSE; in gtk_wrap_box_pack_wrapped()
708 if (vfill) in gtk_wrap_box_query_child_packing()
709 *vfill = child_info->vfill; in gtk_wrap_box_query_child_packing()
732 vfill = vfill != FALSE; in gtk_wrap_box_set_child_packing()
741 child_info->hfill != hfill || child_info->vfill != vfill || in gtk_wrap_box_set_child_packing()
[all …]
H A Dgtkwrapbox.h75 guint vfill : 1; member
103 gboolean vfill);
109 gboolean vfill,
119 gboolean *vfill,
126 gboolean vfill,
/dports/print/texlive-base/texlive-20150521-source/texk/dvidvi/
H A Ddvisamp.tex23 \ \vfill
25 \vfill
29 \vfill
32 \ \vfill
38 \vfill\eject
47 \vfill\eject
48 \ \vfill
/dports/textproc/bibtool/BibTool/doc/
H A Dbibtool-doc.sty27 \null\vfill
35 \vfill \textbf{\Huge\@title}\vfill
38 \vfill\vfill
43 }{\end{minipage}\end{center}\vfill\vfill}
/dports/science/massxpert/massxpert-c229f4a1abde3c20b83a90e50f9c5d79104dfa5f/usermanual/
H A Dtitlepage.tex1 \vfill
12 \vfill
33 \vfill
48 \vfill
73 \vfill
/dports/math/gap/gap-4.11.0/pkg/aclib-1.3.2/doc/
H A Dmanual.tex30 \centerline{\titlefont Aclib} \vfill
31 \centerline{\titlefont ---}\vfill
32 \centerline{\titlefont A GAP4 Package} \vfill
34 \centerline{\secfont Almost Crystallographic Groups} \vfill
35 \centerline{\secfont by}\vfill
/dports/math/py-numpy/numpy-1.20.3/numpy/core/src/common/simd/vsx/
H A Dmemory.h151 npyv_s32 vfill = npyv_setall_s32(fill); in npyv_load_till_s32() local
154 return vec_insert(ptr[0], vfill, 0); in npyv_load_till_s32()
157 *npyv__ptr2u64(ptr), (npyv_u64)vfill, 0 in npyv_load_till_s32()
160 vfill = vec_insert(ptr[2], vfill, 2); in npyv_load_till_s32()
162 *npyv__ptr2u64(ptr), (npyv_u64)vfill, 0 in npyv_load_till_s32()
191 npyv_s32 vfill = npyv_setall_s32(fill); in npyv_loadn_till_s32() local
194 vfill = vec_insert(ptr[stride*2], vfill, 2); in npyv_loadn_till_s32()
196 vfill = vec_insert(ptr[stride], vfill, 1); in npyv_loadn_till_s32()
198 vfill = vec_insert(*ptr, vfill, 0); in npyv_loadn_till_s32()
203 return vfill; in npyv_loadn_till_s32()
/dports/math/gap/gap-4.11.0/pkg/grpconst-2.6.2/doc/
H A Dmanual.tex36 \centerline{\titlefont Group Constructions} \vfill
37 \centerline{\titlefont ---}\vfill
38 \centerline{\titlefont A GAP 4 Package}\vfill
39 \centerline{\secfont by}\vfill
41 \centerline{\secfont and }\vfill
/dports/math/gap/gap-4.11.0/pkg/CaratInterface/doc/
H A Dmanual.tex12 \vfill
14 \vfill
21 \vfill
30 \vfill
34 \vfill
/dports/math/gap/gap-4.11.0/pkg/nilmat-1.4/doc/
H A Dmanual.tex20 \vfill
29 \vfill
40 \vfill
49 \vfill
/dports/math/testu01/TestU01-1.2.3/mylib/
H A Dtitre.tex6 \vfill
9 \vfill
18 \vfill
28 \vfill
/dports/math/gap/gap-4.11.0/pkg/crystcat/doc/
H A Dmanual.tex23 \vfill
31 \vfill
40 \vfill
44 \vfill
/dports/math/testu01/TestU01-1.2.3/probdist/
H A Dtitre.tex6 \vfill
11 \vfill
18 \vfill
31 \vfill
/dports/print/tex-dvipsk/texlive-20150521-source/texk/dvipsk/contrib/
H A Dtreen.sh24 \table\vfill\eject\init
29 \table\vfill\eject\init
32 \sample\vfill\eject\init
35 \sample\vfill\eject\init
/dports/textproc/hs-pandoc-crossref/pandoc-crossref-0.3.12.0/_cabal_deps/doclayout-0.3/test/
H A Dtest.hs257 (vfill "|" <> cblock 5 ("a" $$ "bbb" $$ "ccccc") <> lblock 3 "dd" <>
258 vfill "+")
263 (vfill "| " <> cblock 5 ("a" $$ "bbb") <> vfill " | " <>
264 lblock 2 ("dd" $$ "ee" $$ "ff") <> vfill " |")
/dports/textproc/hs-pandoc/pandoc-2.14.2/_cabal_deps/doclayout-0.3.0.2/test/
H A Dtest.hs257 (vfill "|" <> cblock 5 ("a" $$ "bbb" $$ "ccccc") <> lblock 3 "dd" <>
258 vfill "+")
263 (vfill "| " <> cblock 5 ("a" $$ "bbb") <> vfill " | " <>
264 lblock 2 ("dd" $$ "ee" $$ "ff") <> vfill " |")
/dports/math/testu01/TestU01-1.2.3/testu01/
H A Dtitle.tex6 \vfill
11 \vfill
14 \vfill
19 \vfill
47 \vfill
/dports/math/gap/gap-4.11.0/pkg/fwtree-1.3/doc/
H A Dmanual.tex45 \centerline{\secfont Version \input ../VERSION}\vfill
46 \centerline{\secfont by}\vfill
49 \centerline{email: beick@tu-bs.de}%\vfill
54 \centerline{email: tobias.rossmann@googlemail.com}\vfill
/dports/textproc/bibtool/BibTool/BibTcl/
H A Dbibtcl.ltx99 \null\vfill
107 \vfill \textbf{\Huge Tcl Programmers Manual}\vfill
109 \vfill\vfill
118 \end{minipage}\vfill\vfill
145 \vfill\par\noindent
/dports/print/texlive-base/texlive-20150521-source/utils/vlna/vlna-1.5/
H A Dcsmac.tex20 \def\fin{\par\vfill\eject % this is done when we are ending the index
21 \ifpagesaved\null\vfill\eject\fi % output a null index column
22 \if L\lr\else\null\vfill\eject\fi % finish the current page
39 \def\con{\par\vfill\eject % finish the section names
40 % \ifodd\pageno\else\titletrue\null\vfill\eject\fi % for duplex printers
59 \centerline{\titlefont\title}\vfill}} % timestamps the contents page
/dports/math/gap/gap-4.11.0/pkg/rds-1.7/doc/
H A Dmanual.tex28 \centerline{\secfont Version \RDSversion}\vfill
29 \centerline{\secfont by}\vfill
32 \centerline{\Mailto{marc_roeder@web.de}}\vfill

12345678910>>...78