| /external/perfetto/src/trace_processor/sqlite/bindings/ |
| D | sqlite_module.h | 31 struct Module { struct 39 static constexpr enum { kEponymousOnly, kCreateOnly } kType = kCreateOnly; 45 static constexpr bool kSupportsWrites = true; 51 static constexpr bool kDoesOverloadFunctions = true; 56 using Context = void; 62 using Vtab = sqlite3_vtab; 68 using Cursor = sqlite3_vtab_cursor; 174 using FindFunctionFn = void(sqlite3_context*, int, sqlite3_value**); 198 static constexpr sqlite3_module CreateModule() { in CreateModule() argument
|
| /external/starlark-go/starlarkstruct/ |
| D | module.go | 14 type Module struct { struct 15 Name string 16 Members starlark.StringDict 21 func (m *Module) Attr(name string) (starlark.Value, error) { return m.Members[name], nil } 22 func (m *Module) AttrNames() []string { return m.Members.Keys() } 23 func (m *Module) Freeze() { m.Members.Freeze() } 24 …ule) Hash() (uint32, error) { return 0, fmt.Errorf("unhashable: %s", m.Type()) } 25 …(m *Module) String() string { return fmt.Sprintf("<module %q>", m.Name) } 26 func (m *Module) Truth() starlark.Bool { return true } 27 func (m *Module) Type() string { return "module" }
|
| /external/bcc/src/cc/includes/ |
| D | syms.h | 152 struct Module { struct 161 Module(const char *name, std::shared_ptr<ModulePath> path, argument 165 std::shared_ptr<ModulePath> path_; argument 169 ModuleType type_; argument 194 std::vector<Module> modules_; argument 222 struct Module { struct 223 Module(const char *module_name): in Module() function 239 std::unordered_map<std::string, std::unique_ptr<Module> > buildmap_; argument
|
| /external/bcc/src/cc/ |
| D | syms.h | 152 struct Module { struct 161 Module(const char *name, std::shared_ptr<ModulePath> path, argument 165 std::shared_ptr<ModulePath> path_; argument 169 ModuleType type_; argument 194 std::vector<Module> modules_; argument 222 struct Module { struct 223 Module(const char *module_name): in Module() function 239 std::unordered_map<std::string, std::unique_ptr<Module> > buildmap_; argument
|
| /external/wayland-protocols/ |
| D | wayland_protocol_codegen.go | 179 type Module struct { struct 180 android.ModuleBase 181 android.DefaultableModuleBase 182 android.ApexModuleBase 184 android.ImageInterface 186 properties generatorProperties 188 taskGenerator taskFunc 190 rawCommands []string 192 exportedIncludeDirs android.Paths 194 outputFiles android.Paths [all …]
|
| /external/rust/cxx/syntax/ |
| D | file.rs | 10 pub(crate) struct Module { struct 12 pub cfg: CfgExpr, 13 pub namespace: Namespace, 14 pub attrs: Vec<Attribute>, 16 pub vis: Visibility, 17 pub unsafety: Option<Token![unsafe]>, 19 pub mod_token: Token![mod], 21 pub ident: Ident, 45 impl Parse for Module { implementation
|
| /external/rust/crates/bindgen/ir/ |
| D | module.rs | 23 pub(crate) struct Module { struct 27 kind: ModuleKind, argument 32 impl Module { argument 63 impl DotAttributes for Module { implementation 76 impl ClangSubItemParser for Module { implementation
|
| /external/google-breakpad/src/common/ |
| D | module_unittest.cc | 76 TEST(Module, WriteHeader) { in TEST() argument 85 TEST(Module, WriteHeaderCodeId) { in TEST() argument 95 TEST(Module, WriteOneLineFunc) { in TEST() argument 120 TEST(Module, WriteRelativeLoadAddress) { in TEST() argument 178 TEST(Module, WriteOmitUnusedFiles) { in TEST() argument 227 TEST(Module, WriteNoCFI) { in TEST() argument 273 TEST(Module, ConstructAddFunction) { in TEST() argument 315 TEST(Module, WriteOutOfRangeAddresses) { in TEST() argument 367 TEST(Module, ConstructAddFrames) { in TEST() argument 454 TEST(Module, ConstructUniqueFiles) { in TEST() argument [all …]
|
| /external/autotest/metadata/utils/ |
| D | control_files.py | 63 def _extract_name(module: ast.Module) -> Optional[str]: 123 def _extract_suites(module: ast.Module) -> List[str]: 136 def _extract_main_package(path: str, module: ast.Module) -> Optional[str]: 145 def _extract_main_file(path: str, module: ast.Module) -> Optional[str]: 157 def _find_run_test_calls(module: ast.Module) -> List[ast.Call]:
|
| /external/cronet/third_party/apache-portable-runtime/src/dso/aix/ |
| D | dso.c | 206 typedef struct Module { struct 207 struct Module *next; argument 217 } Module, *ModulePtr; argument
|
| /external/cronet/base/debug/ |
| D | stack_trace_fuchsia.cc | 78 struct Module { struct in base::debug::__anon31a9ffd90111::SymbolMap 81 static constexpr size_t kMaxSegmentCount = 8; 83 const void* addr = nullptr; 84 std::array<Segment, kMaxSegmentCount> segments; 85 size_t segment_count = 0; 86 char name[ZX_MAX_NAME_LEN + 1] = {0}; 87 char build_id[kMaxBuildIdStringLength + 1] = {0};
|
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/DebugInfo/Symbolize/ |
| D | MarkupFilter.h | 49 struct Module { struct 58 const Module *Mod; argument
|
| /external/python/cpython2/Python/ |
| D | dynload_aix.c | 24 typedef struct Module { struct 25 struct Module *next; argument 27 } Module, *ModulePtr; argument
|
| /external/rust/crates/libfuzzer-sys/libfuzzer/ |
| D | FuzzerTracePC.h | 140 struct Module { struct 157 Module Modules[4096]; argument
|
| /external/llvm/bindings/go/llvm/ |
| D | bitwriter.go | 26 func WriteBitcodeToFile(m Module, file *os.File) error { 34 func WriteBitcodeToMemoryBuffer(m Module) MemoryBuffer {
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ |
| D | Pass.h | 41 class Module; variable 103 virtual bool doInitialization(Module &) { return false; } in doInitialization() argument 107 virtual bool doFinalization(Module &) { return false; } in doFinalization() argument 270 bool runOnModule(Module &) override { return false; } in runOnModule() argument
|
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/ |
| D | Pass.h | 39 class Module; variable 116 virtual bool doInitialization(Module &) { return false; } in doInitialization() argument 120 virtual bool doFinalization(Module &) { return false; } in doFinalization() argument 296 bool runOnModule(Module &) override { return false; } in runOnModule() argument
|
| /external/llvm/include/llvm/ |
| D | Pass.h | 38 class Module; variable 110 virtual bool doInitialization(Module &) { return false; } in doInitialization() argument 115 virtual bool doFinalization(Module &) { return false; } in doFinalization() argument 280 bool runOnModule(Module &) override { return false; } in runOnModule() argument
|
| /external/libchrome/base/profiler/ |
| D | stack_sampling_profiler.h | 60 struct BASE_EXPORT Module { struct 84 // Different from Module, it has an additional field "is_valid". argument
|
| /external/swiftshader/third_party/llvm-16.0/llvm/include/llvm/BinaryFormat/ |
| D | Minidump.h | 203 struct Module { struct 208 support::ulittle32_t ModuleNameRVA; argument 215 static_assert(sizeof(Module) == 108); argument
|
| /external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/ |
| D | Minidump.h | 203 struct Module { struct 208 support::ulittle32_t ModuleNameRVA; argument 215 static_assert(sizeof(Module) == 108, ""); argument
|
| /external/cronet/third_party/boringssl/src/util/fipstools/acvp/acvptool/acvp/ |
| D | acvp.go | 595 type Module struct { struct 596 URL string `json:"url,omitempty"` 597 Name string `json:"name,omitempty"` 598 Version string `json:"version,omitempty"` 599 Type string `json:"type,omitempty"` 600 Website string `json:"website,omitempty"` 601 VendorURL string `json:"vendorUrl,omitempty"` 602 AddressURL string `json:"addressUrl,omitempty"` 603 ContactURLs []string `json:"contactUrls,omitempty"` 604 Description string `json:"description,omitempty"`
|
| /external/boringssl/src/util/fipstools/acvp/acvptool/acvp/ |
| D | acvp.go | 595 type Module struct { struct 596 URL string `json:"url,omitempty"` 597 Name string `json:"name,omitempty"` 598 Version string `json:"version,omitempty"` 599 Type string `json:"type,omitempty"` 600 Website string `json:"website,omitempty"` 601 VendorURL string `json:"vendorUrl,omitempty"` 602 AddressURL string `json:"addressUrl,omitempty"` 603 ContactURLs []string `json:"contactUrls,omitempty"` 604 Description string `json:"description,omitempty"`
|
| /external/starlark-go/resolve/ |
| D | binding.go | 56 type Module struct { struct 57 Locals []*Binding // the file's (comprehension-)local variables 58 Globals []*Binding // the file's global variables
|
| /external/skia/src/sksl/ |
| D | SkSLCompiler.h | 56 struct Module { struct 57 const Module* fParent = nullptr; argument 58 std::unique_ptr<SymbolTable> fSymbols; 59 std::vector<std::unique_ptr<ProgramElement>> fElements;
|