OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:glyph_ids
(Results
1 - 9
of
9
) sorted by null
/external/sfntly/cpp/src/sample/chromium/
font_subsetter.cc
24
const unsigned int*
glyph_ids
,
29
glyph_ids
== NULL || glyph_count == 0) {
38
return subsetter.SubsetFont(
glyph_ids
, glyph_count, output_buffer);
44
const unsigned int*
glyph_ids
,
49
glyph_ids
== NULL || glyph_count == 0) {
58
return subsetter.SubsetFont(
glyph_ids
, glyph_count, output_buffer);
font_subsetter.h
39
// |
glyph_ids
| Glyph IDs to subset. If the specified glyph ID is not
41
// |glyph_count| Number of glyph IDs in |
glyph_ids
|
46
const unsigned int*
glyph_ids
,
63
// |
glyph_ids
| Glyph IDs to subset. If the specified glyph ID is not
65
// |glyph_count| Number of glyph IDs in |
glyph_ids
|
70
const unsigned int*
glyph_ids
,
subsetter_impl.h
63
int SubsetFont(const unsigned int*
glyph_ids
,
68
CALLER_ATTACH Font* Subset(const IntegerSet&
glyph_ids
,
chrome_subsetter.cc
82
bool StringToGlyphId(const char* input, std::vector<unsigned int>*
glyph_ids
) {
88
glyph_ids
->push_back(
93
glyph_ids
->push_back(HexTo<unsigned int>(hex_csv.substr(start).c_str()));
94
return
glyph_ids
->size() > 0;
113
std::vector<unsigned int>
glyph_ids
;
local
114
if (!StringToGlyphId(argv[4], &
glyph_ids
)) {
124
&(
glyph_ids
[0]),
125
glyph_ids
.size(),
subsetter_impl.cc
201
const unsigned int*
glyph_ids
,
205
glyph_ids
== NULL || glyph_count == 0 || glyph_id_processed == NULL) {
213
glyph_id_remaining.insert(
glyph_ids
[i]);
266
const IntegerSet&
glyph_ids
) {
288
for (IntegerSet::const_iterator i =
glyph_ids
.begin(), e =
glyph_ids
.end();
322
const IntegerSet&
glyph_ids
) {
324
return
glyph_ids
.find(range_begin) !=
glyph_ids
.end();
326
IntegerSet::const_iterator left =
glyph_ids
.lower_bound(range_begin)
[
all
...]
/external/harfbuzz_ng/src/
hb-subset-glyf.cc
34
hb_vector_t<hb_codepoint_t> &
glyph_ids
,
42
for (unsigned int i = 0; i <
glyph_ids
.len; i++)
44
hb_codepoint_t next_glyph =
glyph_ids
[i];
82
*loca_size = (
glyph_ids
.len + 1)
166
hb_vector_t<hb_codepoint_t> &
glyph_ids
= plan->glyphs;
local
170
for (unsigned int i = 0; i <
glyph_ids
.len; i++)
173
if (unlikely (!(glyf.get_offsets (
glyph_ids
[i], &start_offset, &end_offset) &&
218
success = success && _write_loca_entry (
glyph_ids
.len,
/external/harfbuzz_ng/test/shaping/
record-test.sh
50
glyph_ids
=`echo "$text" | $hb_shape $options --no-glyph-names --no-clusters --no-positions "$fontfile" | sed 's/[][]//g; s/|/,/g'`
58
--gids="$
glyph_ids
" \
65
--gids="$
glyph_ids
" \
/external/sfntly/cpp/src/sample/subtly/
font_info.h
85
// Takes ownership of the
glyph_ids
GlyphIdSet.
86
void set_resolved_glyph_ids(GlyphIdSet*
glyph_ids
);
/external/freetype/src/sfnt/
ttcmap.c
89
*
glyph_ids
6 BYTE[256] array of glyph indices
252
*
glyph_ids
518+NSUB*8 USHORT[] glyph ID array
281
* `
glyph_ids
' table. Let's call it `slice' (it is a USHORT[], too).
304
FT_Byte*
glyph_ids
; /* glyph ID array */
local
339
glyph_ids
= subs + ( max_subs + 1 ) * 8;
340
if (
glyph_ids
> valid->limit )
373
if ( ids <
glyph_ids
|| ids + code_count * 2 > table + length )
899
FT_Byte *ends, *starts, *offsets, *deltas, *
glyph_ids
;
local
967
glyph_ids
= offsets + num_segs * 2;
1025
if ( p <
glyph_ids
||
[
all
...]
Completed in 6559 milliseconds