Lines Matching +full:no +full:- +full:verbose
11 * specific, written prior permission. The authors make no
16 * INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO
28 #include "hb-fc.h"
56 {"verbose", 0, 0, 'v'},
75 …fprintf (file, "usage: %s [-vqVh] [-f FORMAT] [--verbose] [--format=FORMAT] [--quiet] [--version] … in usage()
78 fprintf (file, "usage: %s [-vqVh] [-f FORMAT] text [pattern] {element ...} \n", in usage()
84 fprintf (file, " -v, --verbose display entire font pattern verbosely\n"); in usage()
85 fprintf (file, " -f, --format=FORMAT use the given output format\n"); in usage()
86 … fprintf (file, " -q, --quiet suppress all normal output, exit 1 if no fonts matched\n"); in usage()
87 fprintf (file, " -V, --version display font config version and exit\n"); in usage()
88 fprintf (file, " -h, --help display this help and exit\n"); in usage()
90 fprintf (file, " -v (verbose) display entire font pattern verbosely\n"); in usage()
91 fprintf (file, " -f FORMAT (format) use the given output format\n"); in usage()
92 … fprintf (file, " -q, (quiet) suppress all normal output, exit 1 if no fonts matched\n"); in usage()
93 fprintf (file, " -V (version) display HarfBuzz version and exit\n"); in usage()
94 fprintf (file, " -h (help) display this help and exit\n"); in usage()
102 int verbose = 0; in main() local
115 while ((c = getopt_long (argc, argv, "vf:qVh", longopts, NULL)) != -1) in main()
117 while ((c = getopt (argc, argv, "vf:qVh")) != -1) in main()
122 verbose = 1; in main()
170 if (!verbose && !format && !os) in main()
185 for (j = 0; j < fs->nfont; j++) in main()
187 hb_font_t *font = hb_fc_font_create (fs->fonts[j]); in main()
194 FcPatternDel (fs->fonts[j], FC_CHARSET); in main()
196 if (verbose) in main()
198 FcPatternPrint (fs->fonts[j]); in main()
204 s = FcPatternFormat (fs->fonts[j], format); in main()
215 nfont = fs->nfont; in main()