Searched refs:Module (Results 51 - 75 of 716) sorted by relevance

1234567891011>>

/macosx-10.10/WebKit2-7600.1.25/Platform/cf/
H A DModuleCF.cpp27 #include "Module.h"
31 bool Module::load()
48 void Module::unload()
58 // See the comment in Module.h for why we leak the bundle here.
63 void* Module::platformFunctionPointer(const char* functionName) const
71 String Module::bundleIdentifier() const
77 CFBundleRefNum Module::bundleResourceMap()
/macosx-10.10/llvmCore-3425.0.34/tools/bugpoint/
H A DBugDriver.h28 class Module;
50 Module *Program; // The raw program, linked together
134 bool runPasses(Module *M) const {
138 Module *getProgram() const { return Program; }
142 Module *swapProgramIn(Module *M) {
143 Module *OldProgram = Program;
161 void setNewProgram(Module *M);
167 void compileProgram(Module *M, std::string *Error) const;
172 std::string executeProgram(const Module *Progra
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/AsmParser/
H A DParser.cpp16 #include "llvm/Module.h"
25 Module *llvm::ParseAssembly(MemoryBuffer *F,
26 Module *M,
37 OwningPtr<Module> M2(new Module(F->getBufferIdentifier(), Context));
43 Module *llvm::ParseAssemblyFile(const std::string &Filename, SMDiagnostic &Err,
55 Module *llvm::ParseAssemblyString(const char *AsmString, Module *M,
/macosx-10.10/CPANInternal-159.1/Class-C3-XS-0.13/inc/Module/Install/
H A DBase.pm2 package Module::Install::Base;
48 Module::Install::Base::FakeAdmin->new;
59 package Module::Install::Base::FakeAdmin;
/macosx-10.10/CPANInternal-159.1/Class-Trigger-0.14/inc/Module/Install/
H A DBase.pm2 package Module::Install::Base;
48 Module::Install::Base::FakeAdmin->new;
59 package Module::Install::Base::FakeAdmin;
/macosx-10.10/CPANInternal-159.1/Pod-ProjectDocs-0.40/inc/Module/Install/
H A DBase.pm2 package Module::Install::Base;
48 Module::Install::Base::FakeAdmin->new;
59 package Module::Install::Base::FakeAdmin;
/macosx-10.10/CPANInternal-159.1/Pod-ProjectDocs-0.40/t/sample/lib/Sample/
H A DProject.pm17 I<foo>. See L</SYNOPSIS> for its usage and L<Sample::Module/SYNOPSIS> for Sample::Module.
21 L<perl>, L<Sample::Module>, L<Pod::ProjectDocs>, L<http://www.perl.org/>, L<Perl POD Syntax|perlpod>
/macosx-10.10/llvmCore-3425.0.34/lib/VMCore/
H A DModule.cpp1 //===-- Module.cpp - Implement the Module class ---------------------------===//
10 // This file implements the Module class for the VMCore library.
14 #include "llvm/Module.h"
37 template class llvm::SymbolTableListTraits<Function, Module>;
38 template class llvm::SymbolTableListTraits<GlobalVariable, Module>;
39 template class llvm::SymbolTableListTraits<GlobalAlias, Module>;
42 // Primitive Module methods.
45 Module::Module(StringRe function in class:Module
[all...]
/macosx-10.10/CPAN-56/Modules/IO-Digest-0.10/
H A DMakefile7 ed - $(DIR)/inc/Module/Install/AutoInstall.pm < $(MYSRC)/inc_Module_Install_AutoInstall.pm.ed
/macosx-10.10/CPAN-56/Modules/PerlIO-via-symlink-0.05/
H A DMakefile7 ed - $(DIR)/inc/Module/Install/AutoInstall.pm < $(MYSRC)/inc_Module_Install_AutoInstall.pm.ed
/macosx-10.10/CPANInternal-159.1/DateTime-Format-Pg-0.16007/inc/Module/Install/
H A DBase.pm2 package Module::Install::Base;
48 Module::Install::Base::FakeAdmin->new;
54 ! $_[0]->admin->isa('Module::Install::Base::FakeAdmin');
59 package Module::Install::Base::FakeAdmin;
63 $VERSION = $Module::Install::Base::VERSION;
/macosx-10.10/CPANInternal-159.1/DateTime-Format-W3CDTF-0.06/inc/Module/Install/
H A DBase.pm2 package Module::Install::Base;
48 Module::Install::Base::FakeAdmin->new;
54 ! $_[0]->admin->isa('Module::Install::Base::FakeAdmin');
59 package Module::Install::Base::FakeAdmin;
63 $VERSION = $Module::Install::Base::VERSION;
/macosx-10.10/CPANInternal-159.1/Test-use-ok-0.11/inc/Module/Install/
H A DBase.pm2 package Module::Install::Base;
48 Module::Install::Base::FakeAdmin->new;
54 ! $_[0]->admin->isa('Module::Install::Base::FakeAdmin');
59 package Module::Install::Base::FakeAdmin;
63 $VERSION = $Module::Install::Base::VERSION;
/macosx-10.10/llvmCore-3425.0.34/include/llvm/
H A DLLVMContext.h26 class Module;
98 void addModule(Module*);
101 void removeModule(Module*);
103 // Module needs access to the add/removeModule methods.
104 friend class Module;
H A DPassManager.h25 class Module;
59 bool run(Module &M);
71 /// but does not take ownership of, the specified Module.
72 explicit FunctionPassManager(Module *M);
98 Module *M;
H A DLinker.h1 //===- llvm/Linker.h - Module Linker Interface ------------------*- C++ -*-===//
24 class Module;
29 /// Module object which is the composite of the modules and libraries linked
30 /// into it. The composite Module can be retrieved via the getModule() method.
31 /// In this case the Linker still retains ownership of the Module. If the
32 /// releaseModule() method is used, the ownership of the Module is transferred
83 Linker(StringRef progname, Module* aModule, unsigned Flags = 0);
96 /// release the Module to the caller. The Linker retains ownership and will
97 /// destruct the Module when the Linker is destructed.
100 Module* getModul
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/IPO/
H A DStripDeadPrototypes.cpp20 #include "llvm/Module.h"
35 virtual bool runOnModule(Module &M);
44 bool StripDeadPrototypesPass::runOnModule(Module &M) {
48 for (Module::iterator I = M.begin(), E = M.end(); I != E; ) {
59 for (Module::global_iterator I = M.global_begin(), E = M.global_end();
/macosx-10.10/llvmCore-3425.0.34/include/llvm/Analysis/
H A DVerifier.h29 class Module;
61 const Module &M, ///< The module to be verified
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Instrumentation/
H A DBlackList.h34 class Module;
46 bool isIn(const Module &M);
H A DProfilingUtils.h24 class Module;
33 void InsertProfilingShutdownCall(Function *Callee, Module *Mod);
/macosx-10.10/CPANInternal-159.1/DateTime-Format-ISO8601-0.07/
H A DMakefile.PL1 # Note: this file was auto-generated by Module::Build::Compat version 0.35
3 unless (eval "use Module::Build::Compat 0.02; 1" ) {
4 print "This module requires Module::Build to install itself.\n";
8 (' Install Module::Build now from CPAN?', 'y');
11 die " *** Cannot install without Module::Build. Exiting ...\n";
21 CPAN::Shell->install('Module::Build::Compat');
22 CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate
23 or die "Couldn't install Module::Build, giving up.\n";
27 eval "use Module
[all...]
/macosx-10.10/CPANInternal-159.1/Perl4-CoreLibs-0.003/
H A DMakefile.PL1 # Note: this file was auto-generated by Module::Build::Compat version 0.340201
4 unless (eval "use Module::Build::Compat 0.02; 1" ) {
5 print "This module requires Module::Build to install itself.\n";
9 (' Install Module::Build now from CPAN?', 'y');
12 die " *** Cannot install without Module::Build. Exiting ...\n";
22 CPAN::Shell->install('Module::Build::Compat');
23 CPAN::Shell->expand("Module", "Module::Build::Compat")->uptodate
24 or die "Couldn't install Module::Build, giving up.\n";
28 eval "use Module
[all...]
/macosx-10.10/Security-57031.1.35/Security/libsecurity_cssm/lib/
H A Dmodule.cpp26 // module - CSSM Module objects
35 // Module object construction.
37 Module::Module(CssmManager *mgr, const MdsComponent &info, Plugin *plug) function in class:Module
53 // you get to delete a Module. A destructor is too precarious a place
56 Module::~Module()
61 bool Module::unload(const ModuleCallback &callback)
89 CSSM_HANDLE Module::attach(const CSSM_VERSION &version,
130 void Module
[all...]
/macosx-10.10/llvmCore-3425.0.34/lib/Transforms/Utils/
H A DCloneModule.cpp16 #include "llvm/Module.h"
27 Module *llvm::CloneModule(const Module *M) {
34 Module *llvm::CloneModule(const Module *M, ValueToValueMapTy &VMap) {
36 Module *New = new Module(M->getModuleIdentifier(), M->getContext());
42 for (Module::lib_iterator I = M->lib_begin(), E = M->lib_end(); I != E; ++I)
46 // new module. Here we add them to the VMap and to the new Module. We
49 for (Module
[all...]
/macosx-10.10/WebKit2-7600.1.25/Platform/
H A DModule.h47 class Module { class in namespace:WebKit
48 WTF_MAKE_NONCOPYABLE(Module);
50 Module(const String& path);
51 ~Module();
84 template<typename FunctionType> FunctionType Module::functionPointer(const char* functionName) const

Completed in 149 milliseconds

1234567891011>>