Searched defs:module (Results 276 - 300 of 374) sorted by relevance

<<1112131415

/external/chromium_org/v8/src/
H A Dtyping.cc750 RECURSE(Visit(declaration->module()));
755 RECURSE(Visit(declaration->module()));
763 void AstTyper::VisitModuleLiteral(ModuleLiteral* module) { argument
764 RECURSE(Visit(module->body()));
768 void AstTyper::VisitModuleVariable(ModuleVariable* module) { argument
772 void AstTyper::VisitModulePath(ModulePath* module) { argument
773 RECURSE(Visit(module->module()));
777 void AstTyper::VisitModuleUrl(ModuleUrl* module) { argument
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_symbolizer_posix_libcdep.cc529 // about module name and offset.
580 LoadedModule *module = FindModuleForAddress(addr); local
581 if (module == 0)
583 const char *module_name = module->full_name();
584 uptr module_offset = addr - module->base_address();
587 info->module = internal_strdup(module_name);
601 info->start += module->base_address();
688 // to find a module for a given address.
698 LoadedModule *module = FindModuleForAddress(address); local
699 if (module
[all...]
/external/lldb/source/Expression/
H A DClangUserExpression.cpp817 llvm::Module *module = m_execution_unit_ap->GetModule(); local
820 if (!module || !function)
843 IRInterpreter::Interpret (*module,
H A DIRDynamicChecks.cpp141 /// @param[in] module
142 /// The module being instrumented.
144 Instrumenter (llvm::Module &module, argument
146 m_module(module),
337 llvm::Module &m_module; ///< The module which is being instrumented
346 ValidPointerChecker (llvm::Module &module, argument
348 Instrumenter(module, checker_functions),
415 ObjcObjectChecker(llvm::Module &module, argument
417 Instrumenter(module, checker_functions),
607 log->Printf("Couldn't find %s() in the module", m_func_nam
[all...]
/external/lldb/source/Plugins/Platform/MacOSX/
H A DPlatformDarwin.cpp57 Module &module)
66 FileSpec module_spec = module.GetFileSpec();
70 SymbolVendor *symbols = module.GetSymbolVendor ();
86 // FIXME: for Python, we cannot allow certain characters in module
286 // the shared module first.
310 // directory level and try any module search paths...
56 LocateExecutableScriptingResources(Target *target, Module &module) argument
/external/lldb/source/Plugins/Process/POSIX/
H A DProcessPOSIX.cpp84 lldb::ModuleSP module = GetTarget().GetExecutableModule(); local
85 if (module && module->GetObjectFile())
86 m_byte_order = module->GetObjectFile()->GetByteOrder();
108 // For now we are just making sure the file exists for a given module
112 // If there is no executable module, we return true since we might be preparing to attach.
140 // Resolve the executable module
155 // Initialize the target module list
172 ProcessPOSIX::WillLaunch(Module* module) argument
202 ProcessPOSIX::DoLaunch (Module *module, argument
[all...]
/external/lldb/source/Target/
H A DPlatform.cpp93 Platform::LocateExecutableScriptingResources (Target *target, Module &module) argument
/external/opencv/cxcore/src/
H A Dcxswitcher.cpp451 func_tab[i].loaded_from = idx; // store index of the module
490 cvRegisterModule( const CvModuleInfo* module )
500 CV_ASSERT( module != 0 && module->name != 0 && module->version != 0 );
502 name_len = strlen(module->name);
503 version_len = strlen(module->version);
508 *module_copy = *module;
512 memcpy( (void*)module_copy->name, module->name, name_len + 1 );
513 memcpy( (void*)module_copy->version, module
544 CvModuleInfo* module; local
[all...]
/external/bluetooth/bluedroid/audio_a2dp_hw/
H A Daudio_a2dp_hw.c1306 static int adev_open(const hw_module_t* module, const char* name, argument
1312 INFO(" adev_open in A2dp_hw module");
1328 adev->device.common.module = (struct hw_module_t *) module;
/external/bluetooth/bluedroid/test/bluedroidtest/
H A Dbluedroidtest.c404 hw_module_t* module; local
409 err = hw_get_module(BT_HARDWARE_MODULE_ID, (hw_module_t const**)&module);
412 err = module->methods->open(module, BT_HARDWARE_MODULE_ID, &device);
/external/chromium_org/content/renderer/pepper/
H A Dpepper_plugin_instance_impl.h130 PluginModule* module,
134 PluginModule* module() const { return module_.get(); } function in class:content::PepperPluginInstanceImpl
531 // Reset this instance as proxied. Assigns the instance a new module, resets
536 PP_ExternalPluginResult ResetAsProxied(scoped_refptr<PluginModule> module);
538 // Checks whether this is a valid instance of the given module. After calling
539 // ResetAsProxied above, a NaCl plugin instance's module changes, so external
540 // hosts won't recognize it as a valid instance of the original module. This
542 // the given module.
543 bool IsValidInstanceOf(PluginModule* module);
610 PluginModule* module,
[all...]
/external/chromium_org/crypto/
H A Dnss_util.cc361 // This tries to load the Chaps module so NSS can talk to the hardware
442 DVLOG(3) << "Poking chaps module.";
799 // Load the given module for this NSS session.
811 SECMODModule* module = SECMOD_LoadUserModule( local
813 if (!module) {
814 LOG(ERROR) << "Error loading " << name << " module into NSS: "
818 if (!module->loaded) {
821 SECMOD_DestroyModule(module);
824 return module;
/external/chromium_org/native_client_sdk/src/examples/api/video_decode/
H A Dvideo_decode.cc21 #include "ppapi/cpp/module.h"
66 MyInstance(PP_Instance instance, pp::Module* module);
366 MyInstance::MyInstance(PP_Instance instance, pp::Module* module) argument
/external/chromium_org/ppapi/examples/video_decode/
H A Dvideo_decode.cc19 #include "ppapi/cpp/module.h"
67 MyInstance(PP_Instance instance, pp::Module* module);
367 MyInstance::MyInstance(PP_Instance instance, pp::Module* module) argument
H A Dvideo_decode_dev.cc22 #include "ppapi/cpp/module.h"
60 VideoDecodeDemoInstance(PP_Instance instance, pp::Module* module);
221 pp::Module* module)
230 module->GetBrowserInterface(PPB_CONSOLE_INTERFACE))),
232 module->GetBrowserInterface(PPB_CORE_INTERFACE))),
234 module->GetBrowserInterface(PPB_OPENGLES2_INTERFACE))),
220 VideoDecodeDemoInstance(PP_Instance instance, pp::Module* module) argument
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/
H A DRuntime.js31 // This gets all concatenated module descriptors in the release mode.
172 var content = loadResource(moduleName + "/module.json");
190 var content = loadResource(moduleName + "/module.json");
258 moduleJSON = Runtime._parseJsonURL(name + "/module.json");
352 var content = loadResource(moduleName + "/module.json");
356 var module = /** @type {!Runtime.ModuleDescriptor} */ (self.eval("(" + content + ")"));
357 module["name"] = moduleName;
358 this._descriptorsMap[moduleName] = module;
360 var module = new Runtime.Module(this, this._descriptorsMap[moduleName]);
361 this._modules.push(module);
[all...]
/external/chromium_org/third_party/codesighs/
H A Dmaptsvdifftool.c391 char module[0x100]; local
413 module,
443 ** the module
452 if(0 == strcmp(modules[moduleIndex].mModule, module))
469 modules[moduleIndex].mModule = strdup(module);
473 ERROR_REPORT(retval, module, "Unable to duplicate string.");
479 ERROR_REPORT(retval, inOptions->mProgramName, "Unable to increase module array.");
/external/chromium_org/third_party/cython/src/Cython/Compiler/
H A DModuleNode.py48 # scope The module scope.
114 for module in self.referenced_modules:
115 for entry in module.cfunc_entries:
241 h_code.putln("PyObject *module = 0;")
242 h_code.putln('module = __Pyx_ImportModule("%s");' % env.qualified_name)
243 h_code.putln("if (!module) goto bad;")
248 'if (__Pyx_ImportFunction(module, "%s", (void (**)(void))&%s, "%s") < 0) goto bad;'
254 'if (__Pyx_ImportVoidPtr(module, "%s", (void **)&%s, "%s") < 0) goto bad;'
256 h_code.putln("Py_DECREF(module); module
2020 code.putln(" Py_FatalError(\\"failed to import 'refnanny' module\\");") namespace
[all...]
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DCythonFunction.c48 #define __Pyx_CyFunction_NewEx(ml, flags, qualname, self, module, globals, code) \
49 __Pyx_CyFunction_New(__pyx_CyFunctionType, ml, flags, qualname, self, module, globals, code)
54 PyObject *module, PyObject *globals,
427 PyObject *closure, PyObject *module, PyObject* globals, PyObject* code) {
437 Py_XINCREF(module);
438 op->func.m_module = module;
739 #define __pyx_FusedFunction_NewEx(ml, flags, qualname, self, module, globals, code) \
740 __pyx_FusedFunction_New(__pyx_FusedFunctionType, ml, flags, qualname, self, module, globals, code)
744 PyObject *module, PyObject *globals,
759 PyObject *module, PyObjec
426 __Pyx_CyFunction_New(PyTypeObject *type, PyMethodDef *ml, int flags, PyObject* qualname, PyObject *closure, PyObject *module, PyObject* globals, PyObject* code) argument
757 __pyx_FusedFunction_New(PyTypeObject *type, PyMethodDef *ml, int flags, PyObject *qualname, PyObject *self, PyObject *module, PyObject *globals, PyObject *code) argument
[all...]
/external/chromium_org/third_party/jinja2/
H A Denvironment.py529 `defer_init` is use internally to aid the module code generator. This
730 # the debugging module is imported when it's used for the first time.
924 """Creates a template object from a module. This is used by the
925 module loader to create a template object.
940 # render function and module
1007 """This method works like the :attr:`module` attribute when called
1016 def module(self): member in class:Template
1017 """The template as module. This is used for imports in the
1022 >>> unicode(t.module)
1024 >>> t.module
[all...]
/external/chromium_org/third_party/libxslt/libxslt/
H A Dextensions.c163 * @initFunc: the module initialization function
164 * @shutdownFunc: the module shutdown function
165 * @styleInitFunc: the stylesheet module data allocator function
166 * @styleShutdownFunc: the stylesheet module data free function
168 * Create a new XSLT extension module
195 * @ext: an XSLT extension module
209 * @extModule: the module
212 * Create a new XSLT extension module data wrapper
236 * @ext: an XSLT extension module data wrapper
345 /* have we attempted to register this module alread
549 xsltExtModulePtr module; local
668 xsltExtModulePtr module; local
878 xsltExtModulePtr module; local
940 xsltExtModulePtr module; local
1058 xsltExtModulePtr module; local
1104 xsltExtModulePtr module; local
1255 xsltExtModulePtr module; local
[all...]
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/radeon/
H A Dradeon_setup_tgsi_llvm.c959 LLVMModuleRef module = LLVMGetGlobalParent(LLVMGetBasicBlockParent(LLVMGetInsertBlock(builder))); local
962 function = LLVMGetNamedFunction(module, name);
974 function = lp_declare_intrinsic(module, name, ret_type, arg_types, num_args);
1003 * We are only using the module, context, and builder fields of this struct.
1005 * helper functions in the gallivm module.
1010 ctx->gallivm.module = LLVMModuleCreateWithNameInContext("tgsi",
1014 /* Setup the module */
1017 ctx->main_fn = LLVMAddFunction(ctx->gallivm.module, "main", main_fn_type);
1189 gallivm->module);
1208 LLVMDisposeModule(ctx->soa.bld_base.base.gallivm->module);
[all...]
/external/chromium_org/third_party/yasm/source/patched-yasm/modules/objfmts/elf/
H A Delf-objfmt.c348 elf_objfmt_create_common(yasm_object *object, yasm_objfmt_module *module, argument
357 objfmt_elf->objfmt.module = module;
401 objfmt_elf->objfmt.module = &yasm_elf32_LTX_objfmt;
403 objfmt_elf->objfmt.module = &yasm_elf64_LTX_objfmt;
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Dpython.c1031 PyObject *dict, *module = Py_InitModule("perf", perf__methods); local
1033 if (module == NULL ||
1044 PyModule_AddObject(module, "evlist", (PyObject*)&pyrf_evlist__type);
1047 PyModule_AddObject(module, "evsel", (PyObject*)&pyrf_evsel__type);
1050 PyModule_AddObject(module, "thread_map", (PyObject*)&pyrf_thread_map__type);
1053 PyModule_AddObject(module, "cpu_map", (PyObject*)&pyrf_cpu_map__type);
1055 dict = PyModule_GetDict(module);
H A Dsymbol.c526 * module symbols are not sorted so we add all
535 * map__split_kallsyms, when we have split the maps per module
565 char *module; local
570 module = strchr(pos->name, '\t');
571 if (module)
572 *module = '\0';
619 char *module; local
624 module = strchr(pos->name, '\t');
625 if (module) {
629 *module
[all...]

Completed in 504 milliseconds

<<1112131415