HomeSort by relevance Sort by last modified time
    Searched refs:Module (Results 551 - 575 of 826) sorted by null

<<21222324252627282930>>

  /external/chromium_org/remoting/client/plugin/
chromoting_instance.h 53 class Module;
pepper_input_handler.cc 31 pp::Module::Get()->GetBrowserInterface(
  /external/chromium_org/tools/generate_stubs/
generate_stubs.py 212 // implementations after the module has been loaded.
215 # Template for the module initialization check function. This template
217 # verify the module's initialization.
237 dlsym(module, "%(name)s"));
242 # Template for module initializer function start and end. This template takes
244 MODULE_INITIALIZE_START = """// Initializes the module stubs.
245 void %s(void* module) {
251 # Template for module uninitializer function start and end. This template
254 """// Uninitialize the module stubs. Reset pointers to NULL.
287 // If a module is missing, we fail
    [all...]
  /external/clang/include/clang/Analysis/Analyses/
Dominators.h 22 #include "llvm/IR/Module.h"
150 virtual void print(raw_ostream &OS, const llvm::Module* M= 0) const {
  /external/clang/include/clang/Serialization/
Module.h 1 //===--- Module.h - Module description --------------------------*- C++ -*-===//
10 // This file defines the Module class, which describes a module that has
30 class Module;
39 /// \brief Specifies the kind of module that has been loaded.
41 MK_Module, ///< File is a module proper.
87 /// \brief Information about a module that has been loaded by the ASTReader.
89 /// Each instance of the Module class corresponds to a single AST file, which
90 /// may be a precompiled header, precompiled preamble, a module, or an AST fil
    [all...]
  /external/clang/lib/CodeGen/
BackendUtil.cpp 22 #include "llvm/IR/Module.h"
49 Module *TheModule;
112 Module *M)
214 // internal module before any optimization.
304 // Set up the per-module pass manager.
561 for (Module::iterator I = TheModule->begin(),
569 PrettyStackTraceString CrashInfo("Per-module optimization passes");
583 Module *M,
CGBlocks.h 28 #include "llvm/IR/Module.h"
31 class Module;
  /external/llvm/include/llvm/Analysis/
DominanceFrontier.h 145 virtual void print(raw_ostream &OS, const Module* = 0) const;
  /external/llvm/include/llvm/CodeGen/
MachineDominators.h 171 virtual void print(raw_ostream &OS, const Module*) const;
  /external/llvm/include/llvm/
DebugInfo.h 30 class Module;
679 /// \brief An imported module (C++ using directive or similar).
704 NamedMDNode *getOrInsertFnSpecificMDNode(Module &M, DISubprogram SP);
708 NamedMDNode *getFnSpecificMDNode(const Module &M, DISubprogram SP);
720 /// DebugInfoFinder tries to list all debug info MDNodes used in a module. To
728 /// processModule - Process entire module and collect debug info
730 void processModule(const Module &M);
  /external/llvm/include/llvm/IR/
InlineAsm.h 27 class Module;
  /external/llvm/lib/Analysis/
DominanceFrontier.cpp 113 void DominanceFrontierBase::print(raw_ostream &OS, const Module* ) const {
  /external/llvm/lib/CodeGen/AsmPrinter/
OcamlGCPrinter.cpp 19 #include "llvm/IR/Module.h"
47 static void EmitCamlGlobal(const Module &M, AsmPrinter &AP, const char *Id) {
57 // Capitalize the first letter of the module name.
87 /// } caml${module}__frametable;
  /external/llvm/lib/ExecutionEngine/JIT/
JIT.cpp 206 /// of the module.
207 ExecutionEngine *JIT::createJIT(Module *M,
270 JIT::JIT(Module *M, TargetMachine &tm, TargetJITInfo &tji,
331 /// addModule - Add a new Module to the JIT. If we previously removed the last
332 /// Module, we need re-initialize jitstate with a valid Module.
333 void JIT::addModule(Module *M) {
357 /// removeModule - If we are removing the last Module, invalidate the jitstate
358 /// since the PassManager it contains references a released Module.
359 bool JIT::removeModule(Module *M)
    [all...]
  /external/llvm/lib/IR/
LLVMContextImpl.cpp 17 #include "llvm/IR/Module.h"
66 // duplicate it into a temporary vector, because the destructor of Module
69 std::vector<Module*> Modules(OwnedModules.begin(), OwnedModules.end());
Pass.cpp 108 void Pass::print(raw_ostream &O,const Module*) const {
  /external/llvm/lib/Target/Hexagon/
HexagonAsmPrinter.h 159 void EmitStartOfAsmFile(Module &M);
  /external/llvm/lib/Target/NVPTX/
NVPTXUtilities.cpp 18 #include "llvm/IR/Module.h"
33 typedef std::map<const Module *, global_val_annot_t> per_module_annot_t;
62 static void cacheAnnotationFromMD(const Module *m, const GlobalValue *gv) {
95 const Module *m = gv->getParent();
108 const Module *m = gv->getParent();
  /external/llvm/lib/Target/X86/
X86AsmPrinter.cpp 29 #include "llvm/IR/Module.h"
518 void X86AsmPrinter::EmitStartOfAsmFile(Module &M) {
524 void X86AsmPrinter::EmitEndOfAsmFile(Module &M) {
646 for (Module::const_iterator I = M.begin(), E = M.end(); I != E; ++I)
650 for (Module::const_global_iterator I = M.global_begin(),
  /external/llvm/lib/Transforms/Instrumentation/
ThreadSanitizer.cpp 37 #include "llvm/IR/Module.h"
77 /// ThreadSanitizer: instrument the code in module to find races.
86 bool doInitialization(Module &M);
90 void initializeCallbacks(Module &M);
143 void ThreadSanitizer::initializeCallbacks(Module &M) {
226 bool ThreadSanitizer::doInitialization(Module &M) {
232 // Always insert a call to __tsan_init into the module's CTORs.
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 1 //===-- DifferenceEngine.cpp - Structural function/module comparison ------===//
11 // engine, which structurally compares global values within a module.
24 #include "llvm/IR/Module.h"
653 void DifferenceEngine::diff(Module *L, Module *R) {
657 for (Module::iterator I = L->begin(), E = L->end(); I != E; ++I) {
664 logf("function %l exists only in left module") << LFn;
667 for (Module::iterator I = R->begin(), E = R->end(); I != E; ++I) {
670 logf("function %r exists only in right module") << RFn;
  /external/llvm/tools/llvm-dis/
llvm-dis.cpp 24 #include "llvm/IR/Module.h"
126 OwningPtr<Module> M;
  /external/llvm/tools/llvm-jitlistener/
llvm-jitlistener.cpp 11 // interface. It registers a mock JIT event listener, generates a module from
24 #include "llvm/IR/Module.h"
164 Module *TheModule; // Owned by ExecutionEngine.
  /external/llvm/unittests/IR/
MetadataTest.cpp 14 #include "llvm/IR/Module.h"
140 Module M("MyModule", Context);
  /external/webrtc/src/modules/audio_processing/interface/
audio_processing.h 17 #include "module.h"
30 // The Audio Processing Module (APM) provides a collection of voice processing
108 class AudioProcessing : public Module {
243 // Inherited from Module.

Completed in 743 milliseconds

<<21222324252627282930>>