Searched defs:module (Results 126 - 150 of 374) sorted by relevance

1234567891011>>

/external/chromium_org/chrome/tools/build/win/
H A Dresedit.py113 module = property(_GetModule) variable in class:_ResourceEditor
141 for res_type in win32api.EnumResourceTypes(self.module):
145 for res_name in win32api.EnumResourceNames(self.module, res_type):
149 for res_lang in win32api.EnumResourceLanguages(self.module,
176 data = win32api.LoadResource(self.module, res_type, res_name, res_lang)
/external/chromium_org/content/browser/
H A Dpower_save_blocker_win.cc33 HMODULE module = GetModuleHandle(L"kernel32.dll"); local
35 GetProcAddress(module, "PowerCreateRequest"));
37 GetProcAddress(module, "PowerSetRequest"));
71 HMODULE module = GetModuleHandle(L"kernel32.dll"); local
74 GetProcAddress(module, "PowerClearRequest"));
/external/chromium_org/mojo/examples/pepper_container_app/
H A Dmojo_ppapi_globals.cc134 void MojoPpapiGlobals::BroadcastLogWithSource(PP_Module module, argument
/external/chromium_org/net/base/
H A Dnet_util_win.h46 HMODULE module; member in struct:net::internal::WlanApi
/external/chromium_org/ppapi/examples/enumerate_devices/
H A Denumerate_devices.cc17 #include "ppapi/cpp/module.h"
42 EnumerateDevicesDemoInstance(PP_Instance instance, pp::Module* module);
67 pp::Module* module)
66 EnumerateDevicesDemoInstance(PP_Instance instance, pp::Module* module) argument
/external/chromium_org/ppapi/examples/gles2/
H A Dgles2.cc18 #include "ppapi/cpp/module.h"
40 GLES2DemoInstance(PP_Instance instance, pp::Module* module);
85 GLES2DemoInstance::GLES2DemoInstance(PP_Instance instance, pp::Module* module) argument
89 module->GetBrowserInterface(PPB_OPENGLES2_INTERFACE))),
90 module_(module),
/external/chromium_org/ppapi/examples/video_effects/
H A Dvideo_effects.cc14 #include "ppapi/cpp/module.h"
49 VEDemoInstance(PP_Instance instance, pp::Module* module);
67 VEDemoInstance::VEDemoInstance(PP_Instance instance, pp::Module* module) argument
/external/chromium_org/ppapi/native_client/tests/nacl_browser/inbrowser_test_runner/
H A Dtest_runner_ppapi.c134 int32_t PPP_InitializeModule(PP_Module module, argument
/external/chromium_org/sandbox/win/src/
H A Dapp_container.cc28 HMODULE module = GetModuleHandle(sandbox::kKerneldllName); local
29 void* function = GetProcAddress(module, name);
31 module = GetModuleHandle(sandbox::kKernelBasedllName);
32 function = GetProcAddress(module, name);
H A Dprocess_mitigations.cc35 HMODULE module = ::GetModuleHandleA("kernel32.dll"); local
41 ::GetProcAddress(module, "SetDefaultDllDirectories"));
73 ::GetProcAddress(module, "SetProcessDEPPolicy"));
111 ::GetProcAddress(module, "SetProcessMitigationPolicy"));
/external/chromium_org/third_party/freetype/src/cff/
H A Dcffobjs.h172 cff_driver_init( FT_Module module ); /* CFF_Driver */ variable
175 cff_driver_done( FT_Module module ); /* CFF_Driver */ variable
/external/chromium_org/third_party/hwcplus/include/hardware/
H A Dhardware.h49 * All module implementations must set the hw_module_t.hal_api_version field
50 * to this value when declaring the module with HAL_MODULE_INFO_SYM.
60 * Helper macros for module implementors.
63 * versions so that implementations can explicitly specify module/device
82 * Every hardware module must have a data structure named HAL_MODULE_INFO_SYM
84 * followed by module specific information.
91 * The API version of the implemented module. The module owner is
92 * responsible for updating the version when a module interface has
96 * The module use
186 struct hw_module_t* module; member in struct:hw_device_t
[all...]
/external/chromium_org/third_party/markupsafe/
H A D_speedups.c5 * This module implements functions for automatic escaping in C for better
31 PyObject *module; local
46 module = PyImport_ImportModule("markupsafe");
47 if (!module)
49 markup = PyObject_GetAttrString(module, "Markup");
50 Py_DECREF(module);
216 #else /* Python 3.x module initialization */
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/gallivm/
H A Dlp_bld_intr.c56 lp_declare_intrinsic(LLVMModuleRef module, argument
65 assert(!LLVMGetNamedFunction(module, name));
68 function = LLVMAddFunction(module, name, function_type);
86 LLVMModuleRef module = LLVMGetGlobalParent(LLVMGetBasicBlockParent(LLVMGetInsertBlock(builder))); local
89 function = LLVMGetNamedFunction(module, name);
101 function = lp_declare_intrinsic(module, name, ret_type, arg_types, num_args);
/external/chromium_org/third_party/mesa/src/src/gallium/state_trackers/clover/core/
H A Dmodule.hpp29 struct module { struct in namespace:clover
91 static module deserialize(compat::istream &is);
93 /// Look up a symbol by name. Throws module::noent_error if not
97 /// Look up a section by type. Throws module::noent_error if not
/external/chromium_org/third_party/tcmalloc/chromium/src/windows/
H A Dpreamble_patcher.h178 // Patches a named function imported from the named module using
186 // @param module_name The name of the module from which the function
187 // is being imported. Note that the patch will fail if this module
209 "You must specify a module name and function name.");
212 HMODULE module = ::GetModuleHandle(module_name); local
213 SIDESTEP_ASSERT(module != NULL);
214 if (!module) {
215 SIDESTEP_ASSERT(false && "Invalid module name.");
218 FARPROC existing_function = ::GetProcAddress(module, function_name);
221 false && "Did not find any function with that name in the module
[all...]
/external/chromium_org/third_party/tcmalloc/vendor/src/windows/
H A Dpreamble_patcher.h178 // Patches a named function imported from the named module using
186 // @param module_name The name of the module from which the function
187 // is being imported. Note that the patch will fail if this module
209 "You must specify a module name and function name.");
212 HMODULE module = ::GetModuleHandle(module_name); local
213 SIDESTEP_ASSERT(module != NULL);
214 if (!module) {
215 SIDESTEP_ASSERT(false && "Invalid module name.");
218 FARPROC existing_function = ::GetProcAddress(module, function_name);
221 false && "Did not find any function with that name in the module
[all...]
/external/chromium_org/third_party/webrtc/modules/video_coding/main/source/
H A Dvideo_coding_impl.cc399 void VideoCodingModule::Destroy(VideoCodingModule* module) { argument
400 if (module != NULL) {
401 delete static_cast<VideoCodingModuleImpl*>(module);
/external/chromium_org/third_party/webrtc/modules/video_processing/main/source/
H A Dvideo_processing_impl.cc44 void VideoProcessingModule::Destroy(VideoProcessingModule* module) { argument
45 if (module)
46 delete static_cast<VideoProcessingModuleImpl*>(module);
/external/chromium_org/tools/win/static_initializers/
H A Dstatic_initializers.cc89 static void PrintIfDynamicInitializer(const std::wstring& module, argument
102 wprintf(L"%s: %s\n", module.c_str(), bstr_name);
/external/clang/include/clang/Lex/
H A DPreprocessorOptions.h125 bool hasAlreadyFailed(StringRef module) { argument
126 return Failed.count(module) > 0;
129 void addFailed(StringRef module) { argument
130 Failed.insert(module);
137 /// to (re)build modules, so that once a module fails to build anywhere,
138 /// other instances will see that the module has failed and won't try to
172 /// module.
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_symbolize.cc49 ent->module = StripModuleName(info.module);
62 char *module; member in namespace:__tsan
102 ent->module = 0;
141 ent->module = StripModuleName(info.module);
/external/e2fsprogs/intl/
H A Dplural-exp.h47 module, /* Modulo operation. */ enumerator in enum:expression::operator
/external/elfutils/0.153/libdwfl/
H A Doffline.c120 int (*predicate) (const char *module,
123 /* Report one module for an ELF file, or many for an archive.
127 Elf *elf, int (*predicate) (const char *module,
145 /* Report the open ELF file as a module. Always consumes ELF and FD. */
157 range for the offline allocations. If this module did use
158 offline_next_address, it may have rounded it up for the module's
180 int (*predicate) (const char *module, const char *file),
242 On module teardown we will close it only on the last Elf reference. */
254 /* Report each member of the archive as its own module. */
258 int (*predicate) (const char *module, cons
126 process_file(Dwfl *dwfl, const char *name, const char *file_name, int fd, Elf *elf, int (*predicate) (const char *module, const char *file)) argument
179 process_archive_member(Dwfl *dwfl, const char *name, const char *file_name, int (*predicate) (const char *module, const char *file), int fd, Elf *member, Dwfl_Module **mod) argument
256 process_archive(Dwfl *dwfl, const char *name, const char *file_name, int fd, Elf *archive, int (*predicate) (const char *module, const char *file)) argument
286 __libdwfl_report_offline(Dwfl *dwfl, const char *name, const char *file_name, int fd, bool closefd, int (*predicate) (const char *module, const char *file)) argument
[all...]
/external/freetype/src/cff/
H A Dcffobjs.h174 cff_driver_init( FT_Module module ); /* CFF_Driver */ variable
177 cff_driver_done( FT_Module module ); /* CFF_Driver */ variable

Completed in 6571 milliseconds

1234567891011>>