Searched defs:module (Results 26 - 50 of 374) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/libxml/src/
H A DtestModule.c45 xmlModulePtr module = NULL; local
48 /* build the module filename, and confirm the module exists */
54 module = xmlModuleOpen((const char*)filename, 0);
55 if (module)
57 if (xmlModuleSymbol(module, "hello_world", (void **) &hello_world)) {
68 xmlModuleClose(module);
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_init.h41 LLVMModuleRef module; member in struct:gallivm_state
/external/mesa3d/src/gallium/auxiliary/gallivm/
H A Dlp_bld_init.h41 LLVMModuleRef module; member in struct:gallivm_state
/external/chromium_org/third_party/blanketjs/src/
H A Dblanket.js3902 (function(require,module){
3921 module.exports = function (src, opts, fn) {
3999 window.falafel = module.exports;})(function(){return {parse: esprima.parse};},{exports: {}});
4772 // check if a data-cover-modulepattern was provided for per-module coverage reporting
4848 // track totals per module name as well as globally
4889 // as well as the per-module totals reporter
4894 var rowTitle = ( moduleName ? "Total for module: " + moduleName : "Global total" );
4907 // output the per-module totals alongside the global totals
/external/chromium-trace/trace-viewer/third_party/pywebsocket/src/test/
H A Dtest_stream.py33 """Tests for stream module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
45 """A unittest for stream module."""
H A Dtest_stream_hixie75.py33 """Tests for stream module."""
38 import set_sys_path # Update sys.path to locate mod_pywebsocket module. namespace
/external/chromium_org/athena/main/
H A Dathena_content_client.cc31 base::FilePath module; local
32 if (!PathService::Get(base::DIR_MODULE, &module))
36 pdf.path = base::FilePath(module.Append(kPDFPluginFileName));
/external/chromium_org/base/threading/
H A Dthread_local_storage_win.cc66 void NTAPI OnThreadExit(PVOID module, DWORD reason, PVOID reserved) { argument
74 // called automatically by the OS loader code (not the CRT) when the module is
75 // loaded and on thread creation. They are NOT called if the module has been
/external/chromium_org/base/win/
H A Dresource_util.cc11 bool GetResourceFromModule(HMODULE module, argument
16 if (!module)
24 HRSRC hres_info = FindResource(module, MAKEINTRESOURCE(resource_id),
29 DWORD data_size = SizeofResource(module, hres_info);
30 HGLOBAL hres = LoadResource(module, hres_info);
43 bool GetDataResourceFromModule(HMODULE module, argument
47 return GetResourceFromModule(module, resource_id, L"BINDATA", data, length);
/external/chromium_org/chrome/browser/install_verification/win/
H A Dimported_module_verification.cc20 // because the scanning of the module is not done within a loader lock, so is
28 bool AddressBeyondRange(const ModuleInfo& module, uintptr_t address) { argument
29 return module.base_address + module.size < address;
40 // The module handle is actually the base address where the header is.
80 // Note that module verification is temporarily disabled for 64-bit builds.
H A Dmodule_list.cc16 void CheckFreeLibrary(HMODULE module) { argument
17 BOOL result = ::FreeLibrary(module);
32 HMODULE module = NULL; local
33 // ::GetModuleHandleEx add-ref's the module if successful.
37 &module)) {
38 instance->modules_.push_back(module);
/external/chromium_org/chrome/installer/gcapi/
H A Dgcapi_test.cc33 HMODULE module = LoadLibrary(L"gcapi_dll.dll"); local
34 if (module == NULL) {
40 module, "GoogleChromeCompatibilityCheck");
58 FreeLibrary(module);
/external/chromium_org/chrome/installer/mini_installer/
H A Dpe_resource.cc7 PEResource::PEResource(HRSRC resource, HMODULE module) argument
8 : resource_(resource), module_(module) {
11 PEResource::PEResource(const wchar_t* name, const wchar_t* type, HMODULE module) argument
12 : resource_(NULL), module_(module) {
13 resource_ = ::FindResource(module, name, type);
/external/chromium_org/cloud_print/common/win/
H A Dcloud_print_utils.cc28 HMODULE module = NULL; local
30 GET_MODULE_HANDLE_EX_FLAG_FROM_ADDRESS, &dummy, &module);
34 int count = ::LoadString(module, id, reinterpret_cast<LPWSTR>(&buffer), 0);
/external/chromium_org/content/renderer/pepper/
H A Dppb_proxy_impl.cc21 void PluginCrashed(PP_Module module) { argument
22 PluginModule* plugin_module = HostGlobals::Get()->GetModule(module);
35 void SetReserveInstanceIDCallback(PP_Module module, argument
37 PluginModule* plugin_module = HostGlobals::Get()->GetModule(module);
42 void AddRefModule(PP_Module module) { argument
43 PluginModule* plugin_module = HostGlobals::Get()->GetModule(module);
48 void ReleaseModule(PP_Module module) { argument
49 PluginModule* plugin_module = HostGlobals::Get()->GetModule(module);
54 PP_Bool IsInModuleDestructor(PP_Module module) { argument
55 PluginModule* plugin_module = HostGlobals::Get()->GetModule(module);
[all...]
/external/chromium_org/native_client_sdk/src/libraries/ppapi_simple/
H A Dps.cc9 #include "ppapi/cpp/module.h"
22 pp::Module* module = pp::Module::Get(); local
23 if (module == NULL)
25 return module->GetBrowserInterface(name);
30 // an instance of your NaCl module on the web page. The browser creates a new
45 // Factory function called by the browser when the module is first loaded.
46 // The browser keeps a singleton of this module. It calls the
49 // point for your NaCl module with the browser.
/external/chromium_org/ppapi/cpp/
H A Dppp_entrypoints.cc13 #include "ppapi/cpp/module.h"
21 // Give a default implementation of Module::Get(). See module.cc for details.
36 pp::Module* module = pp::CreateModule(); local
37 if (!module)
40 if (!module->InternalInit(module_id, get_browser_interface)) {
41 delete module;
44 g_module_singleton = module;
/external/chromium_org/ppapi/native_client/tests/ppapi_test_lib/
H A Dinternal_utils.cc19 void set_pp_module(PP_Module module) { global_pp_module = module; } argument
/external/chromium_org/third_party/freetype/src/autofit/
H A Dafglobal.h73 AF_Module module; /* to access global properties */ member in struct:AF_FaceGlobalsRec_
86 AF_Module module );
H A Dafloader.h31 * The autofitter module's (global) data structure to communicate with
59 af_loader_init( AF_Module module ); variable
63 af_loader_reset( AF_Module module,
68 af_loader_done( AF_Module module ); variable
72 af_loader_load_glyph( AF_Module module,
/external/chromium_org/third_party/libjingle/source/talk/media/webrtc/
H A Dfakewebrtcvcmfactory.h41 FakeWebRtcVideoCaptureModule* module =
43 modules.push_back(module);
44 return module;
51 void OnDestroyed(webrtc::VideoCaptureModule* module) { argument
52 std::remove(modules.begin(), modules.end(), module);
/external/chromium_org/third_party/libjingle/source/talk/xmpp/
H A Dmoduleimpl.h31 #include "talk/xmpp/module.h"
37 //! An engine is registered with the module and the module then hooks the
45 //! Register the engine with the module. Only one engine can be associated
46 //! with a module at a time. This method will return an error if there is
50 //! Gets the engine that this module is attached to.
54 //! The module must return true if it has handled the stanza.
66 ModuleStanzaHandler(XmppModuleImpl* module) : argument
67 module_(module) {
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dprogram.cpp35 const std::vector<clover::module> &binaries) :
37 for_each([&](clover::device *dev, const clover::module &bin) {
50 auto module = (dev->ir_format() == PIPE_SHADER_IR_TGSI ? local
54 __binaries.insert({ dev, module });
68 const std::map<clover::device *, clover::module> &
/external/chromium_org/third_party/yasm/source/patched-yasm/libyasm/
H A Ddbgfmt.h39 const struct yasm_dbgfmt_module *module; member in struct:yasm_dbgfmt_base
43 /** Debug format module interface. */
83 * \param module debug format module
88 (const yasm_dbgfmt_module *module, yasm_object *object);
109 (((yasm_dbgfmt_base *)dbgfmt)->module->keyword)
111 #define yasm_dbgfmt_create(module, object) \
112 module->create(object)
115 ((yasm_dbgfmt_base *)dbgfmt)->module->destroy(dbgfmt)
117 ((yasm_dbgfmt_base *)((object)->dbgfmt))->module
[all...]
H A Dlistfmt.h39 const struct yasm_listfmt_module *module; member in struct:yasm_listfmt_base
43 /** YASM list format module interface. */
82 * \param module list format module
88 (const yasm_listfmt_module *module, const char *in_filename,
111 (((yasm_listfmt_base *)listfmt)->module->keyword)
113 #define yasm_listfmt_create(module, in_filename, obj_filename) \
114 module->create(in_filename, obj_filename)
117 ((yasm_listfmt_base *)listfmt)->module->destroy(listfmt)
120 ((yasm_listfmt_base *)listfmt)->module
[all...]

Completed in 2759 milliseconds

1234567891011>>