/build/bazel/product_variables/ |
D | settings.bzl | 4 for variable in bool_vars.keys() + value_vars.keys(): 5 variable = variable.lower() 7 name = variable + "_constraint", 10 name = variable, 11 constraint_setting = variable + "_constraint", 13 for variable, choices in string_vars.items(): 15 var_with_choice = (variable + "__" + choice).lower()
|
D | constants.bzl | 1 """Constants for product variables based on information in variable.go"""
|
/build/soong/android/ |
D | config_bp2build.go | 173 panic(fmt.Errorf("error expanding config variable %s: %s", k, err)) 205 panic(fmt.Errorf("Error expanding config variable %s=%s: %s", k, v, err)) 268 dict[k] = "_" + matches.variable 320 variable string member 339 variable: matches[1], 370 variable := matches.variable 372 if _, ok := seenVars[variable]; ok { 374 "Unbounded recursive interpolation of variable: %s", variable) 383 newSeenVars[variable] = true 384 if unexpandedVars, ok := stringListScope[variable]; ok { [all …]
|
/build/soong/mk2rbc/ |
D | TODO | 2 * Need heuristics to recognize that a variable is local. Propose to use lowercase. 3 * Need heuristics for the local variable type. Propose '_list' suffix 7 * If variable's type is not yet known, try to divine it from the value assigned to it 8 (it may be a variable of the known type, or a function result)
|
D | Android.bp | 40 "variable.go",
|
D | variable.go | 22 type variable interface { interface 275 func (ctx *parseContext) addVariable(name string) variable {
|
/build/soong/android/soongconfig/ |
D | modules.go | 192 v.variables[base.variable] = &stringVariable{ 206 v.variables[base.variable] = &boolVariable{ 230 variable: props.Name, 567 variable: name, 602 variable string member 606 return CanonicalizeToProperty(c.variable) 644 if config.String(s.variable) == v && !f.Elem().IsNil() { 663 variable: name, 736 if config.Bool(b.variable) { 771 if !config.IsSet(s.variable) { [all …]
|
/build/soong/docs/ |
D | compdb.md | 6 compdb file generation is enabled via environment variable: 14 variable:
|
D | tidy.md | 13 to set environment variable `WITH_TIDY`. 21 checks, set the `CLANG_ANALYZER_CHECKS` variable. 62 environment variable `WITH_TIDY=1` is set. 173 fast as possible. Changing the `WITH_TIDY=1` variable setting is also expensive 174 since the build.ninja file will be regenerated due to any such variable change. 177 do not set the `WITH_TIDY=1` variable, but use the special `tidy-<directory>` 220 To limit clang-tidy time, an environment variable can be set as 243 * The global `WITH_TIDY=1` variable will enable clang-tidy for all C/C++ 246 * The global `TIDY_TIMEOUT` variable is recognized by Android prebuilt
|
D | rbe.md | 18 variable and `ANDROID_BUILD_ENVIRONMENT_CONFIG` environment variable. The
|
/build/soong/partner/bpfix/extensions/ |
D | headers.go | 28 variable string member 36 variable: "TARGET_OUT_HEADERS", 52 if arg0.Name == lib.variable && arg1.Value == lib.subdir {
|
/build/make/tools/ |
D | mk2bp_partition.py | 29 def get_build_var(variable, product, build_variant): argument 39 variable
|
/build/soong/bazel/ |
D | configurability.go | 214 func ProductVariableConfigurationAxis(variable string) ConfigurationAxis { 217 subType: variable,
|
/build/soong/third_party/zip/testdata/ |
D | readme.notzip | 31 the environment variable $GOROOT to the full path of the go 33 variable if you unpack it into /usr/local/go, or if you rebuild
|
/build/soong/androidmk/androidmk/ |
D | android.go | 348 if variable, ok := firstOperand.(*bpparser.Variable); !ok || variable.Name != "LOCAL_PATH" { 496 if variable, ok := exp.Args[0].(*bpparser.Variable); ok && variable.Name == "LOCAL_MODULE" { 638 func varLiteralName(variable mkparser.Variable) string { 639 if len(variable.Name.Variables) == 0 { 640 return variable.Name.Strings[0]
|
/build/bazel/platforms/product_variables/ |
D | product_platform.bzl | 1 """Parallels variable.go to provide variables and create a platform based on converted config.""" 87 # variable.go excludes nil values 91 # variable.go special cases bools
|
/build/make/ |
D | Usage.txt | 3 m [-j] [<targets>] [<variable>=<value>...] 16 m [<options>] [<targets>] [<variable>=<value>...] 25 Each of <options>, <targets>, and <variable>=<value> is optional.
|
/build/bazel/rules/android/ |
D | android_binary.bzl | 32 # if product variable is not set, default to Soong default: 66 DefaultAppCertificate product variable. In either case, we convert the specified
|
/build/soong/androidmk/parser/ |
D | parser.go | 342 var variable Variable 343 variable = p.parseVariable() 344 if variable.Name == builtinDollarName { 347 value.appendVariable(variable)
|
/build/soong/cc/ |
D | cmakelists.go | 281 variable const 308 return variable 368 case variable:
|
/build/make/tools/rbcrun/ |
D | README.md | 38 `"|symbol"` which defines a single variable `symbol` with `None` value if a 57 A `struct` containing the variable set by the interpreter's command line. That is, running
|
/build/soong/ |
D | README.md | 65 An Android.bp file may contain top-level variable assignments: 273 variable. 444 * bool variable (e.g. `feature`): the variable is unspecified or not set to a true value 445 * value variable (e.g. `width`): the variable is unspecified 446 * string variable (e.g. `board`): the variable is unspecified or the variable is set to a string un… 560 The `ANDROID_BUILD_ENVIRONMENT_CONFIG_DIR` environment variable specifies the 562 `ANDROID_BUILD_ENVIRONMENT_CONFIG` variable determines the name of the config 603 variable: 638 environment variable
|
/build/make/tools/releasetools/ |
D | pylintrc | 150 # Good variable names which should always be accepted, separated by a comma 153 # Bad variable names which should always be refused, separated by a comma 169 # Regular expression matching correct variable names 170 variable-rgx=[a-z_][a-z0-9_]{2,30}$ 172 # Naming hint for variable names 173 variable-name-hint=[a-z_][a-z0-9_]{2,30}$
|
/build/bazel/ |
D | common.bazelrc | 19 # Lock down the PATH variable in actions to /usr/bin and /usr/local/bin. 30 # variable. This prevents the need to double-escape characters like backslashes
|
/build/soong/linkerconfig/proto/ |
D | linker_config.proto | 42 // Paths should be related to the current module and can use "${LIB}" variable which is
|