HomeSort by relevance Sort by last modified time
    Searched refs:library (Results 26 - 50 of 593) sorted by null

12 3 4 5 6 7 8 91011>>

  /development/tools/emulator/opengl/shared/OpenglOsUtils/
Android.mk 1 # This build script corresponds to a small library containing
4 # - dynamic library loading
9 ### Guest library ##############################################
10 $(call emugl-begin-static-library,libOpenglOsUtils)
  /external/chromium/base/memory/
scoped_native_library.h 18 // This class automatically unloads the loaded library in its destructor.
21 // Initializes with a NULL library.
24 // Takes ownership of the given library handle.
25 explicit ScopedNativeLibrary(NativeLibrary library);
27 // Opens the given library and manages its lifetime.
32 // Returns true if there's a valid library loaded.
37 // Takes ownership of the given library handle. Any existing handle will
39 void Reset(NativeLibrary library);
41 // Returns the native library handle and removes it from this object. The
scoped_native_library_unittest.cc 26 base::ScopedNativeLibrary library(path);
28 library.GetFunctionPointer("DirectDrawCreate"));
  /external/chromium/chrome/browser/chromeos/
update_observer.cc 24 void UpdateObserver::UpdateStatusChanged(UpdateLibrary* library) {
30 if (library->status().status == UPDATE_STATUS_UPDATED_NEED_REBOOT) {
update_observer.h 27 virtual void UpdateStatusChanged(UpdateLibrary* library);
  /external/freetype/include/freetype/
ftlcdfil.h 53 * *not* implemented in default builds of the library. You need to
117 * library ::
118 * A handle to the target library instance.
138 * defined in your build of the library, which should correspond to all
161 FT_Library_SetLcdFilter( FT_Library library,
178 * library ::
179 * A handle to the target library instance.
192 * defined in your build of the library, which should correspond to all
202 FT_Library_SetLcdFilterWeights( FT_Library library,
ftbitmap.h 77 /* library :: A handle to a library object. */
88 FT_Bitmap_Copy( FT_Library library,
104 /* library :: A handle to a library object. */
126 FT_Bitmap_Embolden( FT_Library library,
143 /* library :: A handle to a library object. */
162 /* The `library' argument is taken to have access to FreeType's */
166 FT_Bitmap_Convert( FT_Library library,
    [all...]
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. *
276 FT_Reference_Library( FT_Library library ); variable
334 FT_Done_Library( FT_Library library ); variable
389 FT_Add_Default_Modules( FT_Library library ); variable
472 FT_Get_TrueType_Engine_Type( FT_Library library ); variable
    [all...]
  /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
  /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...]
  /system/core/liblinenoise/
Android.mk 4 # Static library
  /frameworks/av/media/libeffects/data/
audio_effects.conf 1 # List of effect libraries to load. Each library element must contain a "path" element
2 # giving the full path of the library .so file.
23 # Default pre-processing library. Add to audio_effect.conf "libraries" section if
30 # list of effects to load. Each effect element must contain a "library" and a "uuid" element.
31 # The value of the "library" element must correspond to the name of one library element in the
39 # library <lib name>
47 library bundle
51 library bundle
55 library bundl
    [all...]
  /external/llvm/bindings/python/llvm/
object.py 436 def register_library(library):
437 """Register function prototypes with LLVM library instance."""
440 library.LLVMCreateObjectFile.argtypes = [MemoryBuffer]
441 library.LLVMCreateObjectFile.restype = c_object_p
443 library.LLVMDisposeObjectFile.argtypes = [ObjectFile]
445 library.LLVMGetSections.argtypes = [ObjectFile]
446 library.LLVMGetSections.restype = c_object_p
448 library.LLVMDisposeSectionIterator.argtypes = [c_object_p]
450 library.LLVMIsSectionIteratorAtEnd.argtypes = [ObjectFile, c_object_p]
451 library.LLVMIsSectionIteratorAtEnd.restype = boo
    [all...]
  /external/chromium/chrome/browser/chromeos/cros/
cros_library.h 37 // This class handles access to sub-parts of ChromeOS library. it provides
47 // Use the stub implementations of the library. This is mainly for
51 // Reset the stub implementations of the library, called after
59 void SetBrightnessLibrary(BrightnessLibrary* library, bool own);
60 void SetBurnLibrary(BurnLibrary* library, bool own);
61 void SetCryptohomeLibrary(CryptohomeLibrary* library, bool own);
62 void SetInputMethodLibrary(InputMethodLibrary* library, bool own);
63 void SetLibCrosServiceLibrary(LibCrosServiceLibrary* library, bool own);
64 void SetLoginLibrary(LoginLibrary* library, bool own);
65 void SetMountLibrary(MountLibrary* library, bool own)
    [all...]
  /external/freetype/src/base/
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(). */
94 FT_Create_Class_ ## x( FT_Library library, \
97 FT_Destroy_Class_ ## x( FT_Library library, \
117 FT_Destroy_Class_ ## x( library, classes[i] ); \
123 ft_destroy_default_module_classes( FT_Library library )
128 BasePIC* pic_container = (BasePIC*)library->pic_container.base;
134 memory = library->memory;
148 error = FT_Create_Class_ ## x( library, &clazz ); \
155 ft_create_default_module_classes( FT_Library library )
    [all...]
ftbase.h 33 open_face_PS_from_sfnt_stream( FT_Library library,
44 open_face_from_buffer( FT_Library library,
60 ft_raccess_rule_by_darwin_vfs( FT_Library library, FT_UInt rule_index );
  /external/freetype/src/autofit/
afpic.h 58 ( GET_PIC( library )->af_autofitter_service )
62 autofit_module_class_pic_free( FT_Library library );
65 autofit_module_class_pic_init( FT_Library library );
  /external/stlport/stlport/stl/config/
_dec_vms.h 5 # define _STLP_NATIVE_HEADER(header) <sys$library:##header>
6 # define _STLP_NATIVE_C_HEADER(x) <sys$library:##x>
7 # define _STLP_NATIVE_CPP_C_HEADER(header) <sys$library:##header>
8 # define _STLP_NATIVE_CPP_RUNTIME_HEADER(header) <sys$library:##header>
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_dec_vms.h 5 # define _STLP_NATIVE_HEADER(header) <sys$library:##header>
6 # define _STLP_NATIVE_C_HEADER(x) <sys$library:##x>
7 # define _STLP_NATIVE_CPP_C_HEADER(header) <sys$library:##header>
8 # define _STLP_NATIVE_CPP_RUNTIME_HEADER(header) <sys$library:##header>
  /ndk/tests/build/import-install/path1/
Android.mk 1 # This is a trivial shared library that will be imported
3 # another library
  /prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/config/
_dec_vms.h 5 # define _STLP_NATIVE_HEADER(header) <sys$library:##header>
6 # define _STLP_NATIVE_C_HEADER(x) <sys$library:##x>
7 # define _STLP_NATIVE_CPP_C_HEADER(header) <sys$library:##header>
8 # define _STLP_NATIVE_CPP_RUNTIME_HEADER(header) <sys$library:##header>
  /prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/config/
_dec_vms.h 5 # define _STLP_NATIVE_HEADER(header) <sys$library:##header>
6 # define _STLP_NATIVE_C_HEADER(x) <sys$library:##x>
7 # define _STLP_NATIVE_CPP_C_HEADER(header) <sys$library:##header>
8 # define _STLP_NATIVE_CPP_RUNTIME_HEADER(header) <sys$library:##header>
  /prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/config/
_dec_vms.h 5 # define _STLP_NATIVE_HEADER(header) <sys$library:##header>
6 # define _STLP_NATIVE_C_HEADER(x) <sys$library:##x>
7 # define _STLP_NATIVE_CPP_C_HEADER(header) <sys$library:##header>
8 # define _STLP_NATIVE_CPP_RUNTIME_HEADER(header) <sys$library:##header>
  /prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/config/
_dec_vms.h 5 # define _STLP_NATIVE_HEADER(header) <sys$library:##header>
6 # define _STLP_NATIVE_C_HEADER(x) <sys$library:##x>
7 # define _STLP_NATIVE_CPP_C_HEADER(header) <sys$library:##header>
8 # define _STLP_NATIVE_CPP_RUNTIME_HEADER(header) <sys$library:##header>
  /external/freetype/include/freetype/internal/services/
svpostnm.h 62 FT_Init_Class_ ## class_( FT_Library library, \
65 FT_UNUSED( library ); \

Completed in 1498 milliseconds

12 3 4 5 6 7 8 91011>>