Lines Matching defs:Flags
51 type Flags struct { struct
52 GlobalRustFlags []string // Flags that apply globally to rust
53 GlobalLinkFlags []string // Flags that apply globally to linker
54 RustFlags []string // Flags that apply to rust
55 LinkFlags []string // Flags that apply to linker
56 ClippyFlags []string // Flags that apply to clippy-driver, during the linting
57 RustdocFlags []string // Flags that apply to rustdoc
58 Toolchain config.Toolchain
59 Coverage bool
60 Clippy bool
61 EmitXrefs bool // If true, emit rules to aid cross-referencing
462 compilerFlags(ctx ModuleContext, flags Flags) Flags
463 cfgFlags(ctx ModuleContext, flags Flags) Flags
464 featureFlags(ctx ModuleContext, flags Flags) Flags
466 compile(ctx ModuleContext, flags Flags, deps PathDeps) buildOutput
469 rustdoc(ctx ModuleContext, flags Flags, deps PathDeps) android.OptionalPath
540 Flags []string member