Home
last modified time | relevance | path

Searched refs:Module (Results 1 – 25 of 5389) sorted by relevance

12345678910>>...216

/external/deqp/external/openglcts/scripts/
Dbuild_caselists.py37 class Module: class
43 Module("dEQP-EGL", "EGL"),
44 Module("dEQP-GLES2", "GLES2"),
45 Module("dEQP-GLES3", "GLES3"),
46 Module("dEQP-GLES31", "GLES31"),
47 Module("KHR-GLES3", "GLES3"),
48 Module("KHR-GLES2", "GLES2"),
49 Module("KHR-GLES31", "GLES31"),
50 Module("KHR-GLES32", "GLES32"),
51 Module("KHR-NOCTX-ES2", "GLES2"),
[all …]
/external/deqp-deps/SPIRV-Tools/source/opt/
Dmodule.h44 class Module {
52 Module() : header_({}), contains_debug_info_(false) {} in Module() function
309 std::ostream& operator<<(std::ostream& str, const Module& module);
311 inline void Module::AddCapability(std::unique_ptr<Instruction> c) { in AddCapability()
315 inline void Module::AddExtension(std::unique_ptr<Instruction> e) { in AddExtension()
319 inline void Module::AddExtInstImport(std::unique_ptr<Instruction> e) { in AddExtInstImport()
323 inline void Module::SetMemoryModel(std::unique_ptr<Instruction> m) { in SetMemoryModel()
327 inline void Module::AddEntryPoint(std::unique_ptr<Instruction> e) { in AddEntryPoint()
331 inline void Module::AddExecutionMode(std::unique_ptr<Instruction> e) { in AddExecutionMode()
335 inline void Module::AddDebug1Inst(std::unique_ptr<Instruction> d) { in AddDebug1Inst()
[all …]
Dir_context.h98 module_(new Module()), in IRContext()
112 IRContext(spv_target_env env, std::unique_ptr<Module>&& m, MessageConsumer c) in IRContext()
132 Module* module() const { return module_.get(); } in module()
140 inline Module::inst_iterator annotation_begin();
141 inline Module::inst_iterator annotation_end();
142 inline IteratorRange<Module::inst_iterator> annotations();
143 inline IteratorRange<Module::const_inst_iterator> annotations() const;
146 inline Module::inst_iterator capability_begin();
147 inline Module::inst_iterator capability_end();
148 inline IteratorRange<Module::inst_iterator> capabilities();
[all …]
/external/swiftshader/third_party/SPIRV-Tools/source/opt/
Dmodule.h44 class Module {
52 Module() : header_({}), contains_debug_info_(false) {} in Module() function
309 std::ostream& operator<<(std::ostream& str, const Module& module);
311 inline void Module::AddCapability(std::unique_ptr<Instruction> c) { in AddCapability()
315 inline void Module::AddExtension(std::unique_ptr<Instruction> e) { in AddExtension()
319 inline void Module::AddExtInstImport(std::unique_ptr<Instruction> e) { in AddExtInstImport()
323 inline void Module::SetMemoryModel(std::unique_ptr<Instruction> m) { in SetMemoryModel()
327 inline void Module::AddEntryPoint(std::unique_ptr<Instruction> e) { in AddEntryPoint()
331 inline void Module::AddExecutionMode(std::unique_ptr<Instruction> e) { in AddExecutionMode()
335 inline void Module::AddDebug1Inst(std::unique_ptr<Instruction> d) { in AddDebug1Inst()
[all …]
Dir_context.h98 module_(new Module()), in IRContext()
112 IRContext(spv_target_env env, std::unique_ptr<Module>&& m, MessageConsumer c) in IRContext()
132 Module* module() const { return module_.get(); } in module()
140 inline Module::inst_iterator annotation_begin();
141 inline Module::inst_iterator annotation_end();
142 inline IteratorRange<Module::inst_iterator> annotations();
143 inline IteratorRange<Module::const_inst_iterator> annotations() const;
146 inline Module::inst_iterator capability_begin();
147 inline Module::inst_iterator capability_end();
148 inline IteratorRange<Module::inst_iterator> capabilities();
[all …]
/external/angle/third_party/vulkan-deps/spirv-tools/src/source/opt/
Dmodule.h44 class Module {
52 Module() : header_({}), contains_debug_info_(false) {} in Module() function
309 std::ostream& operator<<(std::ostream& str, const Module& module);
311 inline void Module::AddCapability(std::unique_ptr<Instruction> c) { in AddCapability()
315 inline void Module::AddExtension(std::unique_ptr<Instruction> e) { in AddExtension()
319 inline void Module::AddExtInstImport(std::unique_ptr<Instruction> e) { in AddExtInstImport()
323 inline void Module::SetMemoryModel(std::unique_ptr<Instruction> m) { in SetMemoryModel()
327 inline void Module::AddEntryPoint(std::unique_ptr<Instruction> e) { in AddEntryPoint()
331 inline void Module::AddExecutionMode(std::unique_ptr<Instruction> e) { in AddExecutionMode()
335 inline void Module::AddDebug1Inst(std::unique_ptr<Instruction> d) { in AddDebug1Inst()
[all …]
Dir_context.h98 module_(new Module()), in IRContext()
112 IRContext(spv_target_env env, std::unique_ptr<Module>&& m, MessageConsumer c) in IRContext()
132 Module* module() const { return module_.get(); } in module()
140 inline Module::inst_iterator annotation_begin();
141 inline Module::inst_iterator annotation_end();
142 inline IteratorRange<Module::inst_iterator> annotations();
143 inline IteratorRange<Module::const_inst_iterator> annotations() const;
146 inline Module::inst_iterator capability_begin();
147 inline Module::inst_iterator capability_end();
148 inline IteratorRange<Module::inst_iterator> capabilities();
[all …]
/external/google-breakpad/src/common/
Dmodule_unittest.cc47 using google_breakpad::Module;
52 static Module::Function* generate_duplicate_function(const string &name) { in generate_duplicate_function()
53 const Module::Address DUP_ADDRESS = 0xd35402aac7a7ad5cULL; in generate_duplicate_function()
54 const Module::Address DUP_SIZE = 0x200b26e605f99071ULL; in generate_duplicate_function()
55 const Module::Address DUP_PARAMETER_SIZE = 0xf14ac4fed48c4a99ULL; in generate_duplicate_function()
57 Module::Function* function = new Module::Function(name, DUP_ADDRESS); in generate_duplicate_function()
58 Module::Range range(DUP_ADDRESS, DUP_SIZE); in generate_duplicate_function()
72 Module m(MODULE_NAME, MODULE_OS, MODULE_ARCH, MODULE_ID); in TEST()
81 Module m(MODULE_NAME, MODULE_OS, MODULE_ARCH, MODULE_ID, MODULE_CODE_ID); in TEST()
91 Module m(MODULE_NAME, MODULE_OS, MODULE_ARCH, MODULE_ID); in TEST()
[all …]
Ddwarf_line_to_module_unittest.cc42 using google_breakpad::Module;
43 using google_breakpad::Module;
46 Module m("name", "os", "architecture", "id"); in TEST()
47 vector<Module::Line> lines; in TEST()
54 vector<Module::File *> files; in TEST()
67 Module m("name", "os", "architecture", "id"); in TEST()
68 vector<Module::Line> lines; in TEST()
89 vector<Module::File *> files; in TEST()
127 Module m("name", "os", "architecture", "id"); in TEST()
128 vector<Module::Line> lines; in TEST()
[all …]
Dstabs_to_module_unittest.cc39 using google_breakpad::Module;
44 Module m("name", "os", "arch", "id"); in TEST()
58 Module::File *file = m.FindExistingFile("source-file-name"); in TEST()
61 vector<Module::Function *> functions; in TEST()
64 Module::Function *function = functions[0]; in TEST()
70 Module::Line *line = &function->lines[0]; in TEST()
81 Module m("name", "os", "arch", "id"); in TEST()
91 vector<Module::Extern *> externs; in TEST()
94 Module::Extern *extern1 = externs[0]; in TEST()
96 EXPECT_EQ((Module::Address)0x1111, extern1->address); in TEST()
[all …]
/external/llvm-project/clang/include/clang/Lex/
DModuleMap.h95 Module *SourceModule = nullptr;
99 llvm::SmallVector<std::unique_ptr<Module>, 8> PendingSubmodules;
102 llvm::StringMap<Module *> Modules;
106 llvm::DenseMap<const IdentifierInfo *, Module *> CachedModuleLoads;
109 llvm::SmallVector<Module*, 2> ShadowModules;
121 void resolveLinkAsDependencies(Module *Mod);
125 void addLinkAsDependency(Module *Mod);
148 static ModuleHeaderRole headerKindToRole(Module::HeaderKind Kind);
151 static Module::HeaderKind headerRoleToKind(ModuleHeaderRole Role);
156 llvm::PointerIntPair<Module *, 2, ModuleHeaderRole> Storage;
[all …]
/external/clang/include/clang/Lex/
DModuleMap.h87 Module *SourceModule;
90 llvm::StringMap<Module *> Modules;
116 llvm::PointerIntPair<Module *, 2, ModuleHeaderRole> Storage;
120 KnownHeader(Module *M, ModuleHeaderRole Role) : Storage(M, Role) { } in KnownHeader()
130 Module *getModule() const { return Storage.getPointer(); } in getModule()
141 bool isAccessibleFrom(Module *M) const { in isAccessibleFrom()
169 llvm::DenseMap<const DirectoryEntry *, Module *> UmbrellaDirs;
210 llvm::DenseMap<const Module *, const FileEntry *> InferredModuleAllowedBy;
212 llvm::DenseMap<const Module *, AdditionalModMapsSet> AdditionalModMaps;
232 Module::ExportDecl
[all …]
/external/llvm-project/clang/test/Modules/
Drebuild.m3 // Build Module and set its timestamp
4 // RUN: echo '@import Module;' | %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%…
5 // RUN: touch -m -a -t 201101010000 %t/Module.pcm
6 // RUN: cp %t/Module.pcm %t/Module.pcm.saved
7 // RUN: wc -c %t/Module.pcm > %t/Module.size.saved
11 // RUN: diff %t/Module.pcm %t/Module.pcm.saved
14 // Rebuild Module, reset its timestamp, and verify its size hasn't changed
15 // RUN: rm %t/Module.pcm
16 // RUN: echo '@import Module;' | %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%…
17 // RUN: touch -m -a -t 201101010000 %t/Module.pcm
[all …]
/external/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DModule.cpp73 Module::Module(StringRef MID, LLVMContext &C) in Module() function in Module
80 Module::~Module() { in ~Module()
92 std::unique_ptr<RandomNumberGenerator> Module::createRNG(const Pass* P) const { in createRNG()
113 GlobalValue *Module::getNamedValue(StringRef Name) const { in getNamedValue()
119 unsigned Module::getMDKindID(StringRef Name) const { in getMDKindID()
126 void Module::getMDKindNames(SmallVectorImpl<StringRef> &Result) const { in getMDKindNames()
130 void Module::getOperandBundleTags(SmallVectorImpl<StringRef> &Result) const { in getOperandBundleTags()
143 FunctionCallee Module::getOrInsertFunction(StringRef Name, FunctionType *Ty, in getOrInsertFunction()
167 FunctionCallee Module::getOrInsertFunction(StringRef Name, FunctionType *Ty) { in getOrInsertFunction()
174 Function *Module::getFunction(StringRef Name) const { in getFunction()
[all …]
/external/llvm-project/llvm/lib/IR/
DModule.cpp74 Module::Module(StringRef MID, LLVMContext &C) in Module() function in Module
81 Module::~Module() { in ~Module()
91 Module::createRNG(const StringRef Name) const { in createRNG()
113 GlobalValue *Module::getNamedValue(StringRef Name) const { in getNamedValue()
119 unsigned Module::getMDKindID(StringRef Name) const { in getMDKindID()
126 void Module::getMDKindNames(SmallVectorImpl<StringRef> &Result) const { in getMDKindNames()
130 void Module::getOperandBundleTags(SmallVectorImpl<StringRef> &Result) const { in getOperandBundleTags()
143 FunctionCallee Module::getOrInsertFunction(StringRef Name, FunctionType *Ty, in getOrInsertFunction()
167 FunctionCallee Module::getOrInsertFunction(StringRef Name, FunctionType *Ty) { in getOrInsertFunction()
174 Function *Module::getFunction(StringRef Name) const { in getFunction()
[all …]
/external/clang/test/Modules/
Drebuild.m3 // Build Module and set its timestamp
4 // RUN: echo '@import Module;' | %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%…
5 // RUN: touch -m -a -t 201101010000 %t/Module.pcm
6 // RUN: cp %t/Module.pcm %t/Module.pcm.saved
7 // RUN: wc -c %t/Module.pcm > %t/Module.size.saved
11 // RUN: diff %t/Module.pcm %t/Module.pcm.saved
14 // Rebuild Module, reset its timestamp, and verify its size hasn't changed
15 // RUN: rm %t/Module.pcm
16 // RUN: echo '@import Module;' | %clang_cc1 -fmodules -fimplicit-module-maps -fmodules-cache-path=%…
17 // RUN: touch -m -a -t 201101010000 %t/Module.pcm
[all …]
/external/bcc/src/lua/
Dsquishy1 Module "bcc.vendor.argparse" "bcc/vendor/argparse.lua"
2 Module "bcc.vendor.posix" "bcc/vendor/posix.lua"
3 Module "bcc.vendor.middleclass" "bcc/vendor/middleclass.lua"
4 Module "bcc.vendor.json" "bcc/vendor/json.lua"
5 Module "bcc.vendor.helpers" "bcc/vendor/helpers.lua"
7 Module "bcc.init" "bcc/init.lua"
8 Module "bcc.run" "bcc/run.lua"
9 Module "bcc.bpf" "bcc/bpf.lua"
10 Module "bcc.sym" "bcc/sym.lua"
11 Module "bcc.libbcc" "bcc/libbcc.lua"
[all …]
/external/llvm/lib/IR/
DModule.cpp51 Module::Module(StringRef MID, LLVMContext &C) in Module() function in Module
58 Module::~Module() { in ~Module()
70 RandomNumberGenerator *Module::createRNG(const Pass* P) const { in createRNG()
91 GlobalValue *Module::getNamedValue(StringRef Name) const { in getNamedValue()
97 unsigned Module::getMDKindID(StringRef Name) const { in getMDKindID()
104 void Module::getMDKindNames(SmallVectorImpl<StringRef> &Result) const { in getMDKindNames()
108 void Module::getOperandBundleTags(SmallVectorImpl<StringRef> &Result) const { in getOperandBundleTags()
121 Constant *Module::getOrInsertFunction(StringRef Name, in getOrInsertFunction()
144 Constant *Module::getOrInsertFunction(StringRef Name, in getOrInsertFunction()
154 Constant *Module::getOrInsertFunction(StringRef Name, in getOrInsertFunction()
[all …]
/external/llvm/tools/bugpoint/
DBugDriver.h29 class Module; variable
51 Module *Program; // The raw program, linked together
133 Module *getProgram() const { return Program; } in getProgram()
137 Module *swapProgramIn(Module *M) { in swapProgramIn()
138 Module *OldProgram = Program; in swapProgramIn()
156 void setNewProgram(Module *M);
162 void compileProgram(Module *M, std::string *Error) const;
167 std::string executeProgram(const Module *Program,
179 std::string executeProgramSafely(const Module *Program,
188 bool createReferenceFile(Module *M, const std::string &Filename
[all …]
/external/llvm-project/llvm/tools/bugpoint/
DBugDriver.h30 class Module; variable
52 std::unique_ptr<Module> Program; // The raw program, linked together
130 Module &getProgram() const { return *Program; } in getProgram()
133 std::unique_ptr<Module> swapProgramIn(std::unique_ptr<Module> M);
146 void setNewProgram(std::unique_ptr<Module> M);
150 Error compileProgram(Module &M) const;
154 Expected<std::string> executeProgram(const Module &Program,
164 executeProgramSafely(const Module &Program,
170 Error createReferenceFile(Module &M, const std::string &Filename =
177 Expected<bool> diffProgram(const Module &Program,
[all …]
/external/skia/experimental/tskit/build/
Dexterns.js3 Module.sayHello = function() {};
4 Module.publicFunction = function() {};
5 Module.publicExtension = function() {};
6 Module.withObject = function() {};
7 Module._privateFunction = function() {};
8 Module._privateExtension = function() {};
9 Module._withObject = function() {};
11 Module.Something = {
19 Module.CompoundObj = {
26 Module.onRuntimeInitialized = function() {};
[all …]
/external/clang/include/clang/Basic/
DModule.h47 class Module {
57 Module *Parent;
75 std::vector<Module *> SubModules;
92 mutable llvm::DenseSet<const Module*> VisibleModulesCache;
221 llvm::SmallSetVector<Module *, 2> Imports;
227 typedef llvm::PointerIntPair<Module *, 1, bool> ExportDecl;
251 SmallVector<Module *, 2> DirectUses;
297 Module *Other;
307 Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent,
310 ~Module();
[all …]
/external/llvm-project/clang/include/clang/Basic/
DModule.h96 class Module {
124 Module *Parent;
157 std::vector<Module *> SubModules;
174 mutable llvm::DenseSet<const Module*> VisibleModulesCache;
241 Module *ShadowingModule = nullptr;
324 llvm::SmallSetVector<Module *, 2> Imports;
330 using ExportDecl = llvm::PointerIntPair<Module *, 1, bool>;
354 SmallVector<Module *, 2> DirectUses;
404 Module *Other;
414 Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent,
[all …]
/external/clang/lib/Basic/
DModule.cpp27 Module::Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent, in Module() function in Module
51 Module::~Module() { in ~Module()
80 bool Module::isAvailable(const LangOptions &LangOpts, const TargetInfo &Target, in isAvailable()
86 for (const Module *Current = this; Current; Current = Current->Parent) { in isAvailable()
103 bool Module::isSubModuleOf(const Module *Other) const { in isSubModuleOf()
104 const Module *This = this; in isSubModuleOf()
115 const Module *Module::getTopLevelModule() const { in getTopLevelModule()
116 const Module *Result = this; in getTopLevelModule()
123 std::string Module::getFullModuleName() const { in getFullModuleName()
127 for (const Module *M = this; M; M = M->Parent) in getFullModuleName()
[all …]
/external/llvm-project/clang/lib/Basic/
DModule.cpp37 Module::Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent, in Module() function in Module
61 Module::~Module() { in ~Module()
130 bool Module::isUnimportable(const LangOptions &LangOpts, in isUnimportable()
132 Module *&ShadowingModule) const { in isUnimportable()
136 for (const Module *Current = this; Current; Current = Current->Parent) { in isUnimportable()
153 bool Module::isAvailable(const LangOptions &LangOpts, const TargetInfo &Target, in isAvailable()
156 Module *&ShadowingModule) const { in isAvailable()
165 for (const Module *Current = this; Current; Current = Current->Parent) { in isAvailable()
175 bool Module::isSubModuleOf(const Module *Other) const { in isSubModuleOf()
183 const Module *Module::getTopLevelModule() const { in getTopLevelModule()
[all …]

12345678910>>...216