/development/samples/TicTacToeLib/ |
default.properties | 26 android.library=true
|
/external/freetype/src/base/ |
ftpic.c | 29 ft_pic_container_init( FT_Library library ) 31 FT_PIC_Container* pic_container = &library->pic_container; 36 error = ft_base_pic_init( library ); 46 ft_pic_container_destroy( FT_Library library ) 48 ft_base_pic_free( library );
|
basepic.c | 35 ft_base_pic_free( FT_Library library ) 37 FT_PIC_Container* pic_container = &library->pic_container; 38 FT_Memory memory = library->memory; 42 ft_destroy_default_module_classes( library ); 51 ft_base_pic_init( FT_Library library ) 53 FT_PIC_Container* pic_container = &library->pic_container; 56 FT_Memory memory = library->memory; 65 error = ft_create_default_module_classes( library ); 75 ft_base_pic_free(library);
|
basepic.h | 44 #define FT_OUTLINE_GLYPH_CLASS_GET (&GET_PIC(library)->ft_outline_glyph_class) 45 #define FT_BITMAP_GLYPH_CLASS_GET (&GET_PIC(library)->ft_bitmap_glyph_class) 46 #define FT_DEFAULT_MODULES_GET (GET_PIC(library)->default_module_classes) 49 ft_base_pic_free( FT_Library library ); 52 ft_base_pic_init( FT_Library library );
|
ftinit.c | 25 /* fresh new library object. The set is taken from the header file */ 31 /* builds a library out of it, then calls FT_Default_Drivers(). */ 91 FT_EXTERNC FT_Error FT_Create_Class_##x( FT_Library library, FT_Module_Class** output_class ); \ 92 FT_EXTERNC void FT_Destroy_Class_##x( FT_Library library, FT_Module_Class* clazz ); 109 if ( classes[i] ) { FT_Destroy_Class_##x(library, classes[i]); } \ 113 ft_destroy_default_module_classes( FT_Library library ) 118 BasePIC* pic_container = (BasePIC*)library->pic_container.base; 123 memory = library->memory; 136 error = FT_Create_Class_##x(library, &clazz); \ 141 ft_create_default_module_classes( FT_Library library ) [all...] |
/development/samples/TicTacToeMain/ |
default.properties | 26 android.library.reference.1=../TicTacToeLib/
|
/external/freetype/src/smooth/ |
ftspic.c | 30 ft_smooth_renderer_class_pic_free( FT_Library library ) 32 FT_PIC_Container* pic_container = &library->pic_container; 33 FT_Memory memory = library->memory; 46 ft_smooth_renderer_class_pic_init( FT_Library library ) 48 FT_PIC_Container* pic_container = &library->pic_container; 51 FT_Memory memory = library->memory; 72 ft_smooth_renderer_class_pic_free(library); 77 FT_Error ft_smooth_lcd_renderer_class_pic_init(FT_Library library) 79 return ft_smooth_renderer_class_pic_init(library); 81 void ft_smooth_lcd_renderer_class_pic_free(FT_Library library) [all...] |
/external/freetype/src/cff/ |
cffpic.c | 44 cff_driver_class_pic_free( FT_Library library ) 46 FT_PIC_Container* pic_container = &library->pic_container; 47 FT_Memory memory = library->memory; 52 FT_Destroy_Class_cff_services(library, container->cff_services); 55 FT_Destroy_Class_cff_field_handlers(library, container->cff_field_handlers); 63 cff_driver_class_pic_init( FT_Library library ) 65 FT_PIC_Container* pic_container = &library->pic_container; 68 FT_Memory memory = library->memory; 77 error = FT_Create_Class_cff_services(library, &container->cff_services); 80 error = FT_Create_Class_cff_field_handlers(library, &container->cff_field_handlers) [all...] |
cffpic.h | 61 #define FT_CFF_SERVICE_PS_INFO_GET (GET_PIC(library)->cff_service_ps_info) 62 #define FT_CFF_SERVICE_GLYPH_DICT_GET (GET_PIC(library)->cff_service_glyph_dict) 63 #define FT_CFF_SERVICE_PS_NAME_GET (GET_PIC(library)->cff_service_ps_name) 64 #define FT_CFF_SERVICE_GET_CMAP_INFO_GET (GET_PIC(library)->cff_service_get_cmap_info) 65 #define FT_CFF_SERVICE_CID_INFO_GET (GET_PIC(library)->cff_service_cid_info) 66 #define FT_CFF_SERVICES_GET (GET_PIC(library)->cff_services) 67 #define FT_CFF_CMAP_ENCODING_CLASS_REC_GET (GET_PIC(library)->cff_cmap_encoding_class_rec) 68 #define FT_CFF_CMAP_UNICODE_CLASS_REC_GET (GET_PIC(library)->cff_cmap_unicode_class_rec) 69 #define FT_CFF_FIELD_HANDLERS_GET (GET_PIC(library)->cff_field_handlers)
|
/external/freetype/src/pshinter/ |
pshpic.c | 30 pshinter_module_class_pic_free( FT_Library library ) 32 FT_PIC_Container* pic_container = &library->pic_container; 33 FT_Memory memory = library->memory; 42 pshinter_module_class_pic_init( FT_Library library ) 44 FT_PIC_Container* pic_container = &library->pic_container; 47 FT_Memory memory = library->memory; 56 FT_Init_Class_pshinter_interface(library, &container->pshinter_interface); 60 pshinter_module_class_pic_free(library);
|
/external/freetype/src/sfnt/ |
sfntpic.c | 41 sfnt_module_class_pic_free( FT_Library library ) 43 FT_PIC_Container* pic_container = &library->pic_container; 44 FT_Memory memory = library->memory; 49 FT_Destroy_Class_sfnt_services(library, container->sfnt_services); 52 FT_Destroy_Class_tt_cmap_classes(library, container->tt_cmap_classes); 61 sfnt_module_class_pic_init( FT_Library library ) 63 FT_PIC_Container* pic_container = &library->pic_container; 66 FT_Memory memory = library->memory; 75 error = FT_Create_Class_sfnt_services(library, &container->sfnt_services); 78 error = FT_Create_Class_tt_cmap_classes(library, &container->tt_cmap_classes) [all...] |
sfntpic.h | 69 #define FT_SFNT_SERVICES_GET (GET_PIC(library)->sfnt_services) 70 #define FT_SFNT_SERVICE_GLYPH_DICT_GET (GET_PIC(library)->sfnt_service_glyph_dict) 71 #define FT_SFNT_SERVICE_PS_NAME_GET (GET_PIC(library)->sfnt_service_ps_name) 72 #define FT_TT_SERVICE_GET_CMAP_INFO_GET (GET_PIC(library)->tt_service_get_cmap_info) 73 #define FT_SFNT_SERVICES_GET (GET_PIC(library)->sfnt_services) 74 #define FT_TT_CMAP_CLASSES_GET (GET_PIC(library)->tt_cmap_classes) 75 #define FT_SFNT_SERVICE_SFNT_TABLE_GET (GET_PIC(library)->sfnt_service_sfnt_table) 76 #define FT_SFNT_SERVICE_BDF_GET (GET_PIC(library)->sfnt_service_bdf) 77 #define FT_SFNT_INTERFACE_GET (GET_PIC(library)->sfnt_interface)
|
/external/freetype/src/raster/ |
rastpic.c | 30 ft_raster1_renderer_class_pic_free( FT_Library library ) 32 FT_PIC_Container* pic_container = &library->pic_container; 33 FT_Memory memory = library->memory; 46 ft_raster1_renderer_class_pic_init( FT_Library library ) 48 FT_PIC_Container* pic_container = &library->pic_container; 51 FT_Memory memory = library->memory; 72 ft_raster1_renderer_class_pic_free(library); 77 FT_Error ft_raster5_renderer_class_pic_init(FT_Library library) 79 return ft_raster1_renderer_class_pic_init(library); 81 void ft_raster5_renderer_class_pic_free(FT_Library library) [all...] |
/external/freetype/src/psnames/ |
pspic.c | 32 psnames_module_class_pic_free( FT_Library library ) 34 FT_PIC_Container* pic_container = &library->pic_container; 35 FT_Memory memory = library->memory; 40 FT_Destroy_Class_pscmaps_services(library, container->pscmaps_services); 48 psnames_module_class_pic_init( FT_Library library ) 50 FT_PIC_Container* pic_container = &library->pic_container; 53 FT_Memory memory = library->memory; 62 error = FT_Create_Class_pscmaps_services(library, &container->pscmaps_services); 65 FT_Init_Class_pscmaps_interface(library, &container->pscmaps_interface); 69 psnames_module_class_pic_free(library); [all...] |
pspic.h | 42 #define FT_PSCMAPS_SERVICES_GET (GET_PIC(library)->pscmaps_services) 43 #define FT_PSCMAPS_INTERFACE_GET (GET_PIC(library)->pscmaps_interface)
|
/external/freetype/src/truetype/ |
ttpic.h | 46 #define FT_TT_SERVICES_GET (GET_PIC(library)->tt_services) 47 #define FT_TT_SERVICE_GX_MULTI_MASTERS_GET (GET_PIC(library)->tt_service_gx_multi_masters) 48 #define FT_TT_SERVICE_TRUETYPE_GLYF_GET (GET_PIC(library)->tt_service_truetype_glyf)
|
ttpic.c | 33 tt_driver_class_pic_free( FT_Library library ) 35 FT_PIC_Container* pic_container = &library->pic_container; 36 FT_Memory memory = library->memory; 41 FT_Destroy_Class_tt_services(library, container->tt_services); 49 tt_driver_class_pic_init( FT_Library library ) 51 FT_PIC_Container* pic_container = &library->pic_container; 54 FT_Memory memory = library->memory; 63 error = FT_Create_Class_tt_services(library, &container->tt_services); 72 tt_driver_class_pic_free(library);
|
/dalvik/dx/tests/089-dex-define-object/ |
run | 18 dx --debug --dex --core-library --output=blort.dex */*/*.class
|
/external/freetype/include/freetype/internal/ |
ftpic.h | 51 ft_pic_container_init( FT_Library library ); variable 56 ft_pic_container_destroy( FT_Library library ); variable
|
ftrfork.h | 65 /* library :: */ 66 /* A FreeType library instance. */ 92 FT_Raccess_Guess( FT_Library library, 112 /* library :: */ 113 /* A FreeType library instance. */ 132 FT_Raccess_Get_HeaderInfo( FT_Library library, 150 /* library :: */ 151 /* A FreeType library instance. */ 182 FT_Raccess_Get_DataOffsets( FT_Library library,
|
/external/freetype/src/autofit/ |
afpic.c | 37 autofit_module_class_pic_free( FT_Library library ) 39 FT_PIC_Container* pic_container = &library->pic_container; 40 FT_Memory memory = library->memory; 49 autofit_module_class_pic_init( FT_Library library ) 51 FT_PIC_Container* pic_container = &library->pic_container; 55 FT_Memory memory = library->memory; 80 FT_Init_Class_af_autofitter_service(library, &container->af_autofitter_service); 84 autofit_module_class_pic_free(library);
|
/sdk/ddms/libs/ddmlib/src/com/android/ddmlib/ |
NativeLibraryMapInfo.java | 20 * Memory address to library mapping for native libraries. 22 * Each instance represents a single native library and its start and end memory addresses. 31 * Constructs a new native library map info. 32 * @param startAddr The start address of the library. 33 * @param endAddr The end address of the library. 34 * @param library The name of the library. 36 NativeLibraryMapInfo(long startAddr, long endAddr, String library) { 39 this.mLibrary = library; 43 * Returns the name of the library [all...] |
/external/webkit/WebCore/platform/graphics/gtk/ |
FontCustomPlatformData.cpp | 4 * This library is free software; you can redistribute it and/or 5 * modify it under the terms of the GNU Library General Public 9 * This library is distributed in the hope that it will be useful, 12 * Library General Public License for more details. 14 * You should have received a copy of the GNU Library General Public License 15 * along with this library; see the file COPYING.LIB. If not, write to 50 static FT_Library library = 0; local 51 if (!library) { 52 error = FT_Init_FreeType(&library); 54 library = 0 [all...] |
/external/freetype/include/freetype/ |
ftmodapi.h | 182 /* Add a new module to a given library instance. */ 185 /* library :: A handle to the library object. */ 198 FT_Add_Module( FT_Library library, 211 /* library :: A handle to the library object. */ 223 FT_Get_Module( FT_Library library, 233 /* Remove a given module from a library instance. */ 236 /* library :: A handle to a library object. * 296 FT_Done_Library( FT_Library library ); variable 351 FT_Add_Default_Modules( FT_Library library ); variable 434 FT_Get_TrueType_Engine_Type( FT_Library library ); variable [all...] |
/external/webkit/WebCore/platform/win/ |
SoftLinking.h | 36 static HMODULE lib##Library() \ 38 static HMODULE library = LoadLibraryW(L###lib suffix); \ 39 ASSERT(library); \ 40 return library; \ 46 #define SOFT_LINK(library, functionName, resultType, callingConvention, parameterDeclarations, parameterNames) \ 52 softLink##functionName = reinterpret_cast<resultType (callingConvention*) parameterDeclarations>(GetProcAddress(library##Library(), #functionName)); \ 62 #define SOFT_LINK_OPTIONAL(library, functionName, resultType, callingConvention, parameterDeclarations) \ 73 ptr = reinterpret_cast<functionName##PtrType>(GetProcAddress(library##Library(), #functionName)); [all...] |