QtBase  v6.3.1
test-ot-name.cc
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 #include "hb.hh"
28 #include "hb-ot.h"
29 
30 #ifdef HB_NO_OPEN
31 #define hb_blob_create_from_file_or_fail(x) hb_blob_get_empty ()
32 #endif
33 
34 int
35 main (int argc, char **argv)
36 {
37  if (argc != 2) {
38  fprintf (stderr, "usage: %s font-file\n", argv[0]);
39  exit (1);
40  }
41 
43  assert (blob);
44  hb_face_t *face = hb_face_create (blob, 0 /* first face */);
45  hb_blob_destroy (blob);
46  blob = nullptr;
47 
48  unsigned int count = 0;
49 
50 #ifndef HB_NO_NAME
52 
53  for (unsigned int i = 0; i < count; i++)
54  {
55  printf ("%u %s ",
56  entries[i].name_id,
57  hb_language_to_string (entries[i].language));
58 
59  char buf[64];
60  unsigned int buf_size = sizeof (buf);
62  entries[i].name_id,
63  entries[i].language,
64  &buf_size,
65  buf);
66 
67  printf ("%s\n", buf);
68  }
69 #endif
70 
72 
73  return count ? 0 : 1;
74 }
small capitals from c petite p scientific i
[1]
Definition: afcover.h:80
hb_blob_t * hb_blob_create_from_file_or_fail(const char *file_name)
Definition: hb-blob.cc:628
void hb_blob_destroy(hb_blob_t *blob)
Definition: hb-blob.cc:262
const char * hb_language_to_string(hb_language_t language)
Definition: hb-common.cc:405
void hb_face_destroy(hb_face_t *face)
Definition: hb-face.cc:287
hb_face_t * hb_face_create(hb_blob_t *blob, unsigned int index)
Definition: hb-face.cc:217
const hb_ot_name_entry_t * hb_ot_name_list_names(hb_face_t *face, unsigned int *num_entries)
Definition: hb-ot-name.cc:59
unsigned int hb_ot_name_get_utf8(hb_face_t *face, hb_ot_name_id_t name_id, hb_language_t language, unsigned int *text_size, char *text)
Definition: hb-ot-name.cc:166
#define assert
Definition: qcborcommon_p.h:63
GLenum GLenum GLsizei count
GLenum face
GLenum GLuint GLenum GLsizei const GLchar * buf
Definition: hb-ot-name.h:121
int main(int argc, char **argv)
[1]
Definition: test-ot-name.cc:35