OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:charcode
(Results
1 - 14
of
14
) sorted by null
/external/freetype/src/cff/
cffload.h
30
cff_get_standard_encoding( FT_UInt
charcode
);
variable
cffload.c
184
cff_get_standard_encoding( FT_UInt
charcode
)
186
return (FT_UShort)(
charcode
< 256 ? cff_standard_encoding[
charcode
]
[
all
...]
cffgload.c
612
FT_Int
charcode
)
623
if (
charcode
< 0 ||
charcode
> 255 )
627
glyph_sid = cff_get_standard_encoding( (FT_UInt)
charcode
);
[
all
...]
/external/freetype/src/sfnt/
ttcmap.c
133
FT_UInt32
charcode
= *pchar_code;
local
139
while ( ++
charcode
< 256 )
141
gindex = table[
charcode
];
144
result =
charcode
;
202
/***** assume that the value "
charcode
" correspond to following: *****/
204
/***** - For one byte characters, "
charcode
" is simply the *****/
207
/***** - For two byte characters, "
charcode
" is the 2-byte *****/
210
/***** (
charcode
>> 8) is the first byte value *****/
211
/***** (
charcode
& 0xFF) is the second byte value *****/
213
/***** Note that not all values of "
charcode
" are valid according *****
470
FT_UInt32
charcode
= *p
charcode
+ 1;
local
734
FT_UInt
charcode
;
local
1002
FT_UInt32
charcode
= *p
charcode
;
local
1091
FT_UInt
charcode
= (FT_UInt)*p
charcode
;
local
[
all
...]
/external/freetype/src/autofit/
afglobal.c
120
FT_ULong
charcode
= range->first;
local
124
gindex = FT_Get_Char_Index( face,
charcode
);
133
charcode
= FT_Get_Next_Char( face,
charcode
, &gindex );
135
if ( gindex == 0 ||
charcode
> range->last )
afcjk.h
131
FT_ULong
charcode
);
aflatin.h
137
FT_ULong
charcode
);
afcjk.c
71
FT_ULong
charcode
)
90
glyph_index = FT_Get_Char_Index( face,
charcode
);
[
all
...]
aflatin.c
52
/* standard width and height for the glyph with given
charcode
. */
57
FT_ULong
charcode
)
76
glyph_index = FT_Get_Char_Index( face,
charcode
);
[
all
...]
aflatin2.c
60
FT_ULong
charcode
)
79
glyph_index = FT_Get_Char_Index( face,
charcode
);
[
all
...]
/external/freetype/include/freetype/internal/
ftdriver.h
88
FT_Long
charcode
);
92
FT_Long
charcode
);
/external/freetype/include/freetype/
freetype.h
[
all
...]
/external/freetype/src/base/
ftobjs.c
[
all
...]
/external/freetype/src/psaux/
t1decode.c
117
/* Looks up a given glyph by its StandardEncoding
charcode
. Used to */
123
/*
charcode
:: The character code to look for. */
131
FT_Int
charcode
)
139
if (
charcode
< 0 ||
charcode
> 255 )
143
psnames->adobe_std_encoding[
charcode
]);
177
/* bchar :: The base character's StandardEncoding
charcode
. */
179
/* achar :: The accent character's StandardEncoding
charcode
. */
[
all
...]
Completed in 1115 milliseconds