Lines Matching defs:Flags
144 Flags []string member
178 type Flags struct { struct
179 Local LocalOrGlobalFlags
180 Global LocalOrGlobalFlags
182 aidlFlags []string // Flags that apply to aidl source files
183 rsFlags []string // Flags that apply to renderscript source files
184 libFlags []string // Flags to add libraries early to the link order
185 extraLibFlags []string // Flags to add libraries late in the link order after LdFlags
186 TidyFlags []string // Flags that apply to clang-tidy
187 SAbiFlags []string // Flags that apply to header-abi-dumper
191 SystemIncludeFlags []string
193 Toolchain config.Toolchain
194 Tidy bool
195 GcovCoverage bool
196 SAbiDump bool
197 EmitXrefs bool // If true, generate Ninja rules to generate emitXrefs input files for Kythe
199 RequiredInstructionSet string
200 DynamicLinker string
202 CFlagsDeps android.Paths // Files depended on by compiler flags
203 LdFlagsDeps android.Paths // Files depended on by linker flags
205 AssemblerWithCpp bool
206 GroupStaticLibs bool
208 proto android.ProtoFlags
209 protoC bool // Whether to use C instead of C++
210 protoOptionsFile bool // Whether to look for a .options file next to the .proto
212 Yacc *YaccProperties
374 flags(ctx ModuleContext, flags Flags) Flags methodSpec
381 compilerFlags(ctx ModuleContext, flags Flags, deps PathDeps) Flags
386 compile(ctx ModuleContext, flags Flags, deps PathDeps) Objects
392 linkerFlags(ctx ModuleContext, flags Flags) Flags
396 link(ctx ModuleContext, flags Flags, deps PathDeps, objs Objects) android.Path