Home
last modified time | relevance | path

Searched refs:domain_indexes (Results 1 – 14 of 14) sorted by relevance

/dports/sysutils/tracker3/tracker-3.1.2/src/libtracker-data/
H A Dtracker-class.c46 GArray *domain_indexes; member
74 priv->domain_indexes = g_array_new (TRUE, TRUE, sizeof (TrackerProperty *)); in tracker_class_init()
91 g_array_free (priv->domain_indexes, TRUE); in class_finalize()
219 return (TrackerProperty **) priv->domain_indexes->data; in tracker_class_get_domain_indexes()
379 g_array_append_val (priv->domain_indexes, value); in tracker_class_add_domain_index()
395 properties = (TrackerProperty **) priv->domain_indexes->data; in tracker_class_del_domain_index()
406 g_array_remove_index (priv->domain_indexes, found); in tracker_class_del_domain_index()
418 priv->last_domain_indexes = priv->domain_indexes; in tracker_class_reset_domain_indexes()
419 priv->domain_indexes = g_array_new (TRUE, TRUE, sizeof (TrackerProperty *)); in tracker_class_reset_domain_indexes()
H A Dtracker-property.c73 GArray *domain_indexes; member
146 priv->domain_indexes = g_array_new (TRUE, TRUE, sizeof (TrackerClass *)); in tracker_property_init()
184 g_array_free (priv->domain_indexes, TRUE); in property_finalize()
400 return (TrackerClass ** ) priv->domain_indexes->data; in tracker_property_get_domain_indexes()
734 g_array_append_val (priv->domain_indexes, value); in tracker_property_add_domain_index()
750 classes = (TrackerClass **) priv->domain_indexes->data; in tracker_property_del_domain_index()
761 g_array_remove_index (priv->domain_indexes, found); in tracker_property_del_domain_index()
773 g_array_free (priv->domain_indexes, TRUE); in tracker_property_reset_domain_indexes()
774 priv->domain_indexes = g_array_new (TRUE, TRUE, sizeof (TrackerClass *)); in tracker_property_reset_domain_indexes()
H A Dtracker-ontologies.c588 TrackerClass **domain_indexes; in tracker_ontologies_write_gvdb() local
616 domain_indexes = tracker_property_get_domain_indexes (property); in tracker_ontologies_write_gvdb()
617 if (domain_indexes) { in tracker_ontologies_write_gvdb()
620 while (*domain_indexes) { in tracker_ontologies_write_gvdb()
621 g_variant_builder_add (&builder, "s", tracker_class_get_uri (*domain_indexes)); in tracker_ontologies_write_gvdb()
622 domain_indexes++; in tracker_ontologies_write_gvdb()
H A Dtracker-data-update.c1285 TrackerProperty **domain_indexes; in cache_create_service_decomposed() local
1327 domain_indexes = tracker_class_get_domain_indexes (cl); in cache_create_service_decomposed()
1328 if (!domain_indexes) { in cache_create_service_decomposed()
1333 while (*domain_indexes) { in cache_create_service_decomposed()
1338 old_values = get_old_property_values (data, *domain_indexes, &inner_error); in cache_create_service_decomposed()
1343 tracker_property_get_name (*domain_indexes)); in cache_create_service_decomposed()
1355 tracker_property_get_name (*domain_indexes), in cache_create_service_decomposed()
1356 tracker_property_get_table_name (*domain_indexes), in cache_create_service_decomposed()
1363 tracker_property_get_name (*domain_indexes), in cache_create_service_decomposed()
1365 tracker_property_get_multiple_values (*domain_indexes)); in cache_create_service_decomposed()
[all …]
H A Dtracker-data-manager.c1289 TrackerProperty **domain_indexes; in check_for_deleted_domain_index() local
1291 domain_indexes = tracker_class_get_domain_indexes (class); in check_for_deleted_domain_index()
1293 while (*domain_indexes) { in check_for_deleted_domain_index()
1294 TrackerProperty *domain_index = *domain_indexes; in check_for_deleted_domain_index()
1300 domain_indexes++; in check_for_deleted_domain_index()
2725 while (*domain_indexes) { in is_a_domain_index()
2727 if (*domain_indexes == property) { in is_a_domain_index()
2731 domain_indexes++; in is_a_domain_index()
2812 TrackerProperty **properties, *property, **domain_indexes; in create_decomposed_metadata_tables() local
2853 domain_indexes = tracker_class_get_domain_indexes (service); in create_decomposed_metadata_tables()
[all …]
H A Dtracker-sparql.c578 TrackerClass **domain_indexes; in build_properties_string_for_class() local
585 domain_indexes = tracker_property_get_domain_indexes (properties[i]); in build_properties_string_for_class()
586 for (j = 0; !is_domain_index && domain_indexes[j] != NULL; j++) in build_properties_string_for_class()
587 is_domain_index = domain_indexes[j] == class; in build_properties_string_for_class()
/dports/sysutils/tracker/tracker-2.3.4/src/libtracker-data/
H A Dtracker-class.c46 GArray *domain_indexes; member
74 priv->domain_indexes = g_array_new (TRUE, TRUE, sizeof (TrackerProperty *)); in tracker_class_init()
90 g_array_free (priv->domain_indexes, TRUE); in class_finalize()
210 return (TrackerProperty **) priv->domain_indexes->data; in tracker_class_get_domain_indexes()
384 g_array_append_val (priv->domain_indexes, value); in tracker_class_add_domain_index()
400 properties = (TrackerProperty **) priv->domain_indexes->data; in tracker_class_del_domain_index()
411 g_array_remove_index (priv->domain_indexes, found); in tracker_class_del_domain_index()
423 priv->last_domain_indexes = priv->domain_indexes; in tracker_class_reset_domain_indexes()
424 priv->domain_indexes = g_array_new (TRUE, TRUE, sizeof (TrackerProperty *)); in tracker_class_reset_domain_indexes()
H A Dtracker-property.c71 GArray *domain_indexes; member
144 priv->domain_indexes = g_array_new (TRUE, TRUE, sizeof (TrackerClass *)); in tracker_property_init()
181 g_array_free (priv->domain_indexes, TRUE); in property_finalize()
359 return (TrackerClass ** ) priv->domain_indexes->data; in tracker_property_get_domain_indexes()
774 g_array_append_val (priv->domain_indexes, value); in tracker_property_add_domain_index()
790 classes = (TrackerClass **) priv->domain_indexes->data; in tracker_property_del_domain_index()
801 g_array_remove_index (priv->domain_indexes, found); in tracker_property_del_domain_index()
813 g_array_free (priv->domain_indexes, TRUE); in tracker_property_reset_domain_indexes()
814 priv->domain_indexes = g_array_new (TRUE, TRUE, sizeof (TrackerClass *)); in tracker_property_reset_domain_indexes()
H A Dtracker-ontologies.c571 TrackerClass **domain_indexes; in tracker_ontologies_write_gvdb() local
595 domain_indexes = tracker_property_get_domain_indexes (property); in tracker_ontologies_write_gvdb()
596 if (domain_indexes) { in tracker_ontologies_write_gvdb()
599 while (*domain_indexes) { in tracker_ontologies_write_gvdb()
600 g_variant_builder_add (&builder, "s", tracker_class_get_uri (*domain_indexes)); in tracker_ontologies_write_gvdb()
601 domain_indexes++; in tracker_ontologies_write_gvdb()
H A Dtracker-data-update.c1275 TrackerProperty **domain_indexes; in cache_create_service_decomposed() local
1333 domain_indexes = tracker_class_get_domain_indexes (cl); in cache_create_service_decomposed()
1334 if (!domain_indexes) { in cache_create_service_decomposed()
1339 while (*domain_indexes) { in cache_create_service_decomposed()
1344 old_values = get_old_property_values (data, *domain_indexes, &error); in cache_create_service_decomposed()
1347 tracker_property_get_name (*domain_indexes), in cache_create_service_decomposed()
1350 domain_indexes++; in cache_create_service_decomposed()
1363 tracker_property_get_name (*domain_indexes), in cache_create_service_decomposed()
1364 tracker_property_get_table_name (*domain_indexes), in cache_create_service_decomposed()
1373 tracker_property_get_name (*domain_indexes), in cache_create_service_decomposed()
[all …]
H A Dtracker-data-manager.c1268 TrackerProperty **domain_indexes; in check_for_deleted_domain_index() local
1270 domain_indexes = tracker_class_get_domain_indexes (class); in check_for_deleted_domain_index()
1272 while (*domain_indexes) { in check_for_deleted_domain_index()
1273 TrackerProperty *domain_index = *domain_indexes; in check_for_deleted_domain_index()
1279 domain_indexes++; in check_for_deleted_domain_index()
2837 while (*domain_indexes) { in is_a_domain_index()
2839 if (*domain_indexes == property) { in is_a_domain_index()
2843 domain_indexes++; in is_a_domain_index()
3093 TrackerProperty **properties, *property, **domain_indexes; in create_decomposed_metadata_tables() local
3140 domain_indexes = tracker_class_get_domain_indexes (service); in create_decomposed_metadata_tables()
[all …]
/dports/graphics/p5-Geo-GDAL/gdal-3.3.3/frmts/wcs/
H A Dwcsdataset201.cpp703 std::vector<int> domain_indexes = IndexOf(domain, axes); in ExtractGridInfo() local
704 if (Contains(domain_indexes, -1)) { in ExtractGridInfo()
708 if (domain_indexes.size() == 0) { // default is the first two in ExtractGridInfo()
709 domain_indexes.push_back(0); in ExtractGridInfo()
710 domain_indexes.push_back(1); in ExtractGridInfo()
805 && axisOrder[domain_indexes[0]] == 2 in ExtractGridInfo()
806 && axisOrder[domain_indexes[1]] == 1) in ExtractGridInfo()
819 grid_size.push_back(size[1][domain_indexes[0]] - size[0][domain_indexes[0]] + 1); in ExtractGridInfo()
820 grid_size.push_back(size[1][domain_indexes[1]] - size[0][domain_indexes[1]] + 1); in ExtractGridInfo()
/dports/graphics/gdal/gdal-3.3.3/frmts/wcs/
H A Dwcsdataset201.cpp703 std::vector<int> domain_indexes = IndexOf(domain, axes); in ExtractGridInfo() local
704 if (Contains(domain_indexes, -1)) { in ExtractGridInfo()
708 if (domain_indexes.size() == 0) { // default is the first two in ExtractGridInfo()
709 domain_indexes.push_back(0); in ExtractGridInfo()
710 domain_indexes.push_back(1); in ExtractGridInfo()
805 && axisOrder[domain_indexes[0]] == 2 in ExtractGridInfo()
806 && axisOrder[domain_indexes[1]] == 1) in ExtractGridInfo()
819 grid_size.push_back(size[1][domain_indexes[0]] - size[0][domain_indexes[0]] + 1); in ExtractGridInfo()
820 grid_size.push_back(size[1][domain_indexes[1]] - size[0][domain_indexes[1]] + 1); in ExtractGridInfo()
/dports/graphics/py-gdal/gdal-3.3.3/frmts/wcs/
H A Dwcsdataset201.cpp703 std::vector<int> domain_indexes = IndexOf(domain, axes); in ExtractGridInfo() local
704 if (Contains(domain_indexes, -1)) { in ExtractGridInfo()
708 if (domain_indexes.size() == 0) { // default is the first two in ExtractGridInfo()
709 domain_indexes.push_back(0); in ExtractGridInfo()
710 domain_indexes.push_back(1); in ExtractGridInfo()
805 && axisOrder[domain_indexes[0]] == 2 in ExtractGridInfo()
806 && axisOrder[domain_indexes[1]] == 1) in ExtractGridInfo()
819 grid_size.push_back(size[1][domain_indexes[0]] - size[0][domain_indexes[0]] + 1); in ExtractGridInfo()
820 grid_size.push_back(size[1][domain_indexes[1]] - size[0][domain_indexes[1]] + 1); in ExtractGridInfo()