/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/ |
D | syms.h | 92 struct Module { struct 101 Module(const char *name, ProcMountNS *mount_ns, argument 109 ModuleType type_; argument 131 std::vector<Module> modules_; argument
|
/external/bcc/src/cc/includes/ |
D | syms.h | 92 struct Module { struct 101 Module(const char *name, ProcMountNS *mount_ns, argument 109 ModuleType type_; argument 131 std::vector<Module> modules_; argument
|
/external/rust/crates/bindgen/src/ir/ |
D | module.rs | 22 pub struct Module { struct 26 kind: ModuleKind, argument 31 impl Module { argument 62 impl DotAttributes for Module { implementation 75 impl ClangSubItemParser for Module { implementation
|
D | item_kind.rs | 16 Module(Module), enumerator 31 pub fn as_module(&self) -> Option<&Module> { in as_module() 55 pub fn expect_module(&self) -> &Module { in expect_module()
|
/external/rust/cxx/syntax/ |
D | file.rs | 9 pub struct Module { struct 10 pub namespace: Namespace, 11 pub attrs: Vec<Attribute>, 12 pub vis: Visibility, 13 pub unsafety: Option<Token![unsafe]>, 37 impl Parse for Module { argument
|
/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/python/cpython2/Python/ |
D | dynload_aix.c | 24 typedef struct Module { struct 25 struct Module *next; argument 27 } Module, *ModulePtr; typedef
|
/external/python/cpython3/Python/ |
D | dynload_aix.c | 23 typedef struct Module { struct 24 struct Module *next; argument 26 } Module, *ModulePtr; typedef
|
/external/llvm/bindings/go/llvm/ |
D | bitwriter.go | 26 func WriteBitcodeToFile(m Module, file *os.File) error { 34 func WriteBitcodeToMemoryBuffer(m Module) MemoryBuffer {
|
/external/llvm-project/llvm/bindings/go/llvm/ |
D | bitwriter.go | 25 func WriteBitcodeToFile(m Module, file *os.File) error { 33 func WriteBitcodeToMemoryBuffer(m Module) MemoryBuffer {
|
/external/rust/crates/libfuzzer-sys/libfuzzer/ |
D | FuzzerTracePC.h | 140 struct Module { struct 157 Module Modules[4096]; argument
|
/external/llvm-project/compiler-rt/lib/fuzzer/ |
D | FuzzerTracePC.h | 140 struct Module { struct 157 Module Modules[4096]; argument
|
/external/llvm-project/llvm/include/llvm/ |
D | Pass.h | 39 class Module; variable 102 virtual bool doInitialization(Module &) { return false; } in doInitialization() argument 106 virtual bool doFinalization(Module &) { return false; } in doFinalization() argument 272 bool runOnModule(Module &) override { return false; } in runOnModule() argument
|
/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/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/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/llvm-project/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/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/tensorflow/tensorflow/c/experimental/saved_model/internal/testdata/ |
D | gen_saved_models.py | 54 class Module(module.Module): class 80 class Module(module.Module): class
|
/external/llvm-project/clang/include/clang/CodeGen/ |
D | CodeGenAction.h | 17 class Module; variable 31 std::unique_ptr<llvm::Module> Module; member
|
/external/boringssl/src/util/fipstools/acvp/acvptool/acvp/ |
D | acvp.go | 594 type Module struct { struct 595 URL string `json:"url,omitempty"` 596 Name string `json:"name,omitempty"` 597 Version string `json:"version,omitempty"` 598 Type string `json:"type,omitempty"` 599 Website string `json:"website,omitempty"` 600 VendorURL string `json:"vendorUrl,omitempty"` 601 AddressURL string `json:"addressUrl,omitempty"` 602 ContactURLs []string `json:"contactUrls,omitempty"` 603 Description string `json:"description,omitempty"`
|
/external/tensorflow/tensorflow/python/autograph/pyct/ |
D | gast_util.py | 65 Module = gast.Module variable 73 Module = functools.partial(gast.Module, type_ignores=None) # pylint:disable=invalid-name variable
|
/external/llvm/tools/bugpoint/ |
D | Miscompilation.cpp | 185 bool (*F)(BugDriver &, std::unique_ptr<Module>, in ReduceMiscompilingFunctions() 298 bool (*TestFn)(BugDriver &, std::unique_ptr<Module>, in ExtractLoops() 446 bool (*F)(BugDriver &, std::unique_ptr<Module>, in ReduceMiscompiledBlocks() 529 bool (*TestFn)(BugDriver &, std::unique_ptr<Module>, in ExtractBlocks() 610 bool (*TestFn)(BugDriver &, std::unique_ptr<Module>, in DebugAMiscompilation()
|