Searched defs:Module (Results 1 - 16 of 16) 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.h9 class Module class in namespace:webrtc
28 virtual ~Module() {}
/external/clang/lib/Serialization/
H A DModule.cpp1 //===--- Module.cpp - Module description ------------------------*- C++ -*-===//
10 // This file implements the Module class, which describes a module that has
14 #include "clang/Serialization/Module.h"
23 Module::Module(ModuleKind Kind) function in class:Module
41 Module::~Module() {
70 void Module::dump() {
H A DASTReaderDecl.cpp35 Module &F;
95 ASTDeclReader(ASTReader &Reader, Module &F,
105 void UpdateDecl(Decl *D, Module &Module,
1372 void ASTReader::ReadAttributes(Module &F, AttrVec &Attrs,
1435 Module *M = I->second;
1441 ContinuousRangeMap<uint64_t, Module*, 4>::iterator I
1448 uint64_t ASTReader::getGlobalBitOffset(Module &M, uint32_t LocalOffset) {
1771 Module *F = I->first;
1806 static bool visit(Module
1915 UpdateDecl(Decl *D, Module &Module, const RecordData &Record) argument
[all...]
/external/llvm/include/llvm/
H A DDefaultPasses.h69 Module, enumerator in enum:llvm::StandardPass::StandardSet
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.
37 : public SymbolTableListTraits<Function, Module> {
55 : public SymbolTableListTraits<GlobalVariable, Module> {
70 : public SymbolTableListTraits<GlobalAlias, Module> {
102 /// A Module instance is used to store all the information related to an
113 class Module { class in namespace:llvm
172 std::string TargetTriple; ///< Platform target triple Module compiled on
182 /// The Module constructo
[all...]
/external/llvm/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...]
/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/Serialization/
H A DModule.h1 //===--- Module.h - Module description --------------------------*- C++ -*-===//
10 // This file defines the Module class, which describes a module that has
52 /// Each instance of the Module class corresponds to a single AST file, which
57 class Module { class in namespace:clang::serialization
59 Module(ModuleKind Kind);
60 ~Module();
302 llvm::SetVector<Module *> ImportedBy;
305 llvm::SetVector<Module *> Imports;
H A DASTReader.h19 #include "clang/Serialization/Module.h"
209 typedef serialization::Module Module; typedef in class:clang::ASTReader
246 ContinuousRangeMap<uint64_t, Module*, 4> GlobalBitOffsetsMap;
249 ContinuousRangeMap<unsigned, Module*, 64> GlobalSLocEntryMap;
251 typedef ContinuousRangeMap<unsigned, Module*, 64> GlobalSLocOffsetMapType;
263 typedef ContinuousRangeMap<serialization::TypeID, Module *, 4>
277 typedef ContinuousRangeMap<serialization::DeclID, Module *, 4>
284 typedef std::pair<Module *, uint64_t> FileOffset;
294 std::pair<Module *, uint64_
1171 ReadSourceLocation(Module &Module, unsigned Raw) const argument
1180 ReadSourceLocation(Module &Module, const RecordData &Record, unsigned& Idx) argument
[all...]
/external/clang/lib/Sema/
H A DSemaDeclAttr.cpp991 StringRef Module = AL.getParameterName()->getName(); local
994 if (Module.startswith("__") && Module.endswith("__"))
995 Module = Module.substr(2, Module.size() - 4);
1089 D->addAttr(::new (S.Context) OwnershipAttr(AL.getLoc(), S.Context, K, Module,
H A DSemaDecl.cpp9796 ModuleKey Module = PP.getModuleLoader().loadModule(ImportLoc, local
9798 if (!Module)
9802 (void)Module;
/external/llvm/bindings/ocaml/llvm/
H A Dllvm.ml1177 type any = [ `Module | `Function ] Constructor in type:PassManager/any
1178 external create : unit -> [ `Module ] t = "llvm_passmanager_create"
1181 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 --------===//
31 #include "llvm/Module.h"
110 llvm::Module &TheModule;
723 TheModule.getPointerSize() == llvm::Module::Pointer32 ? Int32Ty : Int64Ty;
2279 llvm::Value *Module = MakeGlobal(ModuleTy, Elements); local
2296 Builder.CreateCall(Register, Module);
/external/sqlite/dist/
H A Dsqlite3.c2744 #define SQLITE_CREATE_VTABLE 29 /* Table Name Module Name */
2745 #define SQLITE_DROP_VTABLE 30 /* Table Name Module Name */
5176 ** ^Module names must be registered before
5208 void(*xDestroy)(void*) /* Module destructor function */
7387 typedef struct Module Module; typedef in typeref:struct:Module
9212 struct Module { struct
9216 void (*xDestroy)(void *); /* Module destructor function */
9361 Module *pMod; /* Pointer to module implementation */
12038 const sqlite3_module *pModule; /* Module fo
[all...]

Completed in 690 milliseconds