OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hintMask
(Results
1 - 4
of
4
) sorted by null
/external/freetype/src/psaux/
pshints.h
52
* A
HintMask
object stores a bit mask that specifies which hints in the
55
* preceding vertical hints. The
HintMask
is ordered the same way, with
62
* A
HintMask
is built 0 or more times while interpreting a charstring, by
63
* the
HintMask
operator. There is only one
HintMask
, but it is built or
64
* rebuilt each time there is a hint substitution (
HintMask
operator) in
65
* the charstring. A default
HintMask
with all bits set is built if there
66
* has been no
HintMask
operator prior to the first drawing operator.
112
* substitution (
HintMask
operator).
170
CF2_HintMask
hintMask
,
[
all
...]
pshints.c
811
CF2_HintMask
hintMask
,
829
cf2_hintmask_init( &tempHintMask,
hintMask
->error );
838
if ( !cf2_hintmask_isValid(
hintMask
) )
841
cf2_hintmask_setAll(
hintMask
,
844
if ( !cf2_hintmask_isValid(
hintMask
) )
849
*
hintMask
->error = FT_Err_Ok;
861
tempHintMask = *
hintMask
;
868
if ( bitCount >
hintMask
->bitCount )
[
all
...]
psintrp.c
66
cf2_hintmask_init( CF2_HintMask
hintmask
,
69
FT_ZERO(
hintmask
);
71
hintmask
->error = error;
76
cf2_hintmask_isValid( const CF2_HintMask
hintmask
)
78
return
hintmask
->isValid;
83
cf2_hintmask_isNew( const CF2_HintMask
hintmask
)
85
return
hintmask
->isNew;
90
cf2_hintmask_setNew( CF2_HintMask
hintmask
,
93
hintmask
->isNew = val;
101
cf2_hintmask_getMaskPtr( CF2_HintMask
hintmask
)
[
all
...]
/external/fonttools/Lib/fontTools/misc/
psCharStrings.py
108
(19, '
hintmask
'),
292
if token in ('
hintmask
', 'cntrmask'):
370
if token in ('
hintmask
', 'cntrmask'):
371
hintMask
, isOperator, index = self.getToken(index)
373
for byte in
hintMask
:
375
hintMask
= strjoin(bits)
376
line = ' '.join(args + [token,
hintMask
])
405
if token in ('
hintmask
', 'cntrmask'):
Completed in 192 milliseconds