HomeSort by relevance Sort by last modified time
    Searched refs:library (Results 151 - 175 of 2552) sorted by null

1 2 3 4 5 67 8 91011>>

  /build/make/core/
host_shared_library_internal.mk 2 ## Standard rules for building a normal shared library.
20 $(error $(LOCAL_PATH): Cannot set module stem for a library)
23 ifdef host-shared-library-hook
24 $(call host-shared-library-hook)
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
Android.mk 4 $(call emugl-begin-shared-library,libGLESv1_CM_emul)
7 $(call emugl-set-shared-library-subpath,egl)
20 $(call emugl-begin-shared-library, libGLESv2_emul)
24 $(call emugl-set-shared-library-subpath,egl)
31 $(call emugl-begin-shared-library,libEGL_emul)
34 $(call emugl-set-shared-library-subpath,egl)
  /device/linaro/bootloader/arm-trusted-firmware/drivers/auth/mbedtls/
mbedtls_crypto.mk 32 $(addprefix ${MBEDTLS_DIR}/library/, \
44 MBEDTLS_ECDSA_CRYPTO_SOURCES += $(addprefix ${MBEDTLS_DIR}/library/, \
50 MBEDTLS_RSA_CRYPTO_SOURCES += $(addprefix ${MBEDTLS_DIR}/library/, \
mbedtls_common.mk 11 # the 'include' and 'library' subdirectories).
24 $(addprefix ${MBEDTLS_DIR}/library/, \
  /external/freetype/src/base/
ftobjs.c 90 ft_open_face_internal( FT_Library library,
178 FT_Stream_New( FT_Library library,
189 if ( !library )
195 memory = library->memory;
295 slot->library = driver->root.library;
767 FT_Library library; local
783 library = driver->root.library;
784 hinter = library->auto_hinter
4309 FT_Library library = FT_FACE_LIBRARY( face ); local
4334 FT_Library library = module->library; local
4382 FT_Library library; local
4653 FT_Library library; local
4698 FT_Library library = module->library; local
4898 FT_Library library = module->library; local
5141 FT_Library library = NULL; local
    [all...]
ftmac.c 701 FT_New_Face_From_LWFN( FT_Library library,
717 error = read_lwfn( library->memory, res, &pfb_data, &pfb_size );
722 return open_face_from_buffer( library,
733 FT_New_Face_From_SFNT( FT_Library library,
742 FT_Memory memory = library->memory;
777 if ( !open_face_PS_from_sfnt_stream( library,
792 error = open_face_from_buffer( library,
805 FT_New_Face_From_Suitcase( FT_Library library,
838 error = FT_New_Face_From_FOND( library, fond, face_index, aface );
853 FT_New_Face_From_FOND( FT_Library library,
    [all...]
  /build/soong/cc/
prebuilt.go 56 // TODO(ccross): verify shared library dependencies
74 module, library := NewLibrary(hod)
75 library.BuildOnlyShared()
79 libraryDecorator: library,
86 return module, library
95 module, library := NewLibrary(hod)
96 library.BuildOnlyStatic()
100 libraryDecorator: library,
107 return module, library
119 // TODO(ccross): verify shared library dependencie
    [all...]
toolchain_library.go 39 module, library := NewLibrary(android.HostAndDeviceSupported)
40 library.BuildOnlyStatic()
42 libraryDecorator: library,
53 func (library *toolchainLibraryDecorator) compile(ctx ModuleContext, flags Flags,
58 func (library *toolchainLibraryDecorator) link(ctx ModuleContext,
kernel_headers.go 36 module, library := NewLibrary(android.HostAndDeviceSupported)
37 library.HeaderOnly()
40 libraryDecorator: library,
  /external/pdfium/core/fxge/
fx_freetype.h 64 #define FXFT_Open_Face(library, args, index, face) \
65 FT_Open_Face(static_cast<FT_Library>(library), args, index, \
68 #define FXFT_Done_FreeType(library) \
69 FT_Done_FreeType(static_cast<FT_Library>(library))
70 #define FXFT_Init_FreeType(library) \
71 FT_Init_FreeType(reinterpret_cast<FT_Library*>(library))
72 #define FXFT_Library_Version(library, amajor, aminor, apatch) \
73 FT_Library_Version(reinterpret_cast<FT_Library>(library), amajor, aminor, \
75 #define FXFT_New_Memory_Face(library, base, size, index, face) \
76 FT_New_Memory_Face(static_cast<FT_Library>(library), base, size, index,
    [all...]
  /external/freetype/include/freetype/internal/
ftserv.h 148 * to the library. This is useful to build simple static service lists.
364 FT_Destroy_Class_ ## class_( FT_Library library, \
367 FT_Memory memory = library->memory; \
375 FT_Create_Class_ ## class_( FT_Library library, \
380 FT_Memory memory = library->memory; \
400 FT_Destroy_Class_ ## class_( FT_Library library, \
403 FT_Memory memory = library->memory; \
411 FT_Create_Class_ ## class_( FT_Library library, \
416 FT_Memory memory = library->memory; \
439 FT_Destroy_Class_ ## class_( FT_Library library, \
    [all...]
ftdrv.h 323 FT_Destroy_Class_ ## class_( FT_Library library, \
326 FT_Memory memory = library->memory; \
330 class_ ## _pic_free( library ); \
337 FT_Create_Class_ ## class_( FT_Library library, \
342 FT_Memory memory = library->memory; \
348 error = class_ ## _pic_init( library ); \
  /external/skia/infra/bots/recipe_modules/core/resources/
run_binary_size_analysis.py 6 """Generate a spatial analysis against an arbitrary library.
403 def RunElfSymbolizer(outfile, library, addr2line_binary, nm_binary, jobs,
405 nm_output = RunNm(library, nm_binary)
457 symbol_path_origin_dir = os.path.dirname(library)
460 symbolizer = elf_symbolizer.ELFSymbolizer(library, addr2line_binary,
503 symbol_path_origin_dir = os.path.dirname(library)
547 def GetNmSymbols(nm_infile, outfile, library, jobs, verbose,
555 RunElfSymbolizer(outfile, library, addr2line_binary, nm_binary, jobs,
642 def CheckDebugFormatSupport(library, addr2line_binary):
659 print('Checking version of debug information in %s.' % library)
    [all...]
  /external/skqp/infra/bots/recipe_modules/core/resources/
run_binary_size_analysis.py 6 """Generate a spatial analysis against an arbitrary library.
403 def RunElfSymbolizer(outfile, library, addr2line_binary, nm_binary, jobs,
405 nm_output = RunNm(library, nm_binary)
457 symbol_path_origin_dir = os.path.dirname(library)
460 symbolizer = elf_symbolizer.ELFSymbolizer(library, addr2line_binary,
503 symbol_path_origin_dir = os.path.dirname(library)
547 def GetNmSymbols(nm_infile, outfile, library, jobs, verbose,
555 RunElfSymbolizer(outfile, library, addr2line_binary, nm_binary, jobs,
642 def CheckDebugFormatSupport(library, addr2line_binary):
659 print('Checking version of debug information in %s.' % library)
    [all...]
  /external/vulkan-validation-layers/loader/
vk_loader_platform.h 50 // VK Library Filenames, Paths, etc.:
103 // When loading the library, we use RTLD_LAZY so that not all symbols have to be
110 static inline void loader_platform_close_library(loader_platform_dl_handle library) { dlclose(library); }
111 static inline void *loader_platform_get_proc_address(loader_platform_dl_handle library, const char *name) {
112 assert(library);
114 return dlsym(library, name);
167 // VK Library Filenames, Paths, etc.:
282 // Try loading the library the original way first.
292 (void)snprintf(errorMsg, 163, "Failed to open dynamic library \"%s\" with error %lu", libPath, GetLastError())
    [all...]
  /prebuilts/ndk/r16/sources/third_party/vulkan/src/loader/
vk_loader_platform.h 49 // VK Library Filenames, Paths, etc.:
131 loader_platform_close_library(loader_platform_dl_handle library) {
132 dlclose(library);
135 loader_platform_get_proc_address(loader_platform_dl_handle library,
137 assert(library);
139 return dlsym(library, name);
222 // VK Library Filenames, Paths, etc.:
308 snprintf(errorMsg, 163, "Failed to open dynamic library \"%s\"", libPath);
311 static void loader_platform_close_library(loader_platform_dl_handle library) {
312 FreeLibrary(library);
    [all...]
  /external/compiler-rt/make/
options.mk 12 # The list of functions to include in the library.
26 # Whether the library is being built for kernel use.
29 # Whether the library should be built as a shared object.
  /external/jemalloc/bin/
jemalloc-config.in 10 --revision : Print shared library revision number.
16 --libdir : Print library installation directory.
21 --ldflags : Print library flags used to build jemalloc.
  /external/libusb/android/jni/
Android.mk 4 # This library is free software; you can redistribute it and/or
9 # This library is distributed in the hope that it will be useful,
15 # License along with this library; if not, write to the Free Software
Application.mk 4 # This library is free software; you can redistribute it and/or
9 # This library is distributed in the hope that it will be useful,
15 # License along with this library; if not, write to the Free Software
  /frameworks/support/buildSrc/src/main/kotlin/androidx/build/
VersionFileWriterTask.kt 52 * Sets up Android Library project to have a task that generates a version file.
55 * @param project an Android Library project.
57 fun setUpAndroidLibrary(project: Project, library: LibraryExtension) {
62 // Add a java resource file to the library jar for version tracking purposes.
72 library.libraryVariants.all {
76 val resources = library.sourceSets.getByName("main").resources
  /external/freetype/builds/cmake/
testbuild.sh 29 # that builds the library.
99 FT_Library library;
110 error = FT_Init_FreeType(&library);
114 FT_Library_Version(library, &major, &minor, &patch);
122 error = FT_Done_FreeType(library);
  /external/libmojo/base/android/java/src/org/chromium/base/library_loader/
LibraryLoader.java 76 // One-way switch becomes true if the Chromium library was loaded from the
80 // The type of process the shared library is loaded in.
99 * Set native library preloader, if set, the NativeLibraryPreloader.loadLibrary will be invoked
103 * native library loaded.
113 * @param libraryProcessType the process the shared library is loaded in. refer to
135 * This method blocks until the library is fully loaded and initialized.
149 * Checks if library is fully loaded and initialized.
156 * Loads the library and blocks until the load completes. The caller is responsible
162 * @throws ProcessInitException if the native library failed to load.
174 * @throws ProcessInitException if the native library failed to load with this context
    [all...]
  /external/libxml2/vms/
build_libxml.com 3 $! Build the LIBXML library
9 $! This procedure creates an object library XML_LIBDIR:LIBXML.OLB directory.
10 $! After the library is built, you can link LIBXML routines into
13 $! $ LINK your_modules,XML_LIBDIR:LIBXML.OLB/LIBRARY
45 $!- list of sources to be built into the LIBXML library. Compare this list
129 $! object library
135 $ write sys$output "Creating new object library XML_LIBDIR:LIBXML.OLB"
136 $ library/create XML_LIBDIR:LIBXML.OLB
142 $!- compile modules into the library ------------------------------------------
144 $ lib_command = "LIBRARY/REPLACE/LOG XML_LIBDIR:LIBXML.OLB
    [all...]
  /external/protobuf/js/
gulpfile.js 12 exec(protoc + ' --js_out=library=testproto_libs,binary:. -I ../src -I . *.proto ../src/google/protobuf/descriptor.proto',
32 exec('./node_modules/google-closure-library/closure/bin/calcdeps.py -i message.js -i binary/reader.js -i binary/writer.js -i commonjs/export.js -p . -p node_modules/google-closure-library/closure -o compiled --compiler_jar node_modules/google-closure-compiler/compiler.jar > google-protobuf.js',
41 exec('mkdir -p commonjs_out/test_node_modules && ./node_modules/google-closure-library/closure/bin/calcdeps.py -i commonjs/export_asserts.js -p . -p node_modules/google-closure-library/closure -o compiled --compiler_jar node_modules/google-closure-compiler/compiler.jar > commonjs_out/test_node_modules/closure_asserts_commonjs.js',
50 exec('mkdir -p commonjs_out/test_node_modules && ./node_modules/google-closure-library/closure/bin/calcdeps.py -i commonjs/export_testdeps.js -p . -p node_modules/google-closure-library/closure -o compiled --compiler_jar node_modules/google-closure-compiler/compiler.jar > commonjs_out/test_node_modules/testdeps_commonjs.js',
82 exec('./node_modules/google-closure-library/closure/bin/build/depswriter.py *.js binary/*.js > deps.js',

Completed in 1134 milliseconds

1 2 3 4 5 67 8 91011>>