HomeSort by relevance Sort by last modified time
    Searched defs:module (Results 51 - 75 of 435) sorted by null

1 23 4 5 6 7 8 91011>>

  /frameworks/base/services/jni/
com_android_server_ConsumerIrService.cpp 33 hw_module_t const* module; local
37 err = hw_get_module(CONSUMERIR_HARDWARE_MODULE_ID, &module);
39 ALOGE("Can't open consumer IR HW Module, error: %d", err);
43 err = module->methods->open(module, CONSUMERIR_TRANSMITTER,
  /frameworks/compile/libbcc/lib/Renderscript/
RSCompiler.cpp 19 #include <llvm/IR/Module.h>
94 llvm::Module &module = script.getSource().getModule(); local
98 "%s!", module.getModuleIdentifier().c_str());
  /frameworks/native/libs/ui/
GraphicBufferMapper.cpp 41 hw_module_t const* module; local
42 int err = hw_get_module(GRALLOC_HARDWARE_MODULE_ID, &module);
43 ALOGE_IF(err, "FATAL: can't find the %s module", GRALLOC_HARDWARE_MODULE_ID);
45 mAllocMod = (gralloc_module_t const *)module;
  /hardware/libhardware/tests/nusensors/
nusensors.cpp 64 struct sensors_module_t* module; local
66 err = hw_get_module(SENSORS_HARDWARE_MODULE_ID, (hw_module_t const**)&module);
72 err = sensors_open(&module->common, &device);
79 int count = module->get_sensors_list(module, &list);
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/
test_pickletools.py 15 module = pickle variable in class:OptimizedPickleTests
test_pickle.py 22 module = pickle variable in class:PickleTests
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/
test_pickletools.py 15 module = pickle variable in class:OptimizedPickleTests
  /development/tools/idegen/src/com/android/idegen/
