Home
last modified time | relevance | path

Searched refs:qgs (Results 1 – 25 of 272) sorted by relevance

1234567891011

/dports/graphics/cptutils/cptutils-1.74/src/unit/
H A Dtests_qgs.c21 qgs_t *qgs = qgs_new(); in test_qgs_create() local
23 qgs_destroy(qgs); in test_qgs_create()
28 qgs_t *qgs; in test_qgs_set_type() local
32 qgs_destroy(qgs); in test_qgs_set_type()
37 qgs_t *qgs; in test_qgs_set_name() local
41 qgs_destroy(qgs); in test_qgs_set_name()
46 qgs_t *qgs; in test_qgs_alloc_entries() local
49 CU_ASSERT_EQUAL(qgs->n, 3); in test_qgs_alloc_entries()
51 qgs_destroy(qgs); in test_qgs_alloc_entries()
56 qgs_t *qgs; in test_qgs_set_entry() local
[all …]
H A Dtests_qgswrite.c20 qgs_t *qgs = qgs_new(); in test_qgswrite_minimal() local
22 CU_ASSERT_PTR_NOT_NULL_FATAL(qgs); in test_qgswrite_minimal()
23 CU_ASSERT_EQUAL(qgs_set_type(qgs, QGS_TYPE_INTERPOLATED), 0); in test_qgswrite_minimal()
24 CU_ASSERT_EQUAL(qgs_set_name(qgs, "froob"), 0); in test_qgswrite_minimal()
25 CU_ASSERT_EQUAL(qgs_alloc_entries(qgs, 2), 0); in test_qgswrite_minimal()
34 CU_TEST_FATAL(qgs_set_entry(qgs, 0, &entry) == 0); in test_qgswrite_minimal()
44 CU_TEST_FATAL(qgs_set_entry(qgs, 1, &entry) == 0); in test_qgswrite_minimal()
59 CU_ASSERT_EQUAL(qgs_write(path, qgs), 0); in test_qgswrite_minimal()
64 qgs_destroy(qgs); in test_qgswrite_minimal()
/dports/graphics/cptutils/cptutils-1.74/src/common/
H A Dqgs.c13 qgs_t *qgs; in qgs_new() local
18 qgs->type = QGS_TYPE_UNSET; in qgs_new()
19 qgs->name = NULL; in qgs_new()
20 qgs->n = 0; in qgs_new()
21 qgs->entries = NULL; in qgs_new()
23 return qgs; in qgs_new()
36 qgs->type = type; in qgs_set_type()
45 qgs->n = n; in qgs_alloc_entries()
51 free(qgs->name); in qgs_destroy()
52 free(qgs->entries); in qgs_destroy()
[all …]
H A Dqgswrite.c156 static char* mid_stops_string(qgs_t *qgs) in mid_stops_string() argument
158 int n = qgs->n; in mid_stops_string()
180 int n = qgs->n; in qgs_write_midstops()
195 if ((str = mid_stops_string(qgs)) == NULL) in qgs_write_midstops()
219 int n = qgs->n; in qgs_write_colorramp_props()
227 if (qgs_write_midstops(writer, qgs) != 0) in qgs_write_colorramp_props()
267 if (qgs_write_colorramp(writer, qgs) != 0) in qgs_write_colorramps()
310 if (qgs_write_symbols(writer, qgs) != 0) in qgs_write_qgis()
316 if (qgs_write_colorramps(writer, qgs) != 0) in qgs_write_qgis()
333 if (qgs->n < 2) in qgs_write_mem()
[all …]
H A Dqgs.h34 extern void qgs_destroy(qgs_t *qgs);
36 extern int qgs_set_name(qgs_t *qgs, const char *name);
37 extern int qgs_set_type(qgs_t *qgs, int type);
38 extern int qgs_alloc_entries(qgs_t *qgs, size_t n);
39 extern int qgs_set_entry(qgs_t *qgs, size_t i, qgs_entry_t *entry);
/dports/graphics/cptutils/cptutils-1.74/src/svgx/
H A Daccept.sh86 qgs="$base-$name.qgs"
87 assert_raises "./svgx -t qgs -s $name -o $qgs $fixtures/$svgsrc" 0
88 assert "equal-qgs $qgs accept/$qgs" 'true'
89 assert "valid-qgs $qgs" 'true'
90 rm -f "$qgs"
H A Dsvgxdump.c655 if (qgs_alloc_entries(qgs, m) != 0) in svgqgs2()
670 if (qgs_set_entry(qgs, n, &entry) != 0) in svgqgs2()
688 qgs_t *qgs; in svgqgs() local
690 if ((qgs = qgs_new()) == NULL) in svgqgs()
696 if (svgqgs2(svg, qgs) == 0) in svgqgs()
697 return qgs; in svgqgs()
699 qgs_destroy(qgs); in svgqgs()
709 qgs_t *qgs; in svgqgs_dump() local
711 if ((qgs = svgqgs(svg)) == NULL) in svgqgs_dump()
720 if (qgs_write(file, qgs) != 0) in svgqgs_dump()
[all …]
/dports/audio/mumble/mumble-1.3.3/src/mumble/
H A DOverlayClient.cpp45 qgv.setScene(&qgs); in OverlayClient()
57 qgs.addItem(&ougUsers); in OverlayClient()
61 qgs.addItem(qgpiFPS); in OverlayClient()
67 qgs.addItem(qgpiTime); in OverlayClient()
255 qgs.addItem(qgpw); in showGui()
273 qgs.setFocus(); in showGui()
539 qgs.addItem(qgpiCursor); in setupScene()
542 qgs.addItem(qgpiLogo); in setupScene()
547 qgs.removeItem(qgpiCursor); in setupScene()
552 qgs.removeItem(qgpiLogo); in setupScene()
[all …]
H A DOverlayConfig.cpp90 qgs.clear(); in initDisplay()
92 qgs.setBackgroundBrush(qgvView->backgroundBrush()); in initDisplay()
94 qgs.addItem(qgpiScreen); in initDisplay()
97 qgs.addItem(qgpiFpsLive); in initDisplay()
100 qgs.addItem(qgpiTimeLive); in initDisplay()
105 qgs.addItem(oug); in initDisplay()
108 qgs.addItem(qgtiInstructions); in initDisplay()
111 qgvView->setScene(&qgs); in initDisplay()
146 qgs(), in OverlayConfig()
558 f.setPointSizeF(qgs.sceneRect().height() / 20.0f); in resizeScene()
[all …]
/dports/audio/murmur/mumble-1.3.3/src/mumble/
H A DOverlayClient.cpp45 qgv.setScene(&qgs); in OverlayClient()
57 qgs.addItem(&ougUsers); in OverlayClient()
61 qgs.addItem(qgpiFPS); in OverlayClient()
67 qgs.addItem(qgpiTime); in OverlayClient()
255 qgs.addItem(qgpw); in showGui()
273 qgs.setFocus(); in showGui()
539 qgs.addItem(qgpiCursor); in setupScene()
542 qgs.addItem(qgpiLogo); in setupScene()
547 qgs.removeItem(qgpiCursor); in setupScene()
552 qgs.removeItem(qgpiLogo); in setupScene()
[all …]
H A DOverlayConfig.cpp90 qgs.clear(); in initDisplay()
92 qgs.setBackgroundBrush(qgvView->backgroundBrush()); in initDisplay()
94 qgs.addItem(qgpiScreen); in initDisplay()
97 qgs.addItem(qgpiFpsLive); in initDisplay()
100 qgs.addItem(qgpiTimeLive); in initDisplay()
105 qgs.addItem(oug); in initDisplay()
108 qgs.addItem(qgtiInstructions); in initDisplay()
111 qgvView->setScene(&qgs); in initDisplay()
146 qgs(), in OverlayConfig()
558 f.setPointSizeF(qgs.sceneRect().height() / 20.0f); in resizeScene()
[all …]
/dports/cad/ngspice_rework/ngspice-35/src/spicelib/devices/bsim1/
H A Db1moscap.c56 double qgs; in B1mosCap() local
79 qgs = args[1] * vgs; in B1mosCap()
81 *qGatePointer = *qGatePointer + qgd + qgs + qgb; in B1mosCap()
/dports/cad/ngspice_rework/ngspice-35/src/spicelib/devices/bsim2/
H A Db2moscap.c56 double qgs; in B2mosCap() local
79 qgs = args[1] * vgs; in B2mosCap()
81 *qGatePointer = *qGatePointer + qgd + qgs + qgb; in B2mosCap()
/dports/cad/jspice3/jspice3-2.5/src/lib/dev/bsim2/
H A Db2moscap.c71 double qgs; local
94 qgs = args[1] * vgs;
96 *qGatePointer = *qGatePointer + qgd + qgs + qgb;
/dports/cad/jspice3/jspice3-2.5/src/lib/dev/bsim1/
H A Db1moscap.c71 double qgs; local
94 qgs = args[1] * vgs;
96 *qGatePointer = *qGatePointer + qgd + qgs + qgb;
/dports/graphics/qgis/qgis-3.22.3/scripts/spell_check/
H A D.agignore67 tests/testdata/qgis_server_accesscontrol/project.qgs
68 tests/testdata/qgis_server/test_project_contextual_legend.qgs
69 tests/testdata/layouts/sample_project.qgs
72 tests/testdata/projects/test-project-with-relations.qgs
/dports/graphics/qgis-ltr/qgis-3.16.16/scripts/spell_check/
H A D.agignore67 tests/testdata/qgis_server_accesscontrol/project.qgs
68 tests/testdata/qgis_server/test_project_contextual_legend.qgs
69 tests/testdata/layouts/sample_project.qgs
72 tests/testdata/projects/test-project-with-relations.qgs
/dports/graphics/cptutils/cptutils-1.74/src/gradient-convert/
H A Daccept.sh8 WRAPS=(cpt css3 gimp gpt png pov psp qgs sao svg map)
42 for oformat in cpt c3g ggr gpf inc lut pg png psp qgs sao svg map
/dports/graphics/qgis/qgis-3.22.3/ms-windows/osgeo4w/
H A Dqgis.reg.tmpl7 @="@osgeo4w@\\apps\\@package@\\icons\\qgis-qgs.ico"
17 [HKEY_CLASSES_ROOT\.qgs]
/dports/graphics/qgis-ltr/qgis-3.16.16/ms-windows/osgeo4w/
H A Dqgis.reg.tmpl7 @="@osgeo4w@\\apps\\@package@\\icons\\qgis-qgs.ico"
17 [HKEY_CLASSES_ROOT\.qgs]
/dports/graphics/qgis-ltr/qgis-3.16.16/tests/src/python/
H A Dtest_qgsauxiliarystorage.py449 qgs = path + '.qgs'
450 self.assertTrue(p.write(qgs))
451 self.assertTrue(os.path.exists(qgs))
473 qgs = newpath + '.qgs'
474 self.assertTrue(p.write(qgs))
475 self.assertTrue(os.path.exists(qgs))
/dports/astro/libosmium/libosmium-2.17.2/test/data-tests/
H A D.gitignore1 multipolygon.qgs~
/dports/graphics/cptutils/cptutils-1.74/src/svgx/wrapper/
H A Dsvgqgs2 svgx --type qgs "$@"
/dports/www/osrm-backend/osrm-backend-5.26.0/third_party/libosmium/test/data-tests/
H A D.gitignore1 multipolygon.qgs~
/dports/net/kitinerary/kitinerary-21.12.3/src/knowledgedb-generator/
H A D.gitignore9 timezones.qgs~

1234567891011