HomeSort by relevance Sort by last modified time
    Searched refs:hintMask (Results 1 - 7 of 7) sorted by null

  /external/freetype/src/cff/
cf2hints.h 53 * A HintMask object stores a bit mask that specifies which hints in the
56 * preceding vertical hints. The HintMask is ordered the same way, with
63 * A HintMask is built 0 or more times while interpreting a charstring, by
64 * the HintMask operator. There is only one HintMask, but it is built or
65 * rebuilt each time there is a hint substitution (HintMask operator) in
66 * the charstring. A default HintMask with all bits set is built if there
67 * has been no HintMask operator prior to the first drawing operator.
113 * substitution (HintMask operator).
171 CF2_HintMask hintMask,
    [all...]
cf2hints.c 750 CF2_HintMask hintMask,
768 cf2_hintmask_init( &tempHintMask, hintMask->error );
777 if ( !cf2_hintmask_isValid( hintMask ) )
780 cf2_hintmask_setAll( hintMask,
783 if ( !cf2_hintmask_isValid( hintMask ) )
792 tempHintMask = *hintMask;
799 if ( bitCount > hintMask->bitCount )
    [all...]
cf2intrp.c 70 cf2_hintmask_init( CF2_HintMask hintmask,
73 FT_ZERO( hintmask );
75 hintmask->error = error;
80 cf2_hintmask_isValid( const CF2_HintMask hintmask )
82 return hintmask->isValid;
87 cf2_hintmask_isNew( const CF2_HintMask hintmask )
89 return hintmask->isNew;
94 cf2_hintmask_setNew( CF2_HintMask hintmask,
97 hintmask->isNew = val;
105 cf2_hintmask_getMaskPtr( CF2_HintMask hintmask )
    [all...]
  /external/pdfium/third_party/freetype/src/cff/
cf2hints.h 53 * A HintMask object stores a bit mask that specifies which hints in the
56 * preceding vertical hints. The HintMask is ordered the same way, with
63 * A HintMask is built 0 or more times while interpreting a charstring, by
64 * the HintMask operator. There is only one HintMask, but it is built or
65 * rebuilt each time there is a hint substitution (HintMask operator) in
66 * the charstring. A default HintMask with all bits set is built if there
67 * has been no HintMask operator prior to the first drawing operator.
113 * substitution (HintMask operator).
171 CF2_HintMask hintMask,
    [all...]
cf2hints.c 749 CF2_HintMask hintMask,
767 cf2_hintmask_init( &tempHintMask, hintMask->error );
776 if ( !cf2_hintmask_isValid( hintMask ) )
779 cf2_hintmask_setAll( hintMask,
782 if ( !cf2_hintmask_isValid( hintMask ) )
791 tempHintMask = *hintMask;
798 if ( bitCount > hintMask->bitCount )
    [all...]
cf2intrp.c 68 cf2_hintmask_init( CF2_HintMask hintmask,
71 FT_ZERO( hintmask );
73 hintmask->error = error;
78 cf2_hintmask_isValid( const CF2_HintMask hintmask )
80 return hintmask->isValid;
85 cf2_hintmask_isNew( const CF2_HintMask hintmask )
87 return hintmask->isNew;
92 cf2_hintmask_setNew( CF2_HintMask hintmask,
95 hintmask->isNew = val;
103 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 159 milliseconds