Home
last modified time | relevance | path

Searched defs:Module (Results 1 – 25 of 414) sorted by relevance

12345678910>>...17

/external/starlark-go/starlarkstruct/
Dmodule.go14 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/
Dsyms.h114 struct Module { struct
123 Module(const char *name, const char *path, struct bcc_symbol_option *option); argument
130 ModuleType type_; argument
155 std::vector<Module> modules_; argument
183 struct Module { struct
184 Module(const char *module_name): in Module() argument
200 std::unordered_map<std::string, std::unique_ptr<Module> > buildmap_; argument
/external/bcc/src/cc/
Dsyms.h114 struct Module { struct
123 Module(const char *name, const char *path, struct bcc_symbol_option *option); argument
130 ModuleType type_; argument
155 std::vector<Module> modules_; argument
183 struct Module { struct
184 Module(const char *module_name): in Module() argument
200 std::unordered_map<std::string, std::unique_ptr<Module> > buildmap_; argument
/external/wayland-protocols/
Dwayland_protocol_codegen.go188 type Module struct { struct
189 android.ModuleBase
190 android.DefaultableModuleBase
191 android.BazelModuleBase
192 android.ApexModuleBase
194 android.ImageInterface
196 properties generatorProperties
198 taskGenerator taskFunc
200 rawCommands []string
202 exportedIncludeDirs android.Paths
[all …]
/external/rust/cxx/syntax/
Dfile.rs10 pub struct Module { struct
11 pub cfg: CfgExpr,
12 pub namespace: Namespace,
13 pub attrs: Vec<Attribute>,
14 pub vis: Visibility,
15 pub unsafety: Option<Token![unsafe]>,
39 impl Parse for Module { argument
/external/rust/crates/bindgen/ir/
Dmodule.rs22 pub struct Module { struct
26 kind: ModuleKind, argument
31 impl Module { impl
62 impl DotAttributes for Module { implementation
75 impl ClangSubItemParser for Module { implementation
Ditem_kind.rs16 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/autotest/metadata/utils/
Dcontrol_files.py63 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/base/debug/
Dstack_trace_fuchsia.cc78 struct Module { struct in base::debug::__anon1f9591ea0111::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/python/cpython2/Python/
Ddynload_aix.c24 typedef struct Module { struct
25 struct Module *next; argument
27 } Module, *ModulePtr; typedef
/external/rust/crates/libfuzzer-sys/libfuzzer/
DFuzzerTracePC.h140 struct Module { struct
157 Module Modules[4096]; argument
/external/llvm/bindings/go/llvm/
Dbitwriter.go26 func WriteBitcodeToFile(m Module, file *os.File) error {
34 func WriteBitcodeToMemoryBuffer(m Module) MemoryBuffer {
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/
DPass.h41 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/
Dstack_sampling_profiler.h60 struct BASE_EXPORT Module { struct
84 // Different from Module, it has an additional field "is_valid". argument
/external/llvm/include/llvm/
DPass.h38 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/swiftshader/third_party/llvm-10.0/llvm/include/llvm/BinaryFormat/
DMinidump.h203 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/
Dacvp.go595 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/
Dacvp.go595 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/
Dbinding.go56 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/
DSkSLCompiler.h63 struct Module { struct
64 const Module* fParent = nullptr; argument
65 std::shared_ptr<SymbolTable> fSymbols;
66 std::vector<std::unique_ptr<ProgramElement>> fElements;
/external/llvm/tools/bugpoint/
DMiscompilation.cpp185 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()
DCrashDebugger.cpp124 bool (*testFn)(const BugDriver &, Module *)) in ReduceCrashingGlobalVariables() argument
194 bool (*testFn)(const BugDriver &, Module *)) in ReduceCrashingFunctions() argument
330 bool (*testFn)(const BugDriver &, Module *)) in ReduceCrashingBlocks() argument
439 bool (*testFn)(const BugDriver &, Module *)) in ReduceCrashingInstructions() argument
516 bool (*testFn)(const BugDriver &, Module *)) in ReduceCrashingNamedMD() argument
586 bool (*testFn)(const BugDriver &, Module *)) in ReduceCrashingNamedMDOps() argument
653 bool (*TestFn)(const BugDriver &, Module *), in ReduceGlobalInitializers() argument
707 bool (*TestFn)(const BugDriver &, Module *), in ReduceInsts() argument
789 bool (*TestFn)(const BugDriver &, Module *), in DebugACrash() argument
/external/tensorflow/tensorflow/c/experimental/saved_model/internal/testdata/
Dgen_saved_models.py48 class Module(module.Module): class
74 class Module(module.Module): class
/external/tensorflow/tensorflow/python/autograph/pyct/
Dgast_util.py61 Module = gast.Module variable
69 Module = functools.partial(gast.Module, type_ignores=None) # pylint:disable=invalid-name variable
/external/clang/include/clang/Frontend/
DFrontendActions.h19 class Module; variable
94 clang::Module *Module; variable

12345678910>>...17