Searched refs:module (Results 151 - 175 of 1286) sorted by relevance

1234567891011>>

/external/chromium_org/chrome_elf/
H A Dchrome_elf_main.cc17 BOOL APIENTRY DllMain(HMODULE module, DWORD reason, LPVOID reserved) { argument
/external/chromium_org/mojo/public/tools/bindings/pylib/mojom/generate/
H A Ddata_tests.py58 module = data.ModuleFromData(test_dict)
59 return test_support.TestTestModule(module)
63 module = test_support.BuildTestModule()
64 d = data.ModuleToData(module)
/external/chromium_org/ppapi/api/
H A Dppp.idl7 * This file defines three functions that your module must
38 * PPP_InitializeModule() is the entry point for a module and is called by the
39 * browser when your module loads. Your code must implement this function.
41 * Failure indicates to the browser that this module can not be used. In this
42 * case, the module will be unloaded and ShutdownModule will NOT be called.
44 * @param[in] module A handle to your module. Generally you should store this
52 PP_EXPORT int32_t PPP_InitializeModule(PP_Module module,
64 * PPP_ShutdownModule() is <strong>sometimes</strong> called before the module
70 * Since your module run
[all...]
/external/chromium_org/third_party/codesighs/
H A Dnm_wrap_osx.pl59 my($module) = $1;
67 warn "Encountered unknown absolutely addressed symbol '$symbol' in $module";
92 $prev_module = $module;
/external/chromium_org/third_party/cython/src/
H A Dsetup.py128 for module in compiled_modules:
129 source_file = os.path.join(source_root, *module.split('.'))
137 if '.refnanny' in module:
142 Extension(module, sources = [pyx_source_file],
156 already_imported = [ module for module in sys.modules
157 if module == 'Cython' or module.startswith('Cython.') ]
159 for module in already_imported:
160 keep_alive(sys.modules[module])
[all...]
/external/chromium_org/third_party/npapi/npspy/extern/nspr/
H A Dprlog.h102 ** PR_LOG(<module>, <level>, (<printfString>, <args>*));
104 ** Where <module> is the address of a PRLogModuleInfo structure, and
130 ** defined and initialized in prinit.c. See this module for ideas on
149 ** One of these structures is created for each module that uses logging.
150 ** "name" is the name of the module
151 ** "level" is the debugging level selected for that module
160 ** Create a new log module.
201 ** "module" is the address of a PRLogModuleInfo structure
216 #define PR_LOG_TEST(module,level) 0
217 #define PR_LOG(module,leve
[all...]
/external/chromium_org/v8/test/mjsunit/harmony/regress/
H A Dregress-343928.js16 module B {
/external/lzma/CPP/Windows/
H A DDLL.h12 #define My_GetProcAddress(module, proceName) GetProcAddressA(module, proceName)
14 #define My_GetProcAddress(module, proceName) ::GetProcAddress(module, proceName)
/external/chromium-trace/trace-viewer/build/
H A Dgenerate_standalone_timeline_view.py65 for module in load_sequence:
66 for style_sheet in module.style_sheets:
98 for module in load_sequence:
99 for dependent_raw_script_name in module.dependent_raw_script_names:
102 js_chunks.append( "window.FLATTENED['%s'] = true;\n" % module.name)
114 for module in load_sequence:
115 js_chunks.append(module.contents)
/external/chromium_org/content/renderer/pepper/
H A Dpepper_plugin_registry.cc51 // Check the instances for the module to see if they've all been Delete()d.
73 PluginModule* module) {
75 live_modules_[path] = module;
111 // the initialized module, it will still try to unregister itself in its
118 scoped_refptr<PluginModule> module = local
123 AddLiveModule(current.path, module.get());
125 if (!module->InitAsInternalPlugin(current.internal_entry_points)) {
126 DVLOG(1) << "Failed to load pepper module: " << current.path.value();
131 if (!module->InitAsLibrary(current.path)) {
132 DVLOG(1) << "Failed to load pepper module
72 AddLiveModule(const base::FilePath& path, PluginModule* module) argument
[all...]
H A Drenderer_ppapi_host_impl.cc41 PluginModule* module,
44 : module_(module),
57 PluginModule* module,
59 : module_(module), dispatcher_(NULL), is_external_plugin_host_(false) {
78 PluginModule* module,
81 DCHECK(!module->renderer_ppapi_host());
83 new RendererPpapiHostImpl(module, dispatcher, permissions);
86 module->SetRendererPpapiHost(scoped_ptr<RendererPpapiHostImpl>(result));
93 PluginModule* module,
95 DCHECK(!module
40 RendererPpapiHostImpl( PluginModule* module, ppapi::proxy::HostDispatcher* dispatcher, const ppapi::PpapiPermissions& permissions) argument
56 RendererPpapiHostImpl( PluginModule* module, const ppapi::PpapiPermissions& permissions) argument
77 CreateOnModuleForOutOfProcess( PluginModule* module, ppapi::proxy::HostDispatcher* dispatcher, const ppapi::PpapiPermissions& permissions) argument
92 CreateOnModuleForInProcess( PluginModule* module, const ppapi::PpapiPermissions& permissions) argument
[all...]
/external/chromium_org/third_party/webrtc/modules/utility/source/
H A Dprocess_thread_impl.cc11 #include "webrtc/modules/interface/module.h"
25 void ProcessThread::DestroyProcessThread(ProcessThread* module) argument
27 delete module;
88 int32_t ProcessThreadImpl::RegisterModule(Module* module) argument
92 // Only allow module to be registered once.
95 if(module == *iter)
101 _modules.push_front(module);
104 // waiting time. The waiting time for the just registered module may be
110 int32_t ProcessThreadImpl::DeRegisterModule(const Module* module) argument
115 if(module
[all...]
/external/chromium_org/base/win/
H A Dpe_image.h51 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) {} argument
83 explicit PEImage(const void* module) { argument
84 module_ = reinterpret_cast<HMODULE>(const_cast<void*>(module));
88 HMODULE module() cons
251 inline HMODULE PEImage::module() const { function in class:base::win::PEImage
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/
H A Dmodular_build.py56 module = self.modules[name]
57 skipped_files = set(module.get('skip_compilation', []))
58 for script in module.get('scripts', []):
65 module = self.modules[name]
66 skipped_files = set(module.get('skip_compilation', []))
67 for script in module.get('scripts', []):
83 bail_error('Dependency cycle found at module "%s"' % name)
102 bail_error('Unknown module "%s" encountered in dependencies of "%s"' % (failure[1], failure[0]))
133 for (module_name, module) in application_descriptor.items():
135 bail_error('Duplicate definition of module "
[all...]
/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/mesa3d/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/smack/src/org/apache/harmony/javax/security/auth/login/
H A DLoginContext.java266 for (Module module : modules) {
268 // if a module fails during Class.forName(), then it breaks overall
270 module.create(subject, callbackHandler, sharedState);
272 if (module.module.login()) {
273 ++total[module.getFlag()];
274 ++logged[module.getFlag()];
275 if (module.getFlag() == SUFFICIENT) {
283 if (module.klass == null) {
287 * number - this will look like a failed REQUIRED module
492 LoginModule module; field in class:LoginContext.Module
[all...]
/external/chromium_org/third_party/libxml/src/
H A Dgentest.py29 # defines for each module
307 def add_missing_functions(name, module):
312 list = missing_functions[module]
315 missing_functions[module] = [name]
321 def type_convert(str, name, info, module, function, pos):
342 if module == 'nanoftp' and name == 'ctx':
348 if module == 'nanohttp' and name == 'ctx':
392 if res == 'FILE_ptr' and module == 'debugXML':
395 if module == 'parser' or module
540 module = enum.xpathEval('string(@file)') variable
[all...]
/external/apache-http/src/org/apache/http/util/
H A DVersionInfo.java2 * $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
71 public final static String PROPERTY_MODULE = "info.module";
79 /** The module from the version info. */
96 * @param module the module, or <code>null</code>
101 protected VersionInfo(String pckg, String module, argument
109 infoModule = (module != null) ? module : UNAVAILABLE;
118 * The package name identifies the module o
[all...]
/external/chromium_org/v8/test/mjsunit/harmony/
H A Dmodule-linking.js30 // Test basic module linking and initialization.
34 module R {
142 // Initialize nested module.
143 export module M {
167 // Initialize non-exported module.
168 module MM {
180 export module RR = R
183 // Initialize sibling module that was forward-used.
184 module F {
205 // Define recursive module alia
[all...]
/external/lldb/examples/python/
H A Dtypes.py47 print "error: couldn't locate the 'lldb' module, please set PYTHONPATH correctly"
68 specified with the --module option, only the target's main executable will be
84 parser.add_option('-m', '--module', action='append', type='string', metavar='MODULE', dest='modules', help='Specify one or more modules which will be used to verify the types.', default=[])
192 module = target.modules[0]
193 if module:
194 modules.append(module)
197 module = lldb.target.module[module_name]
198 if module:
199 modules.append(module)
[all...]
/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DImportExport.c22 PyObject *module = 0; local
56 module = PyObject_CallFunctionObjArgs(py_import,
60 module = PyImport_ImportModuleLevelObject(
63 if (!module) {
72 if (!module) {
77 module = PyObject_CallFunctionObjArgs(py_import,
81 module = PyImport_ImportModuleLevelObject(
91 module = PyObject_CallFunctionObjArgs(py_import,
100 return module;
106 static PyObject* __Pyx_ImportFrom(PyObject* module, PyObjec
111 __Pyx_ImportFrom(PyObject* module, PyObject* name) argument
319 __Pyx_ImportFunction(PyObject *module, const char *funcname, void (**f)(void), const char *sig) argument
424 __Pyx_ImportVoidPtr(PyObject *module, const char *name, void **p, const char *sig) argument
[all...]
/external/antlr/antlr-3.4/runtime/Perl5/lib/ANTLR/
H A DRuntime.pm33 A full description of the module and its features.
39 A separate section listing the public components of the module's interface.
41 that may be called on objects belonging to the classes that the module provides.
44 In an object-oriented module, this section should begin with a sentence of the
51 A list of every error and warning message that the module can generate
59 A full explanation of any configuration system(s) used by the module,
68 A list of all the other modules that this module relies upon, including any
70 part of the standard Perl distribution, part of the module's distribution,
76 A list of any modules that this module cannot be used in conjunction with.
85 A list of known problems with the module, togethe
[all...]
/external/lldb/test/unittest2/
H A Dmain.py75 def __init__(self, module='__main__', defaultTest=None,
79 if isinstance(module, basestring):
80 self.module = __import__(module)
81 for part in module.split('.')[1:]:
82 self.module = getattr(self.module, part)
84 self.module = module
143 # createTests will load tests from self.module
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/modes/
H A Dast-builder.rb6 module ANTLR3
7 module ASTBuilder

Completed in 1137 milliseconds

1234567891011>>