HomeSort by relevance Sort by last modified time
    Searched defs:module (Results 26 - 50 of 245) sorted by null

12 3 4 5 6 7 8 910

  /external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
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."""
test_mock.py 33 """Tests for mock module."""
40 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
test_dispatch.py 33 """Tests for dispatch module."""
39 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
53 """A unittest for dispatch module."""
  /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...]
  /frameworks/base/data/fonts/
Android.mk 107 # It also serves as the module name and the dest file name.
108 define build-one-font-module
166 $(foreach f, $(font_src_files), $(call build-one-font-module, $(f)))
168 build-one-font-module :=
  /frameworks/compile/libbcc/bcinfo/
BitcodeTranslator.cpp 31 #include "llvm/IR/Module.h"
123 // Module ownership is handled by the context, so we don't need to free it.
124 llvm::Module *module = NULL; local
127 module = llvm_3_0::ParseBitcodeFile(MEM.get(), *mContext, &error);
129 module = llvm_2_7::ParseBitcodeFile(MEM.get(), *mContext, &error);
135 if (!module) {
144 llvm::WriteBitcodeToFile(module, OS);
  /frameworks/compile/libbcc/lib/Core/
Compiler.cpp 21 #include <llvm/IR/Module.h>
55 "Failed to materialize the module.",
161 // Prepare DataLayout target data from Module
287 // Prepare DataLayout target data from Module
331 llvm::Module &module = pScript.getSource().getModule(); local
338 // Materialize the bitcode module.
339 if (module.getMaterializer() != NULL) {
341 // A module with non-null materializer means that it is a lazy-load module
    [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
128 llvm::Module *module = helper_load_bitcode(pContext.mImpl->mLLVMContext, local
189 llvm::Module *module = local
    [all...]
  /external/compiler-rt/lib/sanitizer_common/
sanitizer_symbolizer.h 35 char *module; member in struct:__sanitizer::AddressInfo
51 module = internal_strdup(mod_name);
58 char *module; member in struct:__sanitizer::DataInfo
  /frameworks/base/services/jni/
com_android_server_LightsService.cpp 51 static light_device_t* get_device(hw_module_t* module, char const* name)
55 err = module->methods->open(module, name, &device);
66 hw_module_t* module; local
71 err = hw_get_module(LIGHTS_HARDWARE_MODULE_ID, (hw_module_t const**)&module);
74 = get_device(module, LIGHT_ID_BACKLIGHT);
76 = get_device(module, LIGHT_ID_KEYBOARD);
78 = get_device(module, LIGHT_ID_BUTTONS);
80 = get_device(module, LIGHT_ID_BATTERY);
82 = get_device(module, LIGHT_ID_NOTIFICATIONS)
    [all...]
  /frameworks/compile/mclinker/unittests/
LinkerTest.cpp 12 #include <mcld/Module.h>
55 Module module("test");
61 IRBuilder builder(module, config);
65 if (linker.link(module, builder))
100 Module module("libplasma.so");
101 IRBuilder builder(module, config);
124 if (linker.link(module, builder)) {
157 Module module1("libplasma.once.so")
348 Module module; local
    [all...]
  /frameworks/native/libs/ui/
GraphicBufferAllocator.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 gralloc_open(module, &mAllocDev);
  /hardware/libhardware/modules/gralloc/
gralloc.cpp 52 int fb_device_open(const hw_module_t* module, const char* name,
55 static int gralloc_device_open(const hw_module_t* module, const char* name,
58 extern int gralloc_lock(gralloc_module_t const* module,
63 extern int gralloc_unlock(gralloc_module_t const* module,
66 extern int gralloc_register_buffer(gralloc_module_t const* module,
69 extern int gralloc_unregister_buffer(gralloc_module_t const* module,
85 name: "Graphics Memory Allocator Module",
108 dev->common.module);
161 dev->common.module);
184 gralloc_module_t* module = reinterpret_cast<gralloc_module_t*> local
262 gralloc_module_t* module = reinterpret_cast<gralloc_module_t*>( local
    [all...]
  /packages/apps/Camera/src/com/android/camera/
CameraActivity.java 168 private void openModule(CameraModule module, boolean canReuse) {
169 module.init(this, mFrame, canReuse && canReuseScreenNail());
171 module.onResumeBeforeSuper();
172 module.onResumeAfterSuper();
175 private void closeModule(CameraModule module) {
176 module.onPauseBeforeSuper();
177 module.onPauseAfterSuper();
  /development/ndk/platforms/android-3/include/linux/mtd/
map.h 69 struct module *module; member in struct:mtd_chip_driver
  /external/apache-harmony/auth/src/test/java/common/org/apache/harmony/auth/tests/module/
LoginModuleUtilsTest.java 18 package org.apache.harmony.auth.tests.module;
26 import org.apache.harmony.auth.module.LoginModuleUtils;
  /external/apache-harmony/auth/src/test/java/unix/org/apache/harmony/auth/module/
UnixLoginModuleTest.java 21 package org.apache.harmony.auth.module;
32 import org.apache.harmony.auth.module.UnixLoginModule;
  /external/apache-http/src/org/apache/http/util/
VersionInfo.java 2 * $HeadURL: http://svn.apache.org/repos/asf/httpcomponents/httpcore/trunk/module-main/src/main/java/org/apache/http/util/VersionInfo.java $
43 * Instances of this class provide version information for a single module
66 public final static String PROPERTY_MODULE = "info.module";
74 /** The module from the version info. */
91 * @param module the module, or <code>null</code>
96 protected VersionInfo(String pckg, String module,
104 infoModule = (module != null) ? module : UNAVAILABLE;
113 * The package name identifies the module or informal unit
288 String module = null; local
    [all...]
  /external/chromium/chrome/browser/accessibility/
browser_accessibility_win_unittest.cc 55 // ATL needs a pointer to a COM module.
56 static CComModule module; local
57 _pAtlModule = &module;
renderer_accessibility_browsertest.cc 67 // ATL needs a pointer to a COM module.
68 static CComModule module; local
69 _pAtlModule = &module;
  /external/chromium/chrome/browser/
enumerate_modules_model_unittest_win.cc 25 ModuleEnumerator::Module test_case;
26 ModuleEnumerator::Module expected;
59 ModuleEnumerator::Module test = kNormalizationTestCases[i].test_case;
62 ModuleEnumerator::Module expected = kNormalizationTestCases[i].expected;
78 const ModuleEnumerator::Module kStandardModule =
81 const ModuleEnumerator::Module kStandardModuleNoDescription =
84 const ModuleEnumerator::Module kStandardModuleNoSignature =
103 ModuleEnumerator::Module test_case;
198 ModuleEnumerator::Module test = kMatchineEntryList[i].test_case;
230 ModuleEnumerator::Module module local
    [all...]
platform_util_win.cc 201 FilePath module; local
203 if (PathService::Get(base::FILE_MODULE, &module)) {
205 !InstallUtil::IsPerUserInstall(module.value().c_str());
  /external/chromium/chrome/common/extensions/docs/js/
api_page_generator.js 49 // The current module for this page (if this page is an api module);
50 var module; variable
52 // Mapping from typeId to module.
58 // If this page is an apiModule, the name of the api module
213 module = mod;
214 apiModuleName = API_MODULE_PREFIX + module.namespace;
215 pageData.apiDefinition = module;
335 return schema.filter(function(module) {
336 return !module.nodoc && module.namespace.indexOf("experimental") < 0
    [all...]
  /external/chromium/net/base/
cert_database_nss.cc 113 CryptoModule* module = local
115 // The module is already referenced when returned from
117 PK11_FreeSlot(module->os_module_handle());
119 return module;
123 CryptoModule* module = local
125 // The module is already referenced when returned from
127 PK11_FreeSlot(module->os_module_handle());
129 return module;
157 CryptoModule* module,
160 int result = psm::nsPKCS12Blob_Import(module->os_module_handle()
    [all...]

Completed in 1576 milliseconds

12 3 4 5 6 7 8 910