IntellijProject.java 65 Module module = cache.getAndCache(moduleName); local
66 if (module == null) {
67 logger.info("Module '" + moduleName + "' not found." +
68 " Module names are case senstive.");
71 projectIdeaDir = new File(module.getDir(), ".idea");
76 Set<String> deps = module.getAllDependencies();
82 Iterable<Module> modules = cache.getModules();
83 for (Module mod : modules) {
88 for (Module mod : modules)
208 String module = args[1]; local
    [all...]
  /external/chromium/base/win/
pe_image.h 47 typedef bool (*EnumImportChunksFunction)(const PEImage &image, LPCSTR module,
52 // module is the dll that exports this symbol. cookie is the value passed to
55 typedef bool (*EnumImportsFunction)(const PEImage &image, LPCSTR module,
60 // module is the dll that exports this block of symbols. cookie is the value
65 LPCSTR module,
78 explicit PEImage(HMODULE module) : module_(module) {}
79 explicit PEImage(const void* module) {
80 module_ = reinterpret_cast<HMODULE>(const_cast<void*>(module));
84 HMODULE module() const
247 inline HMODULE PEImage::module() const { function in class:base::win::PEImage
    [all...]
  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
test_extensions.py 33 """Tests for extensions module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
test_memorizingfile.py 33 """Tests for memorizingfile module."""
39 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
45 """A unittest for memorizingfile module."""
test_util.py 33 """Tests for util module."""
40 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
49 """A unittest for util module."""
  /external/chromium_org/base/win/
pe_image.h 51 typedef bool (*EnumImportChunksFunction)(const PEImage &image, LPCSTR module,
56 // module is the dll that exports this symbol. cookie is the value passed to
59 typedef bool (*EnumImportsFunction)(const PEImage &image, LPCSTR module,
64 // module is the dll that exports this block of symbols. cookie is the value
69 LPCSTR module,
82 explicit PEImage(HMODULE module) : module_(module) {}
83 explicit PEImage(const void* module) {
84 module_ = reinterpret_cast<HMODULE>(const_cast<void*>(module));
88 HMODULE module() const
251 inline HMODULE PEImage::module() const { function in class:base::win::PEImage
    [all...]
  /external/chromium_org/third_party/libxml/src/
xmlmodule.c 2 * xmlmodule.c : basic API for dynamic module loading added 2.6.17
33 * module memory error handler *
44 xmlModuleErrMemory(xmlModulePtr module, const char *extra)
48 if (module != NULL) {
49 name = (const char *) module->name;
60 * @name: the module name
63 * Opens a module/shared library given its name or path
66 * Returns a handle for the module or NULL in case of error
71 xmlModulePtr module; local
73 module = (xmlModulePtr) xmlMalloc(sizeof(xmlModule))
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/drivers/llvmpipe/
lp_test_printf.c 63 LLVMModuleRef module = gallivm->module; local
65 LLVMValueRef func = LLVMAddFunction(module, "test_printf", LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context), args, 1, 0));
  /external/chromium_org/tools/gn/
ninja_build_writer.cc 29 wchar_t module[MAX_PATH]; local
30 GetModuleFileName(NULL, module, MAX_PATH);
31 //result = "\"" + WideToUTF8(module) + "\"";
32 base::FilePath executable(module);
  /external/freetype/src/autofit/
afmodule.c 5 /* Auto-fitter module implementation (body). */
51 AF_Module module )
65 error = af_face_globals_new( face, &globals, module );
88 AF_Module module = (AF_Module)ft_module; local
96 module->fallback_script = *fallback_script;
106 error = af_property_get_face_globals( prop->face, &globals, module );
125 AF_Module module = (AF_Module)ft_module; local
126 FT_UInt fallback_script = module->fallback_script;
135 error = af_property_get_face_globals( prop->face, &globals, module );
156 error = af_property_get_face_globals( prop->face, &globals, module );
206 AF_Module module = (AF_Module)ft_module; local
218 AF_Module module = (AF_Module)ft_module; local
    [all...]
  /external/libxml2/
xmlmodule.c 2 * xmlmodule.c : basic API for dynamic module loading added 2.6.17
33 * module memory error handler *
44 xmlModuleErrMemory(xmlModulePtr module, const char *extra)
48 if (module != NULL) {
49 name = (const char *) module->name;
60 * @name: the module name
63 * Opens a module/shared library given its name or path
66 * Returns a handle for the module or NULL in case of error
71 xmlModulePtr module; local
73 module = (xmlModulePtr) xmlMalloc(sizeof(xmlModule))
    [all...]
  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test_printf.c 63 LLVMModuleRef module = gallivm->module; local
65 LLVMValueRef func = LLVMAddFunction(module, "test_printf", LLVMFunctionType(LLVMVoidTypeInContext(gallivm->context), args, 1, 0));
  /frameworks/base/data/fonts/
Android.mk 89 # It also serves as the module name and the dest file name.
90 define build-one-font-module
146 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
148 build-one-font-module :=
  /frameworks/compile/libbcc/bcinfo/
BitcodeTranslator.cpp 33 #include "llvm/IR/Module.h"
125 // Module ownership is handled by the context, so we don't need to free it.
126 llvm::Module *module = NULL; local
129 module = llvm_3_0::ParseBitcodeFile(MEM.get(), *mContext, &error);
131 module = llvm_2_7::ParseBitcodeFile(MEM.get(), *mContext, &error);
137 if (!module) {
147 llvm_3_2::WriteBitcodeToFile(module, OS);
  /frameworks/compile/libbcc/lib/Core/
Compiler.cpp 21 #include <llvm/IR/Module.h>
56 return "Failed to materialize the module.";
156 // Prepare DataLayout target data from Module
204 // Prepare DataLayout target data from Module
249 llvm::Module &module = pScript.getSource().getModule(); local
256 // Materialize the bitcode module.
257 if (module.getMaterializer() != NULL) {
259 // A module with non-null materializer means that it is a lazy-load module
274 *IRStream << module; local
    [all...]
Source.cpp 24 #include <llvm/IR/Module.h>
36 // reduce the startup time. On success, return the LLVM module object created
39 static inline llvm::Module *helper_load_bitcode(llvm::LLVMContext &pContext,
42 llvm::Module *module = llvm::getLazyBitcodeModule(pInput, pContext, &error); local
44 if (module == NULL) {
49 return module;
56 void Source::setModule(llvm::Module *pModule) {
74 llvm::Module *module = helper_load_bitcode(pContext.mImpl->mLLVMContext local
100 llvm::Module *module = helper_load_bitcode(pContext.mImpl->mLLVMContext, local
161 llvm::Module *module = local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/encodings/
bz2_codec.py 11 import bz2 # this codec needs the optional bz2 module ! namespace
91 ### encodings module API
zlib_codec.py 10 import zlib # this codec needs the optional zlib module ! namespace
91 ### encodings module API

Completed in 1674 milliseconds

1 23 4 5 6 7 8 91011>>