Searched defs:face_index (Results 1 - 19 of 19) sorted by relevance

/external/chromium_org/third_party/skia/src/ports/
H A DSkFontConfigInterface_direct.cpp528 int face_index; local
529 if (FcPatternGetInteger(match, FC_INDEX, 0, &face_index) != FcResultMatch) {
537 outIdentity->fTTCIndex = face_index;
684 int face_index;
685 if (FcPatternGetInteger(match, FC_INDEX, 0, &face_index) != FcResultMatch) {
693 outIdentity->fTTCIndex = face_index;
H A DSkFontHost_FreeType.cpp307 int face_index; local
308 SkStream* strm = typeface->openStream(&face_index);
331 FT_Error err = FT_Open_Face(gFTLibrary, &args, face_index, &rec->fFace);
/external/harfbuzz_ng/util/
H A Doptions.hh278 face_index = 0;
294 int face_index; member in struct:font_options_t
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/src/base/
H A Dftmac.c27 support this I use the face_index argument of FT_(Open|New)_Face()
127 FT_Long* face_index )
131 FT_UNUSED( face_index );
177 FT_Long* face_index )
183 *face_index = 0;
197 /* face_index calculation by searching preceding fontIDs */
213 *face_index = ats_font_id - ( id2 + 1 );
224 FT_Long* face_index )
230 err = FT_GetFileRef_From_Mac_ATS_Name( fontName, &ref, face_index );
245 FT_Long* face_index )
693 FT_New_Face_From_LWFN( FT_Library library, const UInt8* pathname, FT_Long face_index, FT_Face* aface ) argument
725 FT_New_Face_From_SFNT( FT_Library library, ResID sfnt_id, FT_Long face_index, FT_Face* aface ) argument
792 FT_New_Face_From_Suitcase( FT_Library library, const UInt8* pathname, FT_Long face_index, FT_Face* aface ) argument
912 FT_New_Face_From_Resource( FT_Library library, const UInt8* pathname, FT_Long face_index, FT_Face* aface ) argument
[all...]
H A Dftobjs.c1137 FT_Long face_index,
1182 (FT_Int)face_index,
1228 FT_Long face_index,
1242 return FT_Open_Face( library, &args, face_index, aface );
1254 FT_Long face_index,
1269 return FT_Open_Face( library, &args, face_index, aface );
1361 FT_Long face_index,
1391 /* At this point, face_index has served its purpose; */
1396 if ( face_index > 0 )
1397 face_index
1135 open_face( FT_Driver driver, FT_Stream stream, FT_Long face_index, FT_Int num_params, FT_Parameter* params, FT_Face *aface ) argument
1428 ft_lookup_PS_in_sfnt_stream( FT_Stream stream, FT_Long face_index, FT_ULong* offset, FT_ULong* length, FT_Bool* is_sfnt_cid ) argument
1563 Mac_Read_POST_Resource( FT_Library library, FT_Stream stream, FT_Long *offsets, FT_Long resource_cnt, FT_Long face_index, FT_Face *aface ) argument
1706 Mac_Read_sfnt_Resource( FT_Library library, FT_Stream stream, FT_Long *offsets, FT_Long resource_cnt, FT_Long face_index, FT_Face *aface ) argument
1774 IsMacResource( FT_Library library, FT_Stream stream, FT_Long resource_offset, FT_Long face_index, FT_Face *aface ) argument
1831 IsMacBinary( FT_Library library, FT_Stream stream, FT_Long face_index, FT_Face *aface ) argument
1881 load_face_in_embedded_rfork( FT_Library library, FT_Stream stream, FT_Long face_index, FT_Face *aface, const FT_Open_Args *args ) argument
1978 load_mac_face( FT_Library library, FT_Stream stream, FT_Long face_index, FT_Face *aface, const FT_Open_Args *args ) argument
[all...]
/external/skia/src/ports/
H A DSkFontConfigInterface_direct.cpp528 int face_index; local
529 if (FcPatternGetInteger(match, FC_INDEX, 0, &face_index) != FcResultMatch) {
537 outIdentity->fTTCIndex = face_index;
684 int face_index;
685 if (FcPatternGetInteger(match, FC_INDEX, 0, &face_index) != FcResultMatch) {
693 outIdentity->fTTCIndex = face_index;
H A DSkFontHost_FreeType.cpp307 int face_index; local
308 SkStream* strm = typeface->openStream(&face_index);
331 FT_Error err = FT_Open_Face(gFTLibrary, &args, face_index, &rec->fFace);
/external/chromium_org/gpu/command_buffer/service/
H A Dtexture_manager.cc528 size_t face_index = GLTargetToFaceIndex(target); local
529 if (level >= 0 && face_index < level_infos_.size() &&
530 static_cast<size_t>(level) < level_infos_[face_index].size()) {
549 size_t face_index = GLTargetToFaceIndex(target); local
550 if (level >= 0 && face_index < level_infos_.size() &&
551 static_cast<size_t>(level) < level_infos_[face_index].size()) {
566 size_t face_index = GLTargetToFaceIndex(target); local
567 if (level >= 0 && face_index < level_infos_.size() &&
568 static_cast<size_t>(level) < level_infos_[face_index].size()) {
779 size_t face_index local
801 size_t face_index = GLTargetToFaceIndex(target); local
854 size_t face_index = GLTargetToFaceIndex(target); local
[all...]
/external/chromium_org/third_party/freetype/include/freetype/
H A Dfreetype.h788 /* face_index :: The index of the face in the font file. It */
922 FT_Long face_index; member in struct:FT_FaceRec_
1864 /* face_index :: The index of the face within the font. The first */
1868 /* aface :: A handle to a new face object. If `face_index' is */
1878 FT_Long face_index,
1899 /* face_index :: The index of the face within the font. The first */
1903 /* aface :: A handle to a new face object. If `face_index' is */
1917 FT_Long face_index,
1937 /* face_index :: The index of the face within the font. The first */
1941 /* aface :: A handle to a new face object. If `face_index' i
[all...]
/external/chromium_org/third_party/freetype/src/base/
H A Dftobjs.c1137 FT_Long face_index,
1182 (FT_Int)face_index,
1228 FT_Long face_index,
1242 return FT_Open_Face( library, &args, face_index, aface );
1254 FT_Long face_index,
1269 return FT_Open_Face( library, &args, face_index, aface );
1361 FT_Long face_index,
1391 /* At this point, face_index has served its purpose; */
1396 if ( face_index > 0 )
1397 face_index
1135 open_face( FT_Driver driver, FT_Stream stream, FT_Long face_index, FT_Int num_params, FT_Parameter* params, FT_Face *aface ) argument
1428 ft_lookup_PS_in_sfnt_stream( FT_Stream stream, FT_Long face_index, FT_ULong* offset, FT_ULong* length, FT_Bool* is_sfnt_cid ) argument
1563 Mac_Read_POST_Resource( FT_Library library, FT_Stream stream, FT_Long *offsets, FT_Long resource_cnt, FT_Long face_index, FT_Face *aface ) argument
1706 Mac_Read_sfnt_Resource( FT_Library library, FT_Stream stream, FT_Long *offsets, FT_Long resource_cnt, FT_Long face_index, FT_Face *aface ) argument
1774 IsMacResource( FT_Library library, FT_Stream stream, FT_Long resource_offset, FT_Long face_index, FT_Face *aface ) argument
1831 IsMacBinary( FT_Library library, FT_Stream stream, FT_Long face_index, FT_Face *aface ) argument
1881 load_face_in_embedded_rfork( FT_Library library, FT_Stream stream, FT_Long face_index, FT_Face *aface, const FT_Open_Args *args ) argument
1978 load_mac_face( FT_Library library, FT_Stream stream, FT_Long face_index, FT_Face *aface, const FT_Open_Args *args ) argument
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r600/
H A Devergreen_state.c2973 int pos_index = -1, face_index = -1; local
2988 face_index = i;
3071 if (face_index != -1) {
3073 S_0286D0_FRONT_FACE_ADDR(rshader->input[face_index].gpr);
H A Dr600_state.c2467 int pos_index = -1, face_index = -1; local
2478 face_index = i;
2548 if (face_index != -1) {
2550 S_0286D0_FRONT_FACE_ADDR(rshader->input[face_index].gpr);
/external/freetype/include/
H A Dfreetype.h827 /* face_index :: The index of the face in the font file. It */
961 FT_Long face_index; member in struct:FT_FaceRec_
1924 /* face_index :: The index of the face within the font. The first */
1928 /* aface :: A handle to a new face object. If `face_index' is */
1942 FT_Long face_index,
1963 /* face_index :: The index of the face within the font. The first */
1967 /* aface :: A handle to a new face object. If `face_index' is */
1981 FT_Long face_index,
2001 /* face_index :: The index of the face within the font. The first */
2005 /* aface :: A handle to a new face object. If `face_index' i
[all...]
/external/freetype/src/base/
H A Dftobjs.c1143 FT_Long face_index,
1193 (FT_Int)face_index,
1240 FT_Long face_index,
1254 return FT_Open_Face( library, &args, face_index, aface );
1266 FT_Long face_index,
1281 return FT_Open_Face( library, &args, face_index, aface );
1373 FT_Long face_index,
1403 /* At this point, face_index has served its purpose; */
1408 if ( face_index > 0 )
1409 face_index
1140 open_face( FT_Driver driver, FT_Stream *astream, FT_Bool external_stream, FT_Long face_index, FT_Int num_params, FT_Parameter* params, FT_Face *aface ) argument
1440 ft_lookup_PS_in_sfnt_stream( FT_Stream stream, FT_Long face_index, FT_ULong* offset, FT_ULong* length, FT_Bool* is_sfnt_cid ) argument
1575 Mac_Read_POST_Resource( FT_Library library, FT_Stream stream, FT_Long *offsets, FT_Long resource_cnt, FT_Long face_index, FT_Face *aface ) argument
1718 Mac_Read_sfnt_Resource( FT_Library library, FT_Stream stream, FT_Long *offsets, FT_Long resource_cnt, FT_Long face_index, FT_Face *aface ) argument
1786 IsMacResource( FT_Library library, FT_Stream stream, FT_Long resource_offset, FT_Long face_index, FT_Face *aface ) argument
1846 IsMacBinary( FT_Library library, FT_Stream stream, FT_Long face_index, FT_Face *aface ) argument
1896 load_face_in_embedded_rfork( FT_Library library, FT_Stream stream, FT_Long face_index, FT_Face *aface, const FT_Open_Args *args ) argument
1993 load_mac_face( FT_Library library, FT_Stream stream, FT_Long face_index, FT_Face *aface, const FT_Open_Args *args ) argument
[all...]
/external/mesa3d/src/gallium/drivers/r600/
H A Devergreen_state.c2973 int pos_index = -1, face_index = -1; local
2988 face_index = i;
3071 if (face_index != -1) {
3073 S_0286D0_FRONT_FACE_ADDR(rshader->input[face_index].gpr);
H A Dr600_state.c2467 int pos_index = -1, face_index = -1; local
2478 face_index = i;
2548 if (face_index != -1) {
2550 S_0286D0_FRONT_FACE_ADDR(rshader->input[face_index].gpr);
/external/pdfium/core/include/thirdparties/freetype/freetype/
H A Dfreetype.h790 /* face_index :: The index of the face in the font file. It */
924 FT_Long face_index; member in struct:FT_FaceRec_
1873 /* face_index :: The index of the face within the font. The first */
1877 /* aface :: A handle to a new face object. If `face_index' is */
1891 FT_Long face_index,
1912 /* face_index :: The index of the face within the font. The first */
1916 /* aface :: A handle to a new face object. If `face_index' is */
1930 FT_Long face_index,
1950 /* face_index :: The index of the face within the font. The first */
1954 /* aface :: A handle to a new face object. If `face_index' i
[all...]
/external/pdfium/core/src/fxge/fx_freetype/fxft2.5.01/include/freetype/
H A Dfreetype.h790 /* face_index :: The index of the face in the font file. It */
924 FT_Long face_index; member in struct:FT_FaceRec_
1873 /* face_index :: The index of the face within the font. The first */
1877 /* aface :: A handle to a new face object. If `face_index' is */
1891 FT_Long face_index,
1912 /* face_index :: The index of the face within the font. The first */
1916 /* aface :: A handle to a new face object. If `face_index' is */
1930 FT_Long face_index,
1950 /* face_index :: The index of the face within the font. The first */
1954 /* aface :: A handle to a new face object. If `face_index' i
[all...]
/external/pdfium/core/src/fxge/ge/
H A Dfx_ge_fontmap.cpp137 int weight, FX_BOOL bItalic, FX_LPBYTE pData, FX_DWORD size, int face_index)
154 int ret = FXFT_New_Memory_Face(library, pData, size, face_index, &pFontDesc->m_SingleFace.m_pFace);
300 int face_index = 0; local
311 face_index = 0;
313 face_index = index;
315 return face_index;
329 int face_index = GetTTCIndex(pFontDesc->m_pFontData, ttc_size, font_offset); local
330 if (pFontDesc->m_TTCFace.m_pFaces[face_index] == NULL) {
331 pFontDesc->m_TTCFace.m_pFaces[face_index] = GetFixedFace(pFontDesc->m_pFontData, ttc_size, face_index);
136 AddCachedFace(const CFX_ByteString& face_name, int weight, FX_BOOL bItalic, FX_LPBYTE pData, FX_DWORD size, int face_index) argument
352 int face_index = GetTTCIndex(pFontDesc->m_pFontData, ttc_size, font_offset); local
356 GetFixedFace(FX_LPCBYTE pData, FX_DWORD size, int face_index) argument
374 GetFileFace(FX_LPCSTR filename, int face_index) argument
[all...]

Completed in 1929 milliseconds