Home
last modified time | relevance | path

Searched refs:that (Results 1 – 25 of 253) sorted by relevance

1234567891011

/packages/apps/Settings/src/com/android/settings/notification/
DZenRuleInfo.java12 ZenRuleInfo that = (ZenRuleInfo) o; in equals()
14 if (isSystem != that.isSystem) return false; in equals()
15 if (ruleInstanceLimit != that.ruleInstanceLimit) return false; in equals()
16 if (packageName != null ? !packageName.equals(that.packageName) : that.packageName != null) in equals()
18 if (title != null ? !title.equals(that.title) : that.title != null) return false; in equals()
20 that.settingsAction) : that.settingsAction != null) return false; in equals()
22 that.configurationActivity) : that.configurationActivity != null) return false; in equals()
24 that.defaultConditionId) : that.defaultConditionId != null) return false; in equals()
26 that.serviceComponent) : that.serviceComponent != null) return false; in equals()
27 if (id != null ? !id.equals(that.id) : that.id != null) in equals()
[all …]
/packages/services/Car/tests/CarDeveloperOptions/src/com/android/car/developeroptions/notification/
DZenRuleInfo.java12 ZenRuleInfo that = (ZenRuleInfo) o; in equals()
14 if (isSystem != that.isSystem) return false; in equals()
15 if (ruleInstanceLimit != that.ruleInstanceLimit) return false; in equals()
16 if (packageName != null ? !packageName.equals(that.packageName) : that.packageName != null) in equals()
18 if (title != null ? !title.equals(that.title) : that.title != null) return false; in equals()
20 that.settingsAction) : that.settingsAction != null) return false; in equals()
22 that.configurationActivity) : that.configurationActivity != null) return false; in equals()
24 that.defaultConditionId) : that.defaultConditionId != null) return false; in equals()
26 that.serviceComponent) : that.serviceComponent != null) return false; in equals()
27 if (id != null ? !id.equals(that.id) : that.id != null) in equals()
[all …]
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/util/bluetooth/
DLedConfiguration.java55 public LedConfiguration(LedConfiguration that) { in LedConfiguration() argument
56 this.color0 = that.color0; in LedConfiguration()
57 this.color1 = that.color1; in LedConfiguration()
58 this.pulse = that.pulse; in LedConfiguration()
66 final LedConfiguration that = (LedConfiguration)o; in equals() local
67 return areColorsEqual(that) in equals()
68 && this.pulse == that.pulse in equals()
69 && this.isTransient == that.isTransient; in equals()
72 public boolean areColorsEqual(LedConfiguration that) { in areColorsEqual() argument
73 if (that == null) { in areColorsEqual()
[all …]
/packages/apps/Test/connectivity/sl4n/rapidjson/doc/
DDoxyfile.in14 # Values that contain spaces should be placed between quotes (\" \").
21 # that follow. The default is UTF-8 which is also the encoding used for all text
30 # double-quotes, unless you are using Doxywizard) that should identify the
44 # for a project that appears at the top of each page and should give viewer a
49 # With the PROJECT_LOGO tag one can specify an logo or icon that is included in
97 # descriptions after the members that are listed in the file and class
112 # This tag implements a quasi-intelligent brief description abbreviator that is
141 # inherited members of a class in the documentation of that class as if those
150 # shortest path that makes the file name unique will be used
161 # Note that you can specify absolute paths here, but also relative paths, which
[all …]
/packages/apps/Dialer/java/com/android/dialer/about/res/raw/
Dthird_party_licenses30 the copyright owner that is granting the License.
33 other entities that control, are controlled by, or are under common
34 control with that entity. For the purposes of this definition,
54 copyright notice that is included in or attached to the work
58 form, that is based on (or derived from) the Work and for which the
61 of this License, Derivative Works shall not include works that remain
67 to that Work or Derivative Works thereof, that is intentionally
74 and issue tracking systems that are managed by, or on behalf of, the
76 excluding communication that is conspicuously marked or otherwise
96 by such Contributor that are necessarily infringed by their
[all …]
/packages/apps/TV/tests/common/src/com/android/tv/testing/data/
DChannelInfo.java194 ChannelInfo that = (ChannelInfo) o; in equals() local
195 return Objects.equals(originalNetworkId, that.originalNetworkId) in equals()
196 && Objects.equals(videoWidth, that.videoWidth) in equals()
197 && Objects.equals(videoHeight, that.videoHeight) in equals()
198 && Objects.equals(audioChannel, that.audioChannel) in equals()
199 && Objects.equals(audioLanguageCount, that.audioLanguageCount) in equals()
200 && Objects.equals(hasClosedCaption, that.hasClosedCaption) in equals()
201 && Objects.equals(appLinkColor, that.appLinkColor) in equals()
202 && Objects.equals(number, that.number) in equals()
203 && Objects.equals(name, that.name) in equals()
[all …]
/packages/providers/TvProvider/tests/src/com/android/providers/tv/
DUtils.java66 BaseProgram that = (BaseProgram) obj; in equals() local
67 return Objects.equals(id, that.id) in equals()
68 && Objects.equals(packageName, that.packageName); in equals()
96 Program that = (Program) obj; in equals() local
97 return Objects.equals(id, that.id) in equals()
98 && Objects.equals(packageName, that.packageName); in equals()
116 PreviewProgram that = (PreviewProgram) obj; in equals() local
117 return Objects.equals(id, that.id) in equals()
118 && Objects.equals(packageName, that.packageName); in equals()
138 RecordedProgram that = (RecordedProgram) obj; in equals() local
[all …]
/packages/apps/TV/res/raw/
Dthird_party_licenses43 the copyright owner that is granting the License.
46 other entities that control, are controlled by, or are under common
47 control with that entity. For the purposes of this definition,
67 copyright notice that is included in or attached to the work
71 form, that is based on (or derived from) the Work and for which the
74 of this License, Derivative Works shall not include works that remain
80 to that Work or Derivative Works thereof, that is intentionally
87 and issue tracking systems that are managed by, or on behalf of, the
89 excluding communication that is conspicuously marked or otherwise
109 by such Contributor that are necessarily infringed by their
[all …]
/packages/apps/Dialer/java/com/android/contacts/common/model/dataitem/
DEventDataItem.java47 final EventDataItem that = (EventDataItem) t; in shouldCollapseWith() local
49 if (!TextUtils.equals(getStartDate(), that.getStartDate())) { in shouldCollapseWith()
51 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) { in shouldCollapseWith()
52 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind()); in shouldCollapseWith()
53 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) { in shouldCollapseWith()
56 && !TextUtils.equals(getLabel(), that.getLabel())) { in shouldCollapseWith()
DRelationDataItem.java47 final RelationDataItem that = (RelationDataItem) t; in shouldCollapseWith() local
49 if (!TextUtils.equals(getName(), that.getName())) { in shouldCollapseWith()
51 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) { in shouldCollapseWith()
52 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind()); in shouldCollapseWith()
53 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) { in shouldCollapseWith()
56 && !TextUtils.equals(getLabel(), that.getLabel())) { in shouldCollapseWith()
DDataItem.java192 public void collapseWith(DataItem that) { in collapseWith() argument
194 DataKind thatKind = that.getDataKind(); in collapseWith()
197 if ((!hasKindTypeColumn(thisKind) && that.hasKindTypeColumn(thatKind)) in collapseWith()
198 || (that.hasKindTypeColumn(thatKind) in collapseWith()
200 > getTypePrecedence(thatKind, that.getKindTypeColumn(thatKind)))) { in collapseWith()
201 mContentValues.put(thatKind.typeColumn, that.getKindTypeColumn(thatKind)); in collapseWith()
209 if (isSuperPrimary() || that.isSuperPrimary()) { in collapseWith()
215 if (isPrimary() || that.isPrimary()) { in collapseWith()
223 + (that.getTimesUsed() == null ? 0 : that.getTimesUsed())); in collapseWith()
230 that.getLastTimeUsed() == null ? 0 : that.getLastTimeUsed())); in collapseWith()
/packages/apps/Contacts/src/com/android/contacts/model/dataitem/
DEventDataItem.java48 final EventDataItem that = (EventDataItem) t; in shouldCollapseWith() local
50 if (!TextUtils.equals(getStartDate(), that.getStartDate())) { in shouldCollapseWith()
52 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) { in shouldCollapseWith()
53 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind()); in shouldCollapseWith()
54 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) { in shouldCollapseWith()
57 !TextUtils.equals(getLabel(), that.getLabel())) { in shouldCollapseWith()
DRelationDataItem.java48 final RelationDataItem that = (RelationDataItem) t; in shouldCollapseWith() local
50 if (!TextUtils.equals(getName(), that.getName())) { in shouldCollapseWith()
52 } else if (!hasKindTypeColumn(mKind) || !that.hasKindTypeColumn(that.getDataKind())) { in shouldCollapseWith()
53 return hasKindTypeColumn(mKind) == that.hasKindTypeColumn(that.getDataKind()); in shouldCollapseWith()
54 } else if (getKindTypeColumn(mKind) != that.getKindTypeColumn(that.getDataKind())) { in shouldCollapseWith()
57 !TextUtils.equals(getLabel(), that.getLabel())) { in shouldCollapseWith()
/packages/apps/TV/common/tests/robotests/src/com/android/tv/common/
DTvContentRatingCacheTest.java101 assertWithMessage("ratings string").that(result).isNull(); in testContentRatingsToString_null()
107 assertWithMessage("ratings string").that(result).isEmpty(); in testContentRatingsToString_none()
116 .that(result) in testContentRatingsToString_one()
127 assertWithMessage("ratings string").that(result).isEqualTo(MA_AND_Y7); in testContentRatingsToString_twoInOrder()
137 assertWithMessage("ratings string").that(result).isEqualTo(MA_AND_Y7); in testContentRatingsToString_twoNotInOrder()
148 .that(result) in testContentRatingsToString_double()
173 .that(results) in testStringToContentRatings_oneGoodOneBad()
183 .that(results) in testStringToContentRatings_one()
192 .that(results) in testStringToContentRatings_twoNotInOrder()
203 .that(results) in testStringToContentRatings_twoInOrder()
[all …]
/packages/apps/LegacyCamera/jni/feature_mos/doc/
Dfeature_mos_API_doxyfile11 # Values that contain spaces should be placed between quotes (" ")
18 # that follow. The default is UTF-8 which is also the encoding used for all
26 # by quotes) that should identify the project.
66 # include brief member descriptions after the members that are listed in
80 # that is used to form the text in various listings. Each string
108 # inherited members of a class in the documentation of that class as if those
116 # to NO the shortest path that makes the file name unique will be used.
133 # definition is used. Otherwise one should specify the include paths that
169 # member inherits the documentation from any documented member that it
176 # be part of the file/class/namespace that contains it.
[all …]
/packages/apps/LegacyCamera/jni/feature_stab/doc/
Ddbreg_API_doxyfile11 # Values that contain spaces should be placed between quotes (" ")
18 # that follow. The default is UTF-8 which is also the encoding used for all
26 # by quotes) that should identify the project.
66 # include brief member descriptions after the members that are listed in
80 # that is used to form the text in various listings. Each string
108 # inherited members of a class in the documentation of that class as if those
116 # to NO the shortest path that makes the file name unique will be used.
133 # definition is used. Otherwise one should specify the include paths that
169 # member inherits the documentation from any documented member that it
176 # be part of the file/class/namespace that contains it.
[all …]
/packages/apps/CertInstaller/
DNOTICE26 the copyright owner that is granting the License.
29 other entities that control, are controlled by, or are under common
30 control with that entity. For the purposes of this definition,
50 copyright notice that is included in or attached to the work
54 form, that is based on (or derived from) the Work and for which the
57 of this License, Derivative Works shall not include works that remain
63 to that Work or Derivative Works thereof, that is intentionally
70 and issue tracking systems that are managed by, or on behalf of, the
72 excluding communication that is conspicuously marked or otherwise
92 by such Contributor that are necessarily infringed by their
[all …]
/packages/apps/TimeZoneUpdater/
DNOTICE26 the copyright owner that is granting the License.
29 other entities that control, are controlled by, or are under common
30 control with that entity. For the purposes of this definition,
50 copyright notice that is included in or attached to the work
54 form, that is based on (or derived from) the Work and for which the
57 of this License, Derivative Works shall not include works that remain
63 to that Work or Derivative Works thereof, that is intentionally
70 and issue tracking systems that are managed by, or on behalf of, the
72 excluding communication that is conspicuously marked or otherwise
92 by such Contributor that are necessarily infringed by their
[all …]
/packages/apps/SpareParts/
DNOTICE26 the copyright owner that is granting the License.
29 other entities that control, are controlled by, or are under common
30 control with that entity. For the purposes of this definition,
50 copyright notice that is included in or attached to the work
54 form, that is based on (or derived from) the Work and for which the
57 of this License, Derivative Works shall not include works that remain
63 to that Work or Derivative Works thereof, that is intentionally
70 and issue tracking systems that are managed by, or on behalf of, the
72 excluding communication that is conspicuously marked or otherwise
92 by such Contributor that are necessarily infringed by their
[all …]
/packages/wallpapers/LivePicker/
DNOTICE26 the copyright owner that is granting the License.
29 other entities that control, are controlled by, or are under common
30 control with that entity. For the purposes of this definition,
50 copyright notice that is included in or attached to the work
54 form, that is based on (or derived from) the Work and for which the
57 of this License, Derivative Works shall not include works that remain
63 to that Work or Derivative Works thereof, that is intentionally
70 and issue tracking systems that are managed by, or on behalf of, the
72 excluding communication that is conspicuously marked or otherwise
92 by such Contributor that are necessarily infringed by their
[all …]
/packages/providers/MediaProvider/
DNOTICE26 the copyright owner that is granting the License.
29 other entities that control, are controlled by, or are under common
30 control with that entity. For the purposes of this definition,
50 copyright notice that is included in or attached to the work
54 form, that is based on (or derived from) the Work and for which the
57 of this License, Derivative Works shall not include works that remain
63 to that Work or Derivative Works thereof, that is intentionally
70 and issue tracking systems that are managed by, or on behalf of, the
72 excluding communication that is conspicuously marked or otherwise
92 by such Contributor that are necessarily infringed by their
[all …]
/packages/apps/HTMLViewer/
DNOTICE26 the copyright owner that is granting the License.
29 other entities that control, are controlled by, or are under common
30 control with that entity. For the purposes of this definition,
50 copyright notice that is included in or attached to the work
54 form, that is based on (or derived from) the Work and for which the
57 of this License, Derivative Works shall not include works that remain
63 to that Work or Derivative Works thereof, that is intentionally
70 and issue tracking systems that are managed by, or on behalf of, the
72 excluding communication that is conspicuously marked or otherwise
92 by such Contributor that are necessarily infringed by their
[all …]
/packages/services/Car/tests/CarDeveloperOptions/
DNOTICE26 the copyright owner that is granting the License.
29 other entities that control, are controlled by, or are under common
30 control with that entity. For the purposes of this definition,
50 copyright notice that is included in or attached to the work
54 form, that is based on (or derived from) the Work and for which the
57 of this License, Derivative Works shall not include works that remain
63 to that Work or Derivative Works thereof, that is intentionally
70 and issue tracking systems that are managed by, or on behalf of, the
72 excluding communication that is conspicuously marked or otherwise
92 by such Contributor that are necessarily infringed by their
[all …]
/packages/apps/QuickSearchBox/
DNOTICE26 the copyright owner that is granting the License.
29 other entities that control, are controlled by, or are under common
30 control with that entity. For the purposes of this definition,
50 copyright notice that is included in or attached to the work
54 form, that is based on (or derived from) the Work and for which the
57 of this License, Derivative Works shall not include works that remain
63 to that Work or Derivative Works thereof, that is intentionally
70 and issue tracking systems that are managed by, or on behalf of, the
72 excluding communication that is conspicuously marked or otherwise
92 by such Contributor that are necessarily infringed by their
[all …]
/packages/apps/BasicSmsReceiver/
DNOTICE26 the copyright owner that is granting the License.
29 other entities that control, are controlled by, or are under common
30 control with that entity. For the purposes of this definition,
50 copyright notice that is included in or attached to the work
54 form, that is based on (or derived from) the Work and for which the
57 of this License, Derivative Works shall not include works that remain
63 to that Work or Derivative Works thereof, that is intentionally
70 and issue tracking systems that are managed by, or on behalf of, the
72 excluding communication that is conspicuously marked or otherwise
92 by such Contributor that are necessarily infringed by their
[all …]

1234567891011