Home
last modified time | relevance | path

Searched refs:other (Results 1 – 25 of 74) sorted by relevance

123

/build/soong/android/
Dapi_levels.go107 func (this ApiLevel) CompareTo(other ApiLevel) int {
108 if this.IsPreview() && !other.IsPreview() {
110 } else if !this.IsPreview() && other.IsPreview() {
114 if this.number < other.number {
116 } else if this.number == other.number {
123 func (this ApiLevel) EqualTo(other ApiLevel) bool {
124 return this.CompareTo(other) == 0
127 func (this ApiLevel) GreaterThan(other ApiLevel) bool {
128 return this.CompareTo(other) > 0
131 func (this ApiLevel) GreaterThanOrEqualTo(other ApiLevel) bool {
[all …]
Dvisibility_test.go109 ` with any other visibility rules`,
111 ` with any other visibility rules`,
476 ` with any other visibility rules`,
597 ` with any other visibility rules`,
616 ` with any other visibility rules`,
635 ` with any other visibility rules`,
653 …`module "libexample": visibility: cannot mix "//visibility:private" with any other visibility rule…
671 …`module "libexample": visibility: cannot mix "//visibility:private" with any other visibility rule…
/build/make/tools/releasetools/
Drangelib.py49 def __eq__(self, other): argument
50 return self.data == other.data
52 def __ne__(self, other): argument
53 return self.data != other.data
159 def union(self, other): argument
171 zip(other.data, itertools.cycle((+1, -1)))):
177 def intersect(self, other): argument
189 zip(other.data, itertools.cycle((+1, -1)))):
195 def subtract(self, other): argument
208 zip(other.data, itertools.cycle((-1, +1)))):
[all …]
Dcheck_partition_sizes.py53 def CheckLe(self, other, level=logging.ERROR): argument
54 format_args = (self.desc, other.desc, self.expr, self.value,
55 other.expr, other.value)
56 if self.value <= other.value:
66 def CheckLt(self, other, level=logging.ERROR): argument
67 format_args = (self.desc, other.desc, self.expr, self.value,
68 other.expr, other.value)
69 if self.value < other.value:
80 def CheckEq(self, other): argument
81 format_args = (self.desc, other.desc, self.expr, self.value,
[all …]
Dcheck_target_files_signatures.py413 def CompareWith(self, other): argument
418 all_apks.update(other.apks.keys())
420 max_pkg_len = max(self.max_pkg_len, other.max_pkg_len)
426 if i in other.apks:
428 if self.apks[i].cert_digests != other.apks[i].cert_digests:
429 by_digestpair.setdefault((other.apks[i].cert_digests,
435 if i in other.apks:
437 i, other.apks[i].filename))
454 old_fn = other.apks[i].filename
Dcheck_target_files_signatures413 def CompareWith(self, other): argument
418 all_apks.update(other.apks.keys())
420 max_pkg_len = max(self.max_pkg_len, other.max_pkg_len)
426 if i in other.apks:
428 if self.apks[i].cert_digests != other.apks[i].cert_digests:
429 by_digestpair.setdefault((other.apks[i].cert_digests,
435 if i in other.apks:
437 i, other.apks[i].filename))
454 old_fn = other.apks[i].filename
/build/soong/java/
Dhiddenapi_monolithic.go94 func (i *MonolithicHiddenAPIInfo) append(other *HiddenAPIInfo) {
95 i.FlagsFilesByCategory.append(other.FlagFilesByCategory)
107 i.StubFlagsPaths = appendIfNotNil(i.StubFlagsPaths, other.StubFlagsPath)
108 i.AnnotationFlagsPaths = appendIfNotNil(i.AnnotationFlagsPaths, other.AnnotationFlagsPath)
109 i.MetadataPaths = appendIfNotNil(i.MetadataPaths, other.MetadataPath)
110 i.IndexPaths = appendIfNotNil(i.IndexPaths, other.IndexPath)
111 i.AllFlagsPaths = appendIfNotNil(i.AllFlagsPaths, other.AllFlagsPath)
/build/soong/cmd/extract_apks/bundle_proto/
Dtargeting.proto175 // Targeting of other sibling directories that were in the Bundle.
176 // For master splits this is targeting of other master splits.
182 // Targeting of other sibling directories that were in the Bundle.
183 // For master splits this is targeting of other master splits.
189 // Targeting of other sibling directories that were in the Bundle.
190 // For master splits this is targeting of other master splits.
197 // Targeting of other sibling directories that were in the Bundle.
198 // For master splits this is targeting of other master splits.
204 // Targeting of other sibling directories that were in the Bundle.
205 // For master splits this is targeting of other master splits.
[all …]
/build/blueprint/bootstrap/bpdoc/
Dproperties.go55 func (p *Property) Equal(other Property) bool {
56 return p.Name == other.Name && p.Type == other.Type && p.Tag == other.Tag &&
57 p.Text == other.Text && p.Default == other.Default &&
58 stringArrayEqual(p.OtherNames, other.OtherNames) &&
59 htmlArrayEqual(p.OtherTexts, other.OtherTexts) &&
60 p.SameSubProperties(other)
127 func (p *Property) SameSubProperties(other Property) bool {
128 if len(p.Properties) != len(other.Properties) {
133 if !p.Properties[i].Equal(other.Properties[i]) {
/build/soong/bazel/
Dproperties.go82 func (ll *LabelList) Append(other LabelList) {
83 if len(ll.Includes) > 0 || len(other.Includes) > 0 {
84 ll.Includes = append(ll.Includes, other.Includes...)
86 if len(ll.Excludes) > 0 || len(other.Excludes) > 0 {
87 ll.Excludes = append(other.Excludes, other.Excludes...)
322 func (attrs *LabelListAttribute) Append(other LabelListAttribute) {
325 that := other.GetValueForArch(arch)
332 that := other.GetValueForOS(os)
337 attrs.Value.Append(other.Value)
538 func (attrs *StringListAttribute) Append(other StringListAttribute) {
[all …]
/build/make/tools/fs_config/
Dfs_config_generator.py175 def __eq__(self, other): argument
177 return self.identifier == other.identifier \
178 and self.value == other.value and self.found == other.found \
179 and self.normalized_value == other.normalized_value \
180 and self.login_shell == other.login_shell
244 def __eq__(self, other): argument
246 return self.mode == other.mode and self.user == other.user \
247 and self.group == other.group and self.caps == other.caps \
248 and self.path == other.path and self.filename == other.filename
801 def __lt__(self, other): argument
[all …]
/build/soong/docs/
Dcompdb.md4 such as YouCompleteMe and other libclang based completers.
26 Note that if you build using mm or other limited makes with these environment
/build/make/core/tasks/
Dplatform_availability_check.mk40 they depend on other modules that are not available for platform)
52 it depends on other modules that are not available for platform.)
/build/make/core/
Ddex_preopt.mk11 install-on-system-other =
13 install-on-system-other = $(filter-out $(PRODUCT_DEXPREOPT_SPEED_APPS) $(PRODUCT_SYSTEM_SERVER_APPS…
DLINUX_KERNEL_COPYING32 Foundation's software and to any other program whose authors commit to
33 using it. (Some other Free Software Foundation software is covered by
78 0. This License applies to any program or other work which contains
88 Activities other than copying, distribution and modification are not
100 and give any other recipients of the Program a copy of this License
137 this License, whose permissions for other licensees extend to the
147 a storage or distribution medium does not bring the other work under
214 infringement or for any other reason (not limited to patent issues),
219 License and any other pertinent obligations, then as a consequence you
228 apply and the section as a whole is intended to apply in other
[all …]
/build/soong/androidmk/parser/
Dmake_strings.go84 func (ms *MakeString) appendMakeString(other *MakeString) {
86 ms.Strings[last] += other.Strings[0]
87 ms.Strings = append(ms.Strings, other.Strings[1:]...)
88 ms.Variables = append(ms.Variables, other.Variables...)
/build/make/target/board/generic_x86_64/
DREADME.txt6 It is not a product "base class"; no other products inherit
/build/make/target/board/generic_arm64/
DREADME.txt6 It is not a product "base class"; no other products inherit
/build/blueprint/
DCONTRIBUTING.md9 need to be sure of various other things—for instance that you'll tell us if you
10 know that your code infringes on other people's patents. You don't have to sign
/build/make/target/board/generic_x86/
DREADME.txt7 It is not a product "base class"; no other products inherit
/build/soong/
DOWNERS1 # This file is included by several other projects as the list of people
DREADME.md220 other words, "//_scope_:_name_" is globally unique module reference, e.g,
237 is searched for "_name_" (in other words, only the modules not belonging to an
283 used by other packages. Modules are always visible to other modules declared
295 * `["//some/package:__pkg__", "//other/package:__pkg__"]`: Only modules in
296 `some/package` and `other/package` (defined in `some/package/*.bp` and
297 `other/package/*.bp`) have access to this module. Note that sub-packages do not
299 `//other/package/testing:bla` wouldn't have access. `__pkg__` is a special
302 * `["//project:__subpackages__", "//other:__subpackages__"]`: Only modules in
303 packages `project` or `other` or in one of their sub-packages have access to
305 `//other/testing/internal:munge` are allowed to depend on this rule (but not
[all …]
/build/make/target/board/generic/
DREADME.txt8 It is not a product "base class"; no other products inherit
/build/make/target/board/generic_x86_arm/
DREADME.txt7 It is not a product "base class"; no other products inherit
/build/make/target/board/generic_x86_64_arm64/
DREADME.txt7 It is not a product "base class"; no other products inherit

123