Home
last modified time | relevance | path

Searched refs:variable (Results 1 – 25 of 52) sorted by relevance

123

/build/bazel/product_variables/
Dsettings.bzl4 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()
Dconstants.bzl1 """Constants for product variables based on information in variable.go"""
/build/soong/android/
Dconfig_bp2build.go173 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/
DTODO2 * 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)
DAndroid.bp40 "variable.go",
Dvariable.go22 type variable interface { interface
275 func (ctx *parseContext) addVariable(name string) variable {
/build/soong/android/soongconfig/
Dmodules.go192 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/
Dcompdb.md6 compdb file generation is enabled via environment variable:
14 variable:
Dtidy.md13 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
Drbe.md18 variable and `ANDROID_BUILD_ENVIRONMENT_CONFIG` environment variable. The
/build/soong/partner/bpfix/extensions/
Dheaders.go28 variable string member
36 variable: "TARGET_OUT_HEADERS",
52 if arg0.Name == lib.variable && arg1.Value == lib.subdir {
/build/make/tools/
Dmk2bp_partition.py29 def get_build_var(variable, product, build_variant): argument
39 variable
/build/soong/bazel/
Dconfigurability.go214 func ProductVariableConfigurationAxis(variable string) ConfigurationAxis {
217 subType: variable,
/build/soong/third_party/zip/testdata/
Dreadme.notzip31 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/
Dandroid.go348 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/
Dproduct_platform.bzl1 """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/
DUsage.txt3 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/
Dandroid_binary.bzl32 # 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/
Dparser.go342 var variable Variable
343 variable = p.parseVariable()
344 if variable.Name == builtinDollarName {
347 value.appendVariable(variable)
/build/soong/cc/
Dcmakelists.go281 variable const
308 return variable
368 case variable:
/build/make/tools/rbcrun/
DREADME.md38 `"|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/
DREADME.md65 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/
Dpylintrc150 # 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/
Dcommon.bazelrc19 # 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/
Dlinker_config.proto42 // Paths should be related to the current module and can use "${LIB}" variable which is

123