Home
last modified time | relevance | path

Searched refs:customizer (Results 1 – 25 of 548) sorted by relevance

12345678910>>...22

/dports/www/tikiwiki/tiki-21.2/themes/base_files/css/
H A Dtheme-customizer.css40 .customizer h1, .customizer h2 {
46 .customizer h1 + p, .customizer > div {
49 .customizer select {
55 .customizer .row {
71 .customizer .input {
81 .customizer .input input, .customizer .input textarea, .customizer .input select {
96 .customizer .colors {
141 .customizer .headings .h1, .customizer .headings .h2, .customizer .headings .h3, .customizer .headi…
327 .customizer p.error input, .customizer p.error textarea {
404 ….customizer .tables .input label, .customizer .navbars .input label, .customizer .dropdowns .input…
[all …]
/dports/graphics/digikam/digikam-7.4.0/core/tests/advancedrename/
H A Drenamecustomizer_utest.cpp86 QCOMPARE(customizer.newName(filename), result); in newName_should_return_empty_string_with_empty_filename()
92 customizer.setChangeCase(RenameCustomizer::NONE); in setCaseType_set_to_none()
99 customizer.setChangeCase(RenameCustomizer::UPPER); in setCaseType_set_to_upper()
113 customizer.setUseDefault(true); in setUseDefault_true()
114 QVERIFY(customizer.useDefault()); in setUseDefault_true()
120 customizer.setUseDefault(false); in setUseDefault_false()
121 QVERIFY(customizer.useDefault() == false); in setUseDefault_false()
127 customizer.setUseDefault(true); in setUseDefault_case_none_should_deliver_original_filename()
128 customizer.setChangeCase(RenameCustomizer::NONE); in setUseDefault_case_none_should_deliver_original_filename()
135 customizer.setUseDefault(true); in setUseDefault_case_upper_should_deliver_uppercase_filename()
[all …]
/dports/www/tikiwiki/tiki-21.2/lib/test/core/Event/
H A DCustomizerTest.php41 $customizer = new Tiki_Event_Customizer;
43 $customizer->bind($this->manager, $this->runner);
54 $customizer = new Tiki_Event_Customizer;
55 $customizer->addRule(
63 $customizer->bind($this->manager, $this->runner);
79 $customizer = new Tiki_Event_Customizer;
81 $customizer->bind($this->manager, $this->runner);
98 $customizer = new Tiki_Event_Customizer;
100 $customizer->bind($this->manager, $this->runner);
119 $customizer = new Tiki_Event_Customizer;
[all …]
/dports/x11-toolkits/ctk/CTK-2018-10-29/Libs/PluginFramework/
H A DctkServiceTracker_p.tpp38 ctkServiceTrackerCustomizer<T>* customizer)
39 : context(context), customizer(customizer), trackReference(reference),
42 this->customizer = customizer ? customizer : q_func();
65 ctkServiceTrackerCustomizer<T>* customizer)
66 : context(context), customizer(customizer), trackClass(clazz),
70 this->customizer = customizer ? customizer : q_func();
94 ctkServiceTrackerCustomizer<T>* customizer)
95 : context(context), filter(filter), customizer(customizer),
99 this->customizer = customizer ? customizer : q_func();
H A DctkPluginTracker_p.tpp33 ctkPlugin::States stateMask, ctkPluginTrackerCustomizer<T>* customizer)
34 : context(context), customizer(customizer), mask(stateMask), q_ptr(pt)
36 this->customizer = customizer ? customizer : q_func();
43 if (customizer != q_func())
45 delete customizer;
H A DctkTrackedService.tpp27 ctkServiceTrackerCustomizer<T>* customizer)
28 : serviceTracker(serviceTracker), customizer(customizer)
62 * If the customizer throws an unchecked exception, it
72 * If the customizer throws an unchecked exception,
80 * If the customizer throws an unchecked exception,
91 * If the customizer throws an unchecked exception, it is
112 return customizer->addingService(item);
122 customizer->modifiedService(item, object);
132 customizer->removedService(item, object);
H A DctkTrackedPlugin.tpp25 ctkPluginTrackerCustomizer<T>* customizer)
26 : pluginTracker(pluginTracker), customizer(customizer)
55 * If the customizer throws an exception, it is safe
63 * If the customizer throws an exception, it is safe
74 return customizer->addingPlugin(item, related);
83 customizer->modifiedPlugin(item, related, object);
92 customizer->removedPlugin(item, related, object);
/dports/devel/cutter/cutter-1.2.6/cutter/
H A Dcut-loader-customizer.c52 GObject *customizer; in cut_loader_customizer_new() local
59 customizer = cut_module_instantiate(module, in cut_loader_customizer_new()
63 return CUT_LOADER_CUSTOMIZER(customizer); in cut_loader_customizer_new()
67 cut_loader_customizer_customize (CutLoaderCustomizer *customizer, in cut_loader_customizer_customize() argument
72 g_return_if_fail(CUT_IS_LOADER_CUSTOMIZER(customizer)); in cut_loader_customizer_customize()
74 klass = CUT_LOADER_CUSTOMIZER_GET_CLASS(customizer); in cut_loader_customizer_customize()
76 klass->customize(customizer, loader); in cut_loader_customizer_customize()
/dports/devel/py-pydash/pydash-4.8.0/src/pydash/
H A Dobjects.py146 customizer = kargs.get('customizer')
149 customizer = sources.pop()
151 if customizer is not None:
160 if customizer:
229 def clone_with(value, customizer=None): argument
250 return base_clone(value, customizer=customizer)
293 return base_clone(value, is_deep=True, customizer=customizer)
1238 return update_with(obj, path, pyd.constant(value), customizer=customizer)
1630 if customizer is not None and not callable(customizer):
1632 elif customizer:
[all …]
H A Dpredicates.py493 return is_equal_with(value, other, customizer=None)
496 def is_equal_with(value, other, customizer): argument
524 equal = customizer(value, other) if callable(customizer) else None
529 elif (callable(customizer) and
537 equal = is_equal_with(value, other[key], customizer)
863 def is_match_with(obj, source, customizer=None, argument
896 if not callable(customizer):
902 cbk = customizer
/dports/devel/gitlist/gitlist/vendor/symfony/http-kernel/Tests/HttpCache/
H A DTestHttpKernel.php27 protected $customizer; variable in Symfony\\Component\\HttpKernel\\Tests\\HttpCache\\TestHttpKernel
31 public function __construct($body, $status, $headers, \Closure $customizer = null) argument
36 $this->customizer = $customizer;
75 if (null !== $customizer = $this->customizer) {
76 $customizer($request, $response);
/dports/www/itop/web/lib/silex/vendor/symfony/http-kernel/Tests/HttpCache/
H A DTestHttpKernel.php28 protected $customizer; variable in Symfony\\Component\\HttpKernel\\Tests\\HttpCache\\TestHttpKernel
32 public function __construct($body, $status, $headers, \Closure $customizer = null) argument
37 $this->customizer = $customizer;
76 if (null !== $customizer = $this->customizer) {
77 $customizer($request, $response);
/dports/mail/phplist/phplist-3.6.6/public_html/lists/base/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Tests/HttpCache/
H A DTestHttpKernel.php28 protected $customizer; variable in Symfony\\Component\\HttpKernel\\Tests\\HttpCache\\TestHttpKernel
32 public function __construct($body, $status, $headers, \Closure $customizer = null) argument
37 $this->customizer = $customizer;
86 if (null !== $customizer = $this->customizer) {
87 $customizer($request, $response);
/dports/deskutils/egroupware/egroupware/vendor/symfony/http-kernel/Tests/HttpCache/
H A DTestHttpKernel.php28 protected $customizer; variable in Symfony\\Component\\HttpKernel\\Tests\\HttpCache\\TestHttpKernel
32 public function __construct($body, $status, $headers, \Closure $customizer = null) argument
37 $this->customizer = $customizer;
86 if (null !== $customizer = $this->customizer) {
87 $customizer($request, $response);
/dports/finance/prestashop/prestashop/vendor/symfony/symfony/src/Symfony/Component/HttpKernel/Tests/HttpCache/
H A DTestHttpKernel.php28 protected $customizer; variable in Symfony\\Component\\HttpKernel\\Tests\\HttpCache\\TestHttpKernel
32 public function __construct($body, $status, $headers, \Closure $customizer = null) argument
37 $this->customizer = $customizer;
86 if (null !== $customizer = $this->customizer) {
87 $customizer($request, $response);
/dports/java/eclipse/eclipse.platform.releng.aggregator-R4_16/rt.equinox.framework/bundles/org.eclipse.osgi/osgi/src/org/osgi/util/tracker/
H A DServiceTracker.java77 final ServiceTrackerCustomizer<S, T> customizer; field in ServiceTracker
147 this.customizer = (customizer == null) ? this : customizer; in ServiceTracker()
179 …final BundleContext context, final String clazz, final ServiceTrackerCustomizer<S, T> customizer) { in ServiceTracker() argument
183 this.customizer = (customizer == null) ? this : customizer; in ServiceTracker()
216 …inal BundleContext context, final Filter filter, final ServiceTrackerCustomizer<S, T> customizer) { in ServiceTracker() argument
222 this.customizer = (customizer == null) ? this : customizer; in ServiceTracker()
249 …nal BundleContext context, final Class<S> clazz, final ServiceTrackerCustomizer<S, T> customizer) { in ServiceTracker() argument
250 this(context, clazz.getName(), customizer); in ServiceTracker()
943 return customizer.addingService(item); in customizerAdding()
956 customizer.modifiedService(item, object); in customizerModified()
[all …]
H A DBundleTracker.java65 final BundleTrackerCustomizer<T> customizer; field in BundleTracker
109 public BundleTracker(BundleContext context, int stateMask, BundleTrackerCustomizer<T> customizer) { in BundleTracker() argument
112 this.customizer = (customizer == null) ? this : customizer; in BundleTracker()
475 return customizer.addingBundle(item, related); in customizerAdding()
488 customizer.modifiedBundle(item, related, object); in customizerModified()
501 customizer.removedBundle(item, related, object); in customizerRemoved()
/dports/www/uchiwa/uchiwa-0.18.2/public/bower_components/bootstrap/docs/jade/
H A Dcustomizer-variables.jade1 …ECTION DIRECTLY! It is autogenerated via the `build-customizer-html` Grunt task using the customiz…
12 div.bs-customizer-input
21 …ECTION DIRECTLY! It is autogenerated via the `build-customizer-html` Grunt task using the customiz…
H A Dcustomizer-nav.jade1 …ECTION DIRECTLY! It is autogenerated via the `build-customizer-html` Grunt task using the customiz…
15 …ECTION DIRECTLY! It is autogenerated via the `build-customizer-html` Grunt task using the customiz…
/dports/graphics/digikam/digikam-7.4.0/core/utilities/import/widgets/
H A Dalbumcustomizer.cpp62 customizer (nullptr), in Private()
75 QLineEdit* customizer; member in Digikam::AlbumCustomizer::Private
126 d->customizer = new QLineEdit(hbox2); in AlbumCustomizer()
173 connect(d->customizer, SIGNAL(textChanged(QString)), in AlbumCustomizer()
187 d->customizer->setText(group.readEntry("CustomDateFormat", QString())); in readSettings()
199 group.writeEntry("CustomDateFormat", d->customizer->text()); in saveSettings()
219 return d->customizer->text(); in customDateFormat()
242 d->customizer->setEnabled(b); in slotFolderDateFormatChanged()
/dports/mail/phplist/phplist-3.6.6/public_html/lists/admin/ui/phplist-ui-bootlist/bootstrap/docs/_pug/
H A Dcustomizer-nav.pug1 …ECTION DIRECTLY! It is autogenerated via the `build-customizer-html` Grunt task using the customiz…
17 …ECTION DIRECTLY! It is autogenerated via the `build-customizer-html` Grunt task using the customiz…
/dports/www/osrm-backend/osrm-backend-5.26.0/unit_tests/customizer/
H A Dcell_customization.cpp11 using namespace osrm::customizer;
81 CellCustomizer customizer(mlp); in BOOST_AUTO_TEST_CASE() local
104 customizer.Customize(graph, heap, storage, node_filter, metric, 1, 0); in BOOST_AUTO_TEST_CASE()
105 customizer.Customize(graph, heap, storage, node_filter, metric, 1, 1); in BOOST_AUTO_TEST_CASE()
228 CellCustomizer customizer(mlp); in BOOST_AUTO_TEST_CASE() local
231 customizer.Customize(graph, heap, storage, node_filter, metric, 1, 0); in BOOST_AUTO_TEST_CASE()
232 customizer.Customize(graph, heap, storage, node_filter, metric, 1, 1); in BOOST_AUTO_TEST_CASE()
233 customizer.Customize(graph, heap, storage, node_filter, metric, 1, 2); in BOOST_AUTO_TEST_CASE()
286 customizer.Customize(graph, storage_rec, node_filter, metric_rec); in BOOST_AUTO_TEST_CASE()
324 CellCustomizer customizer(mlp); in BOOST_AUTO_TEST_CASE() local
[all …]
/dports/chinese/wordpress-zh_TW/wordpress/wp-admin/css/
H A Dcustomize-nav-menus.css57 .wp-customizer .menu-item-settings,
62 .wp-customizer .menu-item-bar {
82 .wp-customizer .menu-item-handle:hover {
90 .wp-customizer .menu-item-settings {
164 .wp-customizer .menu-item .item-edit {
187 .wp-customizer .menu-settings dl {
200 .wp-customizer .menu-settings {
297 .wp-customizer #screen-options-wrap {
304 .wp-customizer .metabox-prefs label {
311 .wp-customizer .toggle-indicator {
[all …]
/dports/chinese/wordpress-zh_CN/wordpress/wp-admin/css/
H A Dcustomize-nav-menus-rtl.css58 .wp-customizer .menu-item-settings,
63 .wp-customizer .menu-item-bar {
83 .wp-customizer .menu-item-handle:hover {
91 .wp-customizer .menu-item-settings {
165 .wp-customizer .menu-item .item-edit {
188 .wp-customizer .menu-settings dl {
201 .wp-customizer .menu-settings {
298 .wp-customizer #screen-options-wrap {
305 .wp-customizer .metabox-prefs label {
312 .wp-customizer .toggle-indicator {
[all …]
H A Dcustomize-nav-menus.css57 .wp-customizer .menu-item-settings,
62 .wp-customizer .menu-item-bar {
82 .wp-customizer .menu-item-handle:hover {
90 .wp-customizer .menu-item-settings {
164 .wp-customizer .menu-item .item-edit {
187 .wp-customizer .menu-settings dl {
200 .wp-customizer .menu-settings {
297 .wp-customizer #screen-options-wrap {
304 .wp-customizer .metabox-prefs label {
311 .wp-customizer .toggle-indicator {
[all …]

12345678910>>...22