Home
last modified time | relevance | path

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

1234

/build/make/tools/compliance/
Dconditionset.go50 func (cs LicenseConditionSet) Union(other ...LicenseConditionSet) LicenseConditionSet {
52 for _, ls := range other {
69 func (cs LicenseConditionSet) MatchingAnySet(other ...LicenseConditionSet) LicenseConditionSet {
71 for _, ls := range other {
89 func (cs LicenseConditionSet) MatchesAnySet(other ...LicenseConditionSet) bool {
90 for _, ls := range other {
110 func (cs LicenseConditionSet) MatchesEverySet(other ...LicenseConditionSet) bool {
111 for _, ls := range other {
121 func (cs LicenseConditionSet) Intersection(other ...LicenseConditionSet) LicenseConditionSet {
123 for _, ls := range other {
[all …]
Dpolicy_shareprivacyconflicts.go36 func (conflict SourceSharePrivacyConflict) IsEqualTo(other SourceSharePrivacyConflict) bool {
37 return conflict.SourceNode.name == other.SourceNode.name &&
38 conflict.ShareCondition == other.ShareCondition &&
39 conflict.PrivacyCondition == other.PrivacyCondition
/build/soong/android/
Dapi_levels.go110 func (this ApiLevel) CompareTo(other ApiLevel) int {
111 if this.IsPreview() && !other.IsPreview() {
113 } else if !this.IsPreview() && other.IsPreview() {
117 if this.number < other.number {
119 } else if this.number == other.number {
126 func (this ApiLevel) EqualTo(other ApiLevel) bool {
127 return this.CompareTo(other) == 0
130 func (this ApiLevel) GreaterThan(other ApiLevel) bool {
131 return this.CompareTo(other) > 0
134 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…
Dsdk.go489 Subtract(other SdkMemberTraitSet) SdkMemberTraitSet
523 func (s sdkMemberTraitSet) Subtract(other SdkMemberTraitSet) SdkMemberTraitSet {
524 if other.Empty() {
530 if !other.Contains(trait) {
/build/soong/java/
Dhiddenapi_monolithic.go83 func (i *MonolithicHiddenAPIInfo) append(other *HiddenAPIInfo) {
84 i.FlagsFilesByCategory.append(other.FlagFilesByCategory)
85 i.AnnotationFlagsPaths = append(i.AnnotationFlagsPaths, other.AnnotationFlagsPath)
86 i.MetadataPaths = append(i.MetadataPaths, other.MetadataPath)
87 i.IndexPaths = append(i.IndexPaths, other.IndexPath)
89 i.StubFlagSubsets = append(i.StubFlagSubsets, other.StubFlagSubset())
90 i.FlagSubsets = append(i.FlagSubsets, other.FlagSubset())
/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.py425 def CompareWith(self, other): argument
430 all_apks.update(other.apks.keys())
432 max_pkg_len = max(self.max_pkg_len, other.max_pkg_len)
438 if i in other.apks:
440 if self.apks[i].cert_digests != other.apks[i].cert_digests:
441 by_digestpair.setdefault((other.apks[i].cert_digests,
447 if i in other.apks:
449 i, other.apks[i].filename))
466 old_fn = other.apks[i].filename
Dcheck_target_files_signatures425 def CompareWith(self, other): argument
430 all_apks.update(other.apks.keys())
432 max_pkg_len = max(self.max_pkg_len, other.max_pkg_len)
438 if i in other.apks:
440 if self.apks[i].cert_digests != other.apks[i].cert_digests:
441 by_digestpair.setdefault((other.apks[i].cert_digests,
447 if i in other.apks:
449 i, other.apks[i].filename))
466 old_fn = other.apks[i].filename
/build/soong/bazel/
Dtesting.go39 func (mi TestModuleInfo) equals(other TestModuleInfo) bool {
40 return mi.ModuleName == other.ModuleName && mi.Typ == other.Typ && mi.Dir == other.Dir
68 for _, other := range omc.Modules {
69 if other.equals(mi) {
Dproperties.go76 func (ll *LabelList) Equals(other LabelList) bool {
77 if len(ll.Includes) != len(other.Includes) || len(ll.Excludes) != len(other.Excludes) {
81 if ll.Includes[i] != other.Includes[i] {
86 if ll.Excludes[i] != other.Excludes[i] {
127 func (ll *LabelList) Append(other LabelList) {
128 if len(ll.Includes) > 0 || len(other.Includes) > 0 {
129 ll.Includes = append(ll.Includes, other.Includes...)
131 if len(ll.Excludes) > 0 || len(other.Excludes) > 0 {
132 ll.Excludes = append(other.Excludes, other.Excludes...)
570 func (ll labelListSelectValues) appendSelects(other labelListSelectValues, forceSpecifyEmptyList bo…
[all …]
Dconfigurability.go230 func (ca *ConfigurationAxis) less(other ConfigurationAxis) bool {
231 if ca.configurationType < other.configurationType {
234 return ca.subType < other.subType
/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/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…
/build/bazel/
Dbazel.WORKSPACE9 # This repository provides files that Soong emits during bp2build (other than
36 … # TODO(b/210399979) - add the other .bp files to watch for the other modules built in these rule
/build/soong/androidmk/parser/
Dmake_strings.go94 func (ms *MakeString) appendMakeString(other *MakeString) {
96 ms.Strings[last] += other.Strings[0]
97 ms.Strings = append(ms.Strings, other.Strings[1:]...)
98 ms.Variables = append(ms.Variables, other.Variables...)
/build/make/target/board/generic_arm64/
DREADME.txt6 It is not a product "base class"; no other products inherit
/build/make/target/board/generic_x86_64/
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

1234