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

123

/external/clang/test/Modules/Inputs/ModuleMapLocations/Both_F.framework/Headers/
H A Da.h1 @import Module; // Don't cause redefinition error. variable
/external/webrtc/src/modules/interface/
H A Dmodule.h20 class Module { class in namespace:webrtc
33 virtual ~Module() {}
37 class RefCountedModule : public Module {
/external/v8/tools/profviz/
H A Dworker.js154 var arrc = Module["intArrayFromString"](plot_script, true);
159 function() { Module.run([input_file_name]); });
165 var Module = {
/external/llvm/bindings/python/llvm/tests/
H A Dtest_bitreader.py6 from ..core import Module namespace
H A Dtest_core.py5 from ..core import Module namespace
52 m = Module()
53 m = Module.CreateWithName("test-module")
56 m = Module.CreateWithName("test-module")
62 m = Module.CreateWithName("test-module")
68 m = Module.CreateWithName("test")
/external/google-breakpad/src/processor/
H A Dbasic_source_line_resolver_types.h74 class BasicSourceLineResolver::Module : public SourceLineResolverBase::Module { class in class:google_breakpad::BasicSourceLineResolver
76 explicit Module(const string &name) : name_(name), is_corrupt_(false) { } function in class:google_breakpad::BasicSourceLineResolver::Module
77 virtual ~Module() { }
156 // DWARF CFI stack walking data. The Module stores the initial rule sets
H A Dfast_source_line_resolver_types.h113 class FastSourceLineResolver::Module: public SourceLineResolverBase::Module { class in class:google_breakpad::FastSourceLineResolver
115 explicit Module(const string &name) : name_(name), is_corrupt_(false) { } function in class:google_breakpad::FastSourceLineResolver::Module
116 virtual ~Module() { }
143 // Number of serialized map components of Module.
164 // DWARF CFI stack walking data. The Module stores the initial rule sets
H A Dsource_line_resolver_base_types.h34 // In addition, Module is defined as a pure abstract class to be implemented by
118 class SourceLineResolverBase::Module { class in class:google_breakpad::SourceLineResolverBase
120 virtual ~Module() { };
H A Dsynth_minidump.h251 class Module: public Section { class in namespace:google_breakpad::SynthMinidump
256 Module(const Dump &dump,
262 const MDVSFixedFileInfo &version_info = Module::stock_version_info,
335 Dump &Add(Module *object); // append, record in module list
359 // Add(Module *) calls.
360 List<Module> module_list_;
H A Dsynth_minidump.cc248 Module::Module(const Dump &dump, function in class:google_breakpad::SynthMinidump::Module
280 const MDVSFixedFileInfo Module::stock_version_info = {
370 Dump &Dump::Add(Module *module) {
/external/clang/lib/Serialization/
H A DGeneratePCH.cpp29 clang::Module *Module,
32 : PP(PP), OutputFile(OutputFile), Module(Module),
53 Writer.WriteAST(*SemaPtr, OutputFile, Module, isysroot, hasErrors);
27 PCHGenerator(const Preprocessor &PP, StringRef OutputFile, clang::Module *Module, StringRef isysroot, raw_ostream *OS, bool AllowASTWithErrors) argument
/external/llvm/bindings/python/llvm/
H A Dbit_reader.py7 from .core import Module namespace
23 m = Module(module)
/external/clang/include/clang/Lex/
H A DModuleLoader.h1 //===--- ModuleLoader.h - Module Loader Interface ---------------*- C++ -*-===//
17 #include "clang/Basic/Module.h"
26 class Module;
34 llvm::PointerIntPair<Module *, 1, bool> Storage;
39 ModuleLoadResult(Module *module, bool missingExpected)
42 operator Module *() const { return Storage.getPointer(); }
96 Module::NameVisibilityKind Visibility,
100 virtual void makeModuleVisible(Module *Mod,
101 Module::NameVisibilityKind Visibility,
/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/tracing/third_party/tvcm/tvcm/
H A Dmodule.py5 """This module contains the Module class and other classes for resources.
7 The Module class represents a module in the trace viewer system. A module has
34 if isinstance(s, Module):
41 if isinstance(s, Module):
45 if isinstance(s, Module):
81 class Module(object): class in inherits:object
85 name: Module name, may include a namespace, e.g. 'tvcm.foo'.
90 In addition to these properties, a Module also contains lists of other
172 assert self.name, 'Module name must be set before dep resolution.'
173 assert self.filename, 'Module filenam
[all...]
/external/clang/include/clang/Frontend/
H A DFrontendActions.h19 class Module;
95 clang::Module *Module; member in class:clang::GenerateModuleAction
/external/deqp/scripts/
H A Dbuild_caselists.py34 class Module: class in inherits:
41 Module("dE-IT", "internal", "de-internal-tests"),
42 Module("dEQP-EGL", "egl", "deqp-egl"),
43 Module("dEQP-GLES2", "gles2", "deqp-gles2"),
44 Module("dEQP-GLES3", "gles3", "deqp-gles3"),
45 Module("dEQP-GLES31", "gles31", "deqp-gles31"),
/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
15 #include "clang/Basic/Module.h"
27 Module::Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent, function in class:Module
50 Module::~Module() {
78 bool Module::isAvailable(const LangOptions &LangOpts, const TargetInfo &Target,
84 for (const Module *Curren
[all...]
/external/google-breakpad/src/common/
H A Dmodule.cc32 // module.cc: Implement google_breakpad::Module. See module.h.
51 Module::Module(const string &name, const string &os, function in class:google_breakpad::Module
59 Module::~Module() {
74 void Module::SetLoadAddress(Address address) {
78 void Module::AddFunction(Function *function) {
110 // Free the duplicate that was not inserted because this Module
116 void Module::AddFunctions(vector<Function *>::iterator begin,
122 void Module
[all...]
H A Dmodule.h34 // module.h: Define google_breakpad::Module. A Module holds debugging
57 // A Module represents the contents of a module, and supports methods
61 class Module { class in namespace:google_breakpad
118 static bool CompareByAddress(const Module::Line &x, const Module::Line &y) {
181 Module(const string &name, const string &os, const string &architecture,
183 ~Module();
295 // Module header entries.
/external/lldb/include/lldb/Core/
H A DModule.h1 //===-- Module.h ------------------------------------------------*- C++ -*-===//
25 /// @class Module Module.h "lldb/Core/Module.h"
36 /// using the Module::GetObjectFile() is called. The debug symbols
38 /// requested using the Module::GetSymbolVendor() is called.
43 class Module : class in namespace:lldb_private
44 public std::enable_shared_from_this<Module>,
49 // This is handy because we might have Module objects that are in
58 static Module *
[all...]
/external/llvm/tools/llvm-lto/
H A Dllvm-lto.cpp129 std::unique_ptr<LTOModule> Module = local
131 if (!Module) {
139 for (int I = 0, E = Module->getSymbolCount(); I != E; ++I)
140 outs() << Module->getSymbolName(I) << "\n";
202 std::unique_ptr<LTOModule> Module(
210 LTOModule *LTOMod = Module.get();
216 CodeGen.setModule(Module.release());
217 } else if (!CodeGen.addModule(Module.get()))
/external/llvm/tools/llvm-symbolizer/
H A DLLVMSymbolize.h124 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"
40 template class llvm::SymbolTableListTraits<Function, Module>;
41 template class llvm::SymbolTableListTraits<GlobalVariable, Module>;
42 template class llvm::SymbolTableListTraits<GlobalAlias, Module>;
45 // Primitive Module methods.
48 Module::Module(StringRe function in class:Module
[all...]
/external/clang/lib/Frontend/
H A DFrontendActions.cpp127 Module, Sysroot, OS);
174 /// \param Module The module we're collecting includes from.
180 ModuleMap &ModMap, clang::Module *Module,
183 if (!Module->isAvailable())
187 for (Module::Header &H : Module->Headers[Module::HK_Normal]) {
188 Module->addTopHeader(H.Entry);
194 LangOpts, Module
179 collectModuleHeaderIncludes(const LangOptions &LangOpts, FileManager &FileMgr, ModuleMap &ModMap, clang::Module *Module, SmallVectorImpl<char> &Includes) argument
[all...]

Completed in 837 milliseconds

123