Searched defs:Module (Results 1 - 25 of 25) sorted by relevance

/external/webkit/Source/WebKit2/Platform/
H A DModule.cpp27 #include "Module.h"
31 Module::Module(const String& path) function in class:WebKit::Module
42 Module::~Module()
H A DModule.h46 class Module { class in namespace:WebKit
47 WTF_MAKE_NONCOPYABLE(Module);
49 Module(const String& path);
50 ~Module();
81 template<typename FunctionType> FunctionType Module::functionPointer(const char* functionName) const
/external/webrtc/src/modules/interface/
H A Dmodule.h20 class Module { class in namespace:webrtc
33 virtual ~Module() {}
37 class RefCountedModule : public Module {
/external/clang/include/clang/Lex/
H A DModuleLoader.h1 //===--- ModuleLoader.h - Module Loader Interface ---------------*- C++ -*-===//
17 #include "clang/Basic/Module.h"
25 class Module;
33 llvm::PointerIntPair<Module *, 1, bool> Storage;
38 ModuleLoadResult(Module *module, bool missingExpected)
41 operator Module *() const { return Storage.getPointer(); }
80 Module::NameVisibilityKind Visibility,
84 virtual void makeModuleVisible(Module *Mod,
85 Module::NameVisibilityKind Visibility,
/external/clang/lib/Serialization/
H A DGeneratePCH.cpp29 clang::Module *Module,
32 : PP(PP), OutputFile(OutputFile), Module(Module),
46 Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot);
27 PCHGenerator(const Preprocessor &PP, StringRef OutputFile, clang::Module *Module, StringRef isysroot, raw_ostream *OS) argument
/external/clang/lib/Basic/
H A DModule.cpp1 //===--- Module.cpp - Describe a module -----------------------------------===//
10 // This file defines the Module class, which describes a module in the source
14 #include "clang/Basic/Module.h"
25 Module::Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent, function in class:Module
44 Module::~Module() {
69 Module::isAvailable(const LangOptions &LangOpts, const TargetInfo &Target,
74 for (const Module *Curren
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/lib/antlr3/test/
H A Dcore-extensions.rb138 class Module class
148 # See also Module#basename.
/external/chromium-trace/trace-viewer/build/
H A Dparse_deps.py23 [Module('baz'), Module('bar'), Module('foo')]
32 The dependency resolution code in Module.resolve will find bits of code in the
35 a Module('foo').
158 class Module(object): class in inherits:object
184 return "Module(%s)" % self.name
218 module = Module(name)
262 raise Exception("Module.name must be set for decl_required to be false.")
311 """Given a list of starting javascript files, figure out all the Module
[all...]
/external/llvm/tools/llvm-symbolizer/
H A DLLVMSymbolize.h79 OwningPtr<ObjectFile> Module; member in class:llvm::symbolize::ModuleInfo
/external/llvm/lib/IR/
H A DModule.cpp1 //===-- Module.cpp - Implement the Module class ---------------------------===//
10 // This file implements the Module class for the IR library.
14 #include "llvm/IR/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...]
/external/clang/include/clang/Frontend/
H A DFrontendActions.h19 class Module;
101 clang::Module *Module; member in class:clang::GenerateModuleAction
/external/clang/lib/Frontend/
H A DFrontendActions.cpp130 return new PCHGenerator(CI.getPreprocessor(), OutputFile, Module,
160 /// \param Module The module we're collecting includes from.
167 clang::Module *Module,
170 if (!Module->isAvailable())
174 for (unsigned I = 0, N = Module->Headers.size(); I != N; ++I) {
175 const FileEntry *Header = Module->Headers[I];
176 Module->addTopHeader(Header);
180 if (const FileEntry *UmbrellaHeader = Module->getUmbrellaHeader()) {
181 Module
164 collectModuleHeaderIncludes(const LangOptions &LangOpts, FileManager &FileMgr, ModuleMap &ModMap, clang::Module *Module, SmallVectorImpl<char> &Includes) argument
[all...]
H A DCompilerInstance.cpp767 Module *Module,
808 Invocation->getLangOpts()->CurrentModule = Module->getTopLevelModuleName();
832 = ModMap.getContainingModuleMapFile(Module)) {
838 TempModuleMapFileName = Module->Name;
851 Module->print(OS);
861 Invocation->getModuleHash() && "Module hash mismatch!");
878 SourceMgr.pushModuleBuildStack(Module->getTopLevelModuleName(),
910 Module::NameVisibilityKind Visibility,
927 clang::Module *Modul local
765 compileModule(CompilerInstance &ImportingInstance, SourceLocation ImportLoc, Module *Module, StringRef ModuleFileName) argument
[all...]
/external/chromium/chrome/browser/
H A Denumerate_modules_model_win.h49 // Module is a suspected bad module.
51 // Module is a bad bad dog.
66 struct Module { struct in class:ModuleEnumerator
93 typedef std::vector<Module> ModulesVector;
106 // struct. Module information needs to be normalized before comparing against
112 static void NormalizeModule(Module* module);
115 static ModuleStatus Match(const Module& module,
162 void PopulateModuleInformation(Module* module);
167 void AddToListWithoutDuplicating(const Module&);
180 void CollapsePath(Module* modul
[all...]
/external/clang/include/clang/Basic/
H A DModule.h1 //===--- Module.h - Describe a module ---------------------------*- C++ -*-===//
11 /// \brief Defines the clang::Module class, which describes a module in the
45 class Module { class in namespace:clang
55 Module *Parent;
62 std::vector<Module *> SubModules;
143 SmallVector<Module *, 2> Imports;
149 typedef llvm::PointerIntPair<Module *, 1, bool> ExportDecl;
194 explicit Module(StringRef Name, SourceLocation DefinitionLoc, function in class:clang::Module
203 Module(StringRef Name, SourceLocation DefinitionLoc, Module *Paren
[all...]
/external/smack/src/org/apache/harmony/javax/security/auth/login/
H A DLoginContext.java83 private Module[] modules;
168 modules = new Module[entries.length];
170 modules[i] = new Module(entries[i]);
266 for (Module module : modules) {
337 for (Module module : modules) {
375 for (Module module : modules) {
425 for (Module module : modules) {
483 private final class Module { class in class:LoginContext
497 Module(AppConfigurationEntry entry) { method in class:LoginContext.Module
/external/clang/lib/Lex/
H A DHeaderSearch.cpp112 std::string HeaderSearch::getModuleFileName(Module *Module) { argument
119 llvm::sys::path::append(Result, Module->getTopLevelModule()->Name + ".pcm");
134 Module *HeaderSearch::lookupModule(StringRef ModuleName, bool AllowSearch) {
136 Module *Module = ModMap.findModule(ModuleName); local
137 if (Module || !AllowSearch)
138 return Module;
152 Module = loadFrameworkModule(ModuleName, FrameworkDir, IsSystem);
153 if (Module)
[all...]
/external/llvm/include/llvm/IR/
H A DModule.h1 //===-- llvm/Module.h - C++ class to represent a VM module ------*- C++ -*-===//
11 /// Module.h This file contains the declarations for the Module class.
35 : public SymbolTableListTraits<Function, Module> {
53 : public SymbolTableListTraits<GlobalVariable, Module> {
68 : public SymbolTableListTraits<GlobalAlias, Module> {
100 /// A Module instance is used to store all the information related to an
111 class Module { class in namespace:llvm
205 std::string TargetTriple; ///< Platform target triple Module compiled on
215 /// The Module constructo
[all...]
/external/clang/include/clang/Serialization/
H A DASTWriter.h58 class Module;
113 Module *WritingModule;
407 llvm::DenseMap<Module *, unsigned> SubmoduleIDs;
410 unsigned getSubmoduleID(Module *Mod);
429 void WriteSubmodules(Module *WritingModule);
474 Module *WritingModule);
494 Module *WritingModule, StringRef isysroot,
649 unsigned getExistingSubmoduleID(Module *Mod) const;
708 void ModuleRead(serialization::SubmoduleID ID, Module *Mod);
735 clang::Module *Modul member in class:clang::PCHGenerator
[all...]
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml1178 type any = [ `Module | `Function ] Constructor in type:PassManager/any
1179 external create : unit -> [ `Module ] t = "llvm_passmanager_create"
1182 external run_module : llmodule -> [ `Module ] t -> bool
/external/clang/lib/CodeGen/
H A DCGObjCGNU.cpp1 //===------- CGObjCGNU.cpp - Emit LLVM Code from ASTs for a Module --------===//
33 #include "llvm/IR/Module.h"
105 llvm::Module &TheModule;
927 TheModule.getPointerSize() == llvm::Module::Pointer32 ? Int32Ty : Int64Ty;
1977 (TheModule.getPointerSize() == llvm::Module::Pointer32) ? 32 : 64;
2537 llvm::Value *Module = MakeGlobal(ModuleTy, Elements); local
2554 Builder.CreateCall(Register, Module);
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp1343 StringRef Module = AL.getParameterName()->getName(); local
1346 if (Module.startswith("__") && Module.endswith("__"))
1347 Module = Module.substr(2, Module.size() - 4);
1440 OwnershipAttr(AL.getLoc(), S.Context, K, Module, start, size,
/external/v8/src/
H A Dast.h126 class Module;
530 Module* module() const { return module_; }
539 Module* module,
546 Module* module_;
554 Module* module() const { return module_; }
563 Module* module,
570 Module* module_;
592 class Module: public AstNode { class in namespace:v8::internal
597 Module() : interface_(Interface::NewModule()) {} function in class:v8::internal::Module
598 explicit Module(Interfac function in class:v8::internal::Module
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c2937 #define SQLITE_CREATE_VTABLE 29 /* Table Name Module Name */
2938 #define SQLITE_DROP_VTABLE 30 /* Table Name Module Name */
5631 ** ^Module names must be registered before
5663 void(*xDestroy)(void*) /* Module destructor function */
8146 typedef struct Module Module; typedef in typeref:struct:Module
9996 struct Module { struct
10000 void (*xDestroy)(void *); /* Module destructor function */
10136 Module *pMod; /* Pointer to module implementation */
12894 const sqlite3_module *pModule; /* Module fo
[all...]
/external/sqlite/dist/
H A Dsqlite3.c2937 #define SQLITE_CREATE_VTABLE 29 /* Table Name Module Name */
2938 #define SQLITE_DROP_VTABLE 30 /* Table Name Module Name */
5631 ** ^Module names must be registered before
5663 void(*xDestroy)(void*) /* Module destructor function */
8146 typedef struct Module Module; typedef in typeref:struct:Module
9996 struct Module { struct
10000 void (*xDestroy)(void *); /* Module destructor function */
10136 Module *pMod; /* Pointer to module implementation */
12894 const sqlite3_module *pModule; /* Module fo
[all...]

Completed in 824 milliseconds