/packages/apps/Settings/src/com/android/settings/notification/ |
D | ZenRuleInfo.java | 12 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/ |
D | ZenRuleInfo.java | 12 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/ |
D | LedConfiguration.java | 55 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/ |
D | Doxyfile.in | 14 # 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/ |
D | third_party_licenses | 30 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/ |
D | ChannelInfo.java | 194 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/ |
D | Utils.java | 66 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/ |
D | third_party_licenses | 43 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/ |
D | EventDataItem.java | 47 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()
|
D | RelationDataItem.java | 47 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()
|
D | DataItem.java | 192 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/ |
D | EventDataItem.java | 48 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()
|
D | RelationDataItem.java | 48 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/ |
D | TvContentRatingCacheTest.java | 101 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/ |
D | feature_mos_API_doxyfile | 11 # 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/ |
D | dbreg_API_doxyfile | 11 # 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/ |
D | NOTICE | 26 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/ |
D | NOTICE | 26 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/ |
D | NOTICE | 26 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/ |
D | NOTICE | 26 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/ |
D | NOTICE | 26 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/ |
D | NOTICE | 26 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/ |
D | NOTICE | 26 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/ |
D | NOTICE | 26 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/ |
D | NOTICE | 26 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 …]
|