Home
last modified time | relevance | path

Searched refs:buildable (Results 1 – 25 of 1764) sorted by relevance

12345678910>>...71

/dports/x11-toolkits/gtk20/gtk+-2.24.33/gtk/
H A Dgtkbuildable.c64 gtk_buildable_set_name (GtkBuildable *buildable, in gtk_buildable_set_name() argument
72 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_set_name()
75 (* iface->set_name) (buildable, name); in gtk_buildable_set_name()
98 gtk_buildable_get_name (GtkBuildable *buildable) in gtk_buildable_get_name() argument
104 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_get_name()
107 return (* iface->get_name) (buildable); in gtk_buildable_get_name()
136 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_add_child()
166 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_set_buildable_property()
195 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_parser_finished()
226 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_construct_child()
[all …]
H A Dgtkbuildable.h97 void (* set_name) (GtkBuildable *buildable,
99 const gchar * (* get_name) (GtkBuildable *buildable);
100 void (* add_child) (GtkBuildable *buildable,
104 void (* set_buildable_property) (GtkBuildable *buildable,
108 GObject * (* construct_child) (GtkBuildable *buildable,
111 gboolean (* custom_tag_start) (GtkBuildable *buildable,
117 void (* custom_tag_end) (GtkBuildable *buildable,
122 void (* custom_finished) (GtkBuildable *buildable,
127 void (* parser_finished) (GtkBuildable *buildable,
130 GObject * (* get_internal_child) (GtkBuildable *buildable,
[all …]
/dports/x11-toolkits/gtk30/gtk+-3.24.31/gtk/
H A Dgtkbuildable.c61 gtk_buildable_set_name (GtkBuildable *buildable, in gtk_buildable_set_name() argument
69 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_set_name()
72 (* iface->set_name) (buildable, name); in gtk_buildable_set_name()
95 gtk_buildable_get_name (GtkBuildable *buildable) in gtk_buildable_get_name() argument
101 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_get_name()
104 return (* iface->get_name) (buildable); in gtk_buildable_get_name()
133 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_add_child()
163 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_set_buildable_property()
192 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_parser_finished()
223 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_construct_child()
[all …]
H A Dgtkbuildable.h94 void (* set_name) (GtkBuildable *buildable,
96 const gchar * (* get_name) (GtkBuildable *buildable);
97 void (* add_child) (GtkBuildable *buildable,
101 void (* set_buildable_property) (GtkBuildable *buildable,
105 GObject * (* construct_child) (GtkBuildable *buildable,
108 gboolean (* custom_tag_start) (GtkBuildable *buildable,
114 void (* custom_tag_end) (GtkBuildable *buildable,
119 void (* custom_finished) (GtkBuildable *buildable,
124 void (* parser_finished) (GtkBuildable *buildable,
127 GObject * (* get_internal_child) (GtkBuildable *buildable,
[all …]
/dports/x11-toolkits/gtk40/gtk-4.4.1/gtk/
H A Dgtkbuildable.c66 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_set_buildable_id()
69 (* iface->set_id) (buildable, id); in gtk_buildable_set_buildable_id()
71 g_object_set_data_full (G_OBJECT (buildable), in gtk_buildable_set_buildable_id()
95 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_get_buildable_id()
98 return (* iface->get_id) (buildable); in gtk_buildable_get_buildable_id()
125 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_add_child()
152 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_parser_finished()
181 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_construct_child()
216 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_custom_tag_start()
247 iface = GTK_BUILDABLE_GET_IFACE (buildable); in gtk_buildable_custom_tag_end()
[all …]
/dports/devel/py-sip/sip-5.5.0/sipbuild/
H A Ddistutils_builder.py31 from .buildable import BuildableModule
50 for buildable in self.project.buildables:
52 if buildable.static:
74 for buildable in project.buildables:
97 module_builder.debug = buildable.debug
99 if buildable.debug:
107 for macro in buildable.define_macros:
117 buildable.make_names_relative()
120 Extension(buildable.fq_name, buildable.sources,
133 os.chdir(buildable.build_dir)
[all …]
H A Dbindings.py27 from .buildable import BuildableBindings
169 buildable.debug = self.debug
170 buildable.exceptions = self.exceptions
174 buildable.static = self.static
194 buildable.target + '.pyi')
211 buildable.headers.append(header)
213 buildable.headers.extend(self.headers)
215 buildable.sources.extend(sources)
218 buildable.include_dirs.append(buildable.build_dir)
245 buildable.sources.extend(
[all …]
/dports/x11-toolkits/p5-Gtk2/Gtk2-1.24993/t/
H A DGtkBuildable.t15 isa_ok ($buildable, 'Gtk2::Buildable');
17 $buildable->set_name ('store');
18 is ($buildable->get_name, 'store');
22 $buildable = Gtk2::HBox->new;
23 isa_ok ($buildable, 'Gtk2::Buildable');
28 $buildable->add_child ($builder, $label, undef);
31 $buildable->set_buildable_property($builder,
38 $buildable = Gtk2::UIManager->new;
40 $buildable->add_ui_from_string (<<__EOD__);
49 $buildable->parser_finished ($builder);
[all …]
/dports/science/ascent/ascent-0.7.1-66-gbcf2742a/scripts/uberenv_configs/spack_configs/envs/llnl/quartz/
H A Dspack.yaml34 buildable: true
36 buildable: false
46 buildable: false
52 buildable: false
58 buildable: false
64 buildable: false
70 buildable: false
76 buildable: false
82 buildable: false
88 buildable: false
[all …]
/dports/science/conduit/conduit-0.8.0/scripts/uberenv_configs/old_configs/spack_envs/llnl/quartz/
H A Dspack.yaml33 buildable: true
35 buildable: false
45 buildable: false
51 buildable: false
57 buildable: false
63 buildable: false
69 buildable: false
75 buildable: false
81 buildable: false
87 buildable: false
[all …]
/dports/science/axom/axom-0.6.1/scripts/spack/devtools_configs/blueos_3_ppc64le_ib/
H A Dpackages.yaml24 buildable: false
26 buildable: false
31 buildable: false
38 buildable: false
43 buildable: false
48 buildable: false
53 buildable: false
58 buildable: false
63 buildable: false
68 buildable: false
[all …]
/dports/science/axom/axom-0.6.1/scripts/spack/devtools_configs/blueos_3_ppc64le_ib_p9/
H A Dpackages.yaml24 buildable: false
26 buildable: false
31 buildable: false
38 buildable: false
43 buildable: false
48 buildable: false
53 buildable: false
58 buildable: false
63 buildable: false
68 buildable: false
[all …]
/dports/science/conduit/conduit-0.8.0/scripts/uberenv_configs/spack_configs/envs/llnl/quartz/
H A Dspack.yaml34 buildable: true
36 buildable: false
46 buildable: false
52 buildable: false
58 buildable: false
64 buildable: false
70 buildable: false
76 buildable: false
82 buildable: false
88 buildable: false
[all …]
/dports/science/axom/axom-0.6.1/scripts/spack/devtools_configs/toss_3_x86_64_ib/
H A Dpackages.yaml27 buildable: false
29 buildable: false
34 buildable: false
41 buildable: false
46 buildable: false
51 buildable: false
56 buildable: false
61 buildable: false
66 buildable: false
71 buildable: false
[all …]
/dports/devel/py-qtbuilder/PyQt-builder-1.9.1/pyqtbuild/
H A Dbuilder.py153 pro_path = os.path.join(buildable.build_dir, buildable.target + '.pro')
165 os.chdir(buildable.build_dir)
168 exe = self._run_make(buildable.target, buildable.debug,
359 if buildable.exceptions:
364 if buildable.static:
393 module = buildable.target
400 if not buildable.static:
460 if not buildable.static:
472 os.path.join(buildable.build_dir, buildable.name + '.pro'),
687 if buildable.define_macros:
[all …]
/dports/science/ascent/ascent-0.7.1-66-gbcf2742a/scripts/uberenv_configs/spack_configs/envs/llnl/pascal-cuda/
H A Dspack.yaml44 buildable: true
46 buildable: false
55 buildable: false
65 buildable: false
71 buildable: false
77 buildable: false
83 buildable: false
89 buildable: false
95 buildable: false
101 buildable: false
[all …]
/dports/science/conduit/conduit-0.8.0/scripts/uberenv_configs/spack_configs/envs/llnl/pascal-cuda/
H A Dspack.yaml44 buildable: true
46 buildable: false
55 buildable: false
65 buildable: false
71 buildable: false
77 buildable: false
83 buildable: false
89 buildable: false
95 buildable: false
101 buildable: false
[all …]
/dports/science/ascent/ascent-0.7.1-66-gbcf2742a/scripts/uberenv_configs/spack_configs/configs/alpinedav/ubuntu_18_cuda_10.1_devel/
H A Dpackages.yaml11 buildable: false
16 buildable: false
21 buildable: false
26 buildable: false
31 buildable: false
36 buildable: false
41 buildable: false
46 buildable: false
51 buildable: false
56 buildable: false
[all …]
/dports/science/conduit/conduit-0.8.0/scripts/uberenv_configs/spack_configs/configs/alpinedav/ubuntu_18_cuda_10.1_devel/
H A Dpackages.yaml11 buildable: false
16 buildable: false
21 buildable: false
26 buildable: false
31 buildable: false
36 buildable: false
41 buildable: false
46 buildable: false
51 buildable: false
56 buildable: false
[all …]
/dports/science/ascent/ascent-0.7.1-66-gbcf2742a/scripts/uberenv_configs/spack_configs/configs/docker/ubuntu/
H A Dpackages.yaml9 buildable: false
14 buildable: false
19 buildable: false
24 buildable: false
29 buildable: false
34 buildable: false
39 buildable: false
44 buildable: false
49 buildable: false
54 buildable: false
[all …]
/dports/science/ascent/ascent-0.7.1-66-gbcf2742a/scripts/uberenv_configs/spack_configs/configs/alpinedav/ubuntu_18_devel/
H A Dpackages.yaml10 buildable: false
15 buildable: false
20 buildable: false
25 buildable: false
30 buildable: false
35 buildable: false
40 buildable: false
45 buildable: false
50 buildable: false
55 buildable: false
[all …]
/dports/science/conduit/conduit-0.8.0/scripts/uberenv_configs/spack_configs/configs/alpinedav/ubuntu_18_devel/
H A Dpackages.yaml10 buildable: false
15 buildable: false
20 buildable: false
25 buildable: false
30 buildable: false
35 buildable: false
40 buildable: false
45 buildable: false
50 buildable: false
55 buildable: false
[all …]
/dports/science/conduit/conduit-0.8.0/scripts/uberenv_configs/spack_configs/configs/alpinedav/ubuntu_16/
H A Dpackages.yaml9 buildable: false
14 buildable: false
19 buildable: false
24 buildable: false
29 buildable: false
34 buildable: false
39 buildable: false
44 buildable: false
49 buildable: false
54 buildable: false
[all …]
/dports/science/conduit/conduit-0.8.0/scripts/uberenv_configs/spack_configs/configs/docker/ubuntu/
H A Dpackages.yaml9 buildable: false
14 buildable: false
19 buildable: false
24 buildable: false
29 buildable: false
34 buildable: false
39 buildable: false
44 buildable: false
49 buildable: false
54 buildable: false
[all …]
/dports/science/ascent/ascent-0.7.1-66-gbcf2742a/scripts/uberenv_configs/spack_configs/configs/alpinedav/ubuntu_18.04_cuda_11.4.0_devel/
H A Dpackages.yaml11 buildable: false
16 buildable: false
21 buildable: false
26 buildable: false
31 buildable: false
36 buildable: false
41 buildable: false
46 buildable: false
51 buildable: false
56 buildable: false
[all …]

12345678910>>...71