Lines Matching refs:Properties

84 	return proptools.StringDefault(compiler.Properties.Edition, config.DefaultEdition)
88 compiler.Properties.No_stdlibs = proptools.BoolPtr(true)
92 compiler.Properties.Lints = proptools.StringPtr("none")
97 Properties: BaseCompilerProperties{},
247 Properties BaseCompilerProperties member
288 return BoolDefault(compiler.Properties.Lto.Thin, true)
296 return Bool(compiler.Properties.No_stdlibs)
304 return Bool(compiler.Properties.Prefer_rlib)
309 for _, entry := range compiler.Properties.Aliases {
337 return []interface{}{&compiler.Properties}
350 return compiler.Properties.Features
388 cfgFlags := cfgsToFlags(compiler.Properties.Cfgs.GetOrDefault(ctx, nil))
425 lintFlags, err := config.RustcLintsForDir(ctx.ModuleDir(), compiler.Properties.Lints)
431 for _, s := range compiler.Properties.Ld_flags {
436 for _, s := range compiler.Properties.Flags {
449 flags.RustFlags = append(flags.RustFlags, compiler.Properties.Flags...)
452 flags.LinkFlags = append(flags.LinkFlags, compiler.Properties.Ld_flags...)
469 if compiler.Properties.Crate_root == nil {
470 …CrateRootPath, compiler.cachedCrateRootError = srcPathFromModuleSrcs(ctx, compiler.Properties.Srcs)
472 compiler.cachedCrateRootPath = android.PathForModuleSrc(ctx, *compiler.Properties.Crate_root)
482 return Bool(compiler.Properties.Cargo_env_compat)
486 return String(compiler.Properties.Cargo_pkg_version)
498 deps.Rlibs = append(deps.Rlibs, compiler.Properties.Rlibs...)
499 deps.Rustlibs = append(deps.Rustlibs, compiler.Properties.Rustlibs...)
500 deps.ProcMacros = append(deps.ProcMacros, compiler.Properties.Proc_macros...)
501 deps.StaticLibs = append(deps.StaticLibs, compiler.Properties.Static_libs...)
502 deps.WholeStaticLibs = append(deps.WholeStaticLibs, compiler.Properties.Whole_static_libs...)
503 deps.SharedLibs = append(deps.SharedLibs, compiler.Properties.Shared_libs...)
504 deps.Stdlibs = append(deps.Stdlibs, compiler.Properties.Stdlibs...)
506 if !Bool(compiler.Properties.No_stdlibs) {
555 return compiler.Properties.Crate_name
604 return compiler.getStemWithoutSuffix(ctx) + String(compiler.Properties.Suffix)
609 if String(compiler.Properties.Stem) != "" {
610 stem = String(compiler.Properties.Stem)
617 return String(compiler.Properties.Relative_install_path)