Github User Fetcher 1.0.0
C Application with Server and GUI
Loading...
Searching...
No Matches
hb-map.h
Go to the documentation of this file.
1/*
2 * Copyright © 2018 Google, Inc.
3 *
4 * This is part of HarfBuzz, a text shaping library.
5 *
6 * Permission is hereby granted, without written agreement and without
7 * license or royalty fees, to use, copy, modify, and distribute this
8 * software and its documentation for any purpose, provided that the
9 * above copyright notice and the following two paragraphs appear in
10 * all copies of this software.
11 *
12 * IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE TO ANY PARTY FOR
13 * DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES
14 * ARISING OUT OF THE USE OF THIS SOFTWARE AND ITS DOCUMENTATION, EVEN
15 * IF THE COPYRIGHT HOLDER HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH
16 * DAMAGE.
17 *
18 * THE COPYRIGHT HOLDER SPECIFICALLY DISCLAIMS ANY WARRANTIES, INCLUDING,
19 * BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
20 * FITNESS FOR A PARTICULAR PURPOSE. THE SOFTWARE PROVIDED HEREUNDER IS
21 * ON AN "AS IS" BASIS, AND THE COPYRIGHT HOLDER HAS NO OBLIGATION TO
22 * PROVIDE MAINTENANCE, SUPPORT, UPDATES, ENHANCEMENTS, OR MODIFICATIONS.
23 *
24 * Google Author(s): Behdad Esfahbod
25 */
26
27#if !defined(HB_H_IN) && !defined(HB_NO_SINGLE_HEADER_ERROR)
28#error "Include <hb.h> instead."
29#endif
30
31#ifndef HB_MAP_H
32#define HB_MAP_H
33
34#include "hb-common.h"
35#include "hb-set.h"
36
38
39
40/**
41 * HB_MAP_VALUE_INVALID:
42 *
43 * Unset #hb_map_t value.
44 *
45 * Since: 1.7.7
46 */
47#define HB_MAP_VALUE_INVALID HB_CODEPOINT_INVALID
48
49/**
50 * hb_map_t:
51 *
52 * Data type for holding integer-to-integer hash maps.
53 *
54 **/
55typedef struct hb_map_t hb_map_t;
56
57
60
63
66
67HB_EXTERN void
69
73 void * data,
74 hb_destroy_func_t destroy,
75 hb_bool_t replace);
76
77HB_EXTERN void *
80
81
82/* Returns false if allocation has failed before */
85
87hb_map_copy (const hb_map_t *map);
88
89HB_EXTERN void
91
94
95HB_EXTERN unsigned int
97
100 const hb_map_t *other);
101
102HB_EXTERN unsigned int
104
105HB_EXTERN void
107 hb_codepoint_t key,
109
112 hb_codepoint_t key);
113
114HB_EXTERN void
116 hb_codepoint_t key);
117
120 hb_codepoint_t key);
121
122HB_EXTERN void
124 const hb_map_t *other);
125
126/* Pass -1 in for idx to get started. */
129 int *idx,
130 hb_codepoint_t *key,
132
133HB_EXTERN void
135 hb_set_t *keys);
136
137HB_EXTERN void
139 hb_set_t *values);
140
142
143#endif /* HB_MAP_H */
void(* hb_destroy_func_t)(void *user_data)
Definition hb-common.h:807
HB_BEGIN_DECLS typedef int hb_bool_t
Definition hb-common.h:94
uint32_t hb_codepoint_t
Definition hb-common.h:103
#define HB_BEGIN_DECLS
Definition hb-common.h:45
#define HB_END_DECLS
Definition hb-common.h:46
#define HB_EXTERN
Definition hb-common.h:37
HB_EXTERN void hb_map_keys(const hb_map_t *map, hb_set_t *keys)
HB_EXTERN void hb_map_update(hb_map_t *map, const hb_map_t *other)
HB_EXTERN hb_bool_t hb_map_is_equal(const hb_map_t *map, const hb_map_t *other)
HB_EXTERN hb_map_t * hb_map_create(void)
HB_EXTERN void hb_map_destroy(hb_map_t *map)
struct hb_map_t hb_map_t
Definition hb-map.h:55
HB_EXTERN hb_bool_t hb_map_next(const hb_map_t *map, int *idx, hb_codepoint_t *key, hb_codepoint_t *value)
HB_EXTERN hb_bool_t hb_map_has(const hb_map_t *map, hb_codepoint_t key)
HB_EXTERN hb_bool_t hb_map_allocation_successful(const hb_map_t *map)
HB_EXTERN hb_map_t * hb_map_copy(const hb_map_t *map)
HB_EXTERN void * hb_map_get_user_data(const hb_map_t *map, hb_user_data_key_t *key)
HB_EXTERN hb_map_t * hb_map_get_empty(void)
HB_EXTERN unsigned int hb_map_get_population(const hb_map_t *map)
HB_EXTERN unsigned int hb_map_hash(const hb_map_t *map)
HB_EXTERN hb_bool_t hb_map_set_user_data(hb_map_t *map, hb_user_data_key_t *key, void *data, hb_destroy_func_t destroy, hb_bool_t replace)
HB_EXTERN hb_bool_t hb_map_is_empty(const hb_map_t *map)
HB_EXTERN void hb_map_set(hb_map_t *map, hb_codepoint_t key, hb_codepoint_t value)
HB_EXTERN hb_codepoint_t hb_map_get(const hb_map_t *map, hb_codepoint_t key)
HB_EXTERN hb_map_t * hb_map_reference(hb_map_t *map)
HB_EXTERN void hb_map_del(hb_map_t *map, hb_codepoint_t key)
HB_EXTERN void hb_map_values(const hb_map_t *map, hb_set_t *values)
HB_EXTERN void hb_map_clear(hb_map_t *map)
struct hb_set_t hb_set_t
Definition hb-set.h:57
int value
Definition lsqlite3.c:2155