Home
last modified time | relevance | path

Searched refs:optional (Results 1 – 24 of 24) sorted by relevance

/build/soong/ui/status/ninja_frontend/
Dfrontend.proto25 optional uint32 total_edges = 1;
30 optional uint32 parallelism = 1;
32 optional bool verbose = 2;
40 optional uint32 id = 1;
42 optional uint32 start_time = 2;
48 optional string desc = 5;
50 optional string command = 6;
52 optional bool console = 7;
57 optional uint32 id = 1;
59 optional uint32 end_time = 2;
[all …]
/build/soong/ui/metrics/metrics_proto/
Dmetrics.proto22 optional int64 build_date_timestamp = 1;
25 optional string build_id = 2;
28 optional string platform_version_codename = 3;
31 optional string target_product = 4;
39 optional BuildVariant target_build_variant = 5 [default = ENG];
49 optional Arch target_arch = 6 [default = UNKNOWN];
52 optional string target_arch_variant = 7;
55 optional string target_cpu_variant = 8;
58 optional Arch host_arch = 9 [default = UNKNOWN];
61 optional Arch host_2nd_arch = 10 [default = UNKNOWN];
[all …]
/build/soong/scripts/
Dmanifest_check.py77 def enforce_uses_libraries(manifest, required, optional, relax, is_apk, path): argument
93 if manifest_required == required and manifest_optional == optional:
101 '\t- optional libraries in build system: [%s]\n' % ', '.join(optional),
127 optional = []
135 optional.append(libname)
138 optional = first_unique_elements(optional)
140 return required, optional, tags
159 optional = [uses_library_name(x) for x in libs if not uses_library_required(x)]
167 optional = first_unique_elements(optional)
169 return required, optional, tags
[all …]
/build/soong/bloaty/
Dfile_sections.proto20 optional string name = 1;
23 optional uint64 file_size = 2;
26 optional uint64 vm_size = 3;
31 optional string path = 1;
/build/soong/ui/metrics/upload_proto/
Dupload.proto22 optional uint64 creation_timestamp_ms = 1;
25 optional uint64 completion_timestamp_ms = 2;
28 optional string branch_name = 3;
31 optional string target_name = 4;
/build/make/tools/
Dpost_process_props.py139 p.optional = False
154 optional_props[-1].optional = False
160 def __init__(self, name, value, optional=False, comment=None): argument
167 self.optional = optional
176 return Prop(name, value, optional=True)
179 return Prop(name, value, optional=False)
189 return (not self.is_comment()) and self.optional
/build/soong/ui/status/build_error_proto/
Dbuild_error.proto33 optional string description = 1;
36 optional string command = 2;
39 optional string output = 3;
45 optional string error = 5;
/build/soong/ui/status/build_progress_proto/
Dbuild_progress.proto23 optional uint64 total_actions = 1;
30 optional uint64 finished_actions = 2;
34 optional uint64 current_actions = 3;
37 optional uint64 failed_actions = 4;
/build/make/core/
Dandroid_manifest.mk99 echo $(PRIVATE_OPTIONAL_SDK_LIB_NAMES) | tr ' ' '\n' > $(PRIVATE_EXPORTED_SDK_LIBS_FILE).optional
107 …_EXPORTED_SDK_LIBS_FILE) | grep -v -f $(PRIVATE_EXPORTED_SDK_LIBS_FILE).optional | sort -u | sed -…
108 …$$(cat $(PRIVATE_EXPORTED_SDK_LIBS_FILE) | grep -f $(PRIVATE_EXPORTED_SDK_LIBS_FILE).optional | so…
111 rm $(PRIVATE_EXPORTED_SDK_LIBS_FILE).optional
Dbase_rules.mk154 my_module_tags := optional
182 ifneq ($(filter-out tests optional samples,$(my_module_tags)),)
183 $(call pretty-error,unusual tags: $(filter-out tests optional samples,$(my_module_tags)))
1056 $(foreach tag,$(filter-out optional,$(my_module_tags)),\
Ddex_preopt_odex_install.mk242 my_optional_uses_libs_args := $(patsubst %,--optional-uses-library %, \
Dpackage_internal.mk54 LOCAL_MODULE_TAGS := optional
/build/soong/cmd/sbox/sbox_proto/
Dsbox.proto27 optional string output_depfile = 2;
38 optional bool chdir = 2;
47 // An optional hash of the input files to ensure the textproto files and the sbox rule reruns
49 optional string input_hash = 5;
64 optional bool executable = 3;
/build/make/tools/releasetools/
Dtest_non_ab_ota.py35 self.assertEqual((), property_files.optional)
Dota_utils.py437 self.optional = ()
530 for entry in self.optional:
Dtest_ota_from_target_files.py692 self.optional = (
841 property_files.optional)
940 property_files.optional)
Dpylintrc261 # List of optional constructs for which whitespace checking is disabled
Dota_from_target_files.py531 self.optional = (
/build/soong/androidmk/androidmk/
Dandroidmk_test.go342 LOCAL_MODULE_TAGS := optional
1130 LOCAL_MODULE_TAGS := optional
1149 LOCAL_MODULE_TAGS := optional
1313 LOCAL_MODULE_TAGS := optional
/build/make/
DUsage.txt25 Each of <options>, <targets>, and <variable>=<value> is optional.
DChanges.md116 System properties can now be set as optional using the new syntax:
121 is no other non-optional assignments having the same name. For example, the
126 Note that the order between the optional and the non-optional assignments
/build/soong/java/
Dapp_test.go2369 `--optional-uses-library bar ` +
2370 `--optional-uses-library baz `
2378 `--optional-uses-library bar ` +
2379 `--optional-uses-library baz `
Dapp.go1205 func (u *usesLibrary) addLib(lib string, optional bool) {
1207 if optional {
/build/blueprint/
Dcontext.go1197 subBlueprintsName string, optional bool) ([]string, []error) {
1217 if len(matches) == 0 && !optional {