/cts/tools/dasm/src/java_cup/ |
D | terminal_set.java | 28 public terminal_set(terminal_set other) in terminal_set() argument 31 not_null(other); in terminal_set() 32 _elements = (BitSet)other._elements.clone(); in terminal_set() 98 public boolean is_subset_of(terminal_set other) in is_subset_of() argument 101 not_null(other); in is_subset_of() 104 BitSet copy_other = (BitSet)other._elements.clone(); in is_subset_of() 110 return copy_other.equals(other._elements); in is_subset_of() 118 public boolean is_superset_of(terminal_set other) in is_superset_of() argument 121 not_null(other); in is_superset_of() 122 return other.is_subset_of(this); in is_superset_of() [all …]
|
D | symbol_set.java | 26 public symbol_set(symbol_set other) throws internal_error in symbol_set() argument 28 not_null(other); in symbol_set() 29 _all = (Hashtable)other._all.clone(); in symbol_set() 72 public boolean is_subset_of(symbol_set other) throws internal_error in is_subset_of() argument 74 not_null(other); in is_subset_of() 78 if (!other.contains((symbol)e.nextElement())) in is_subset_of() 90 public boolean is_superset_of(symbol_set other) throws internal_error in is_superset_of() argument 92 not_null(other); in is_superset_of() 93 return other.is_subset_of(this); in is_superset_of() 132 public boolean add(symbol_set other) throws internal_error in add() argument [all …]
|
D | lalr_item_set.java | 35 public lalr_item_set(lalr_item_set other) in lalr_item_set() argument 38 not_null(other); in lalr_item_set() 39 _all = (Hashtable)other._all.clone(); in lalr_item_set() 86 public boolean is_subset_of(lalr_item_set other) throws internal_error in is_subset_of() argument 88 not_null(other); in is_subset_of() 92 if (!other.contains((lalr_item)e.nextElement())) in is_subset_of() 104 public boolean is_superset_of(lalr_item_set other) throws internal_error in is_superset_of() argument 106 not_null(other); in is_superset_of() 107 return other.is_subset_of(this); in is_superset_of() 119 lalr_item other; in add() local [all …]
|
D | production_part.java | 51 public boolean equals(production_part other) in equals() argument 53 if (other == null) return false; in equals() 57 return label().equals(other.label()); in equals() 59 return other.label() == null; in equals() 65 public boolean equals(Object other) in equals() argument 67 if (!(other instanceof production_part)) in equals() 70 return equals((production_part)other); in equals()
|
D | parse_action.java | 55 public boolean equals(parse_action other) in equals() argument 58 return other != null && other.kind() == ERROR; in equals() 64 public boolean equals(Object other) in equals() argument 66 if (other instanceof parse_action) in equals() 67 return equals((parse_action)other); in equals()
|
D | action_part.java | 57 public boolean equals(action_part other) in equals() argument 60 return other != null && super.equals(other) && in equals() 61 other.code_string().equals(code_string()); in equals() 67 public boolean equals(Object other) in equals() argument 69 if (!(other instanceof action_part)) in equals() 72 return equals((action_part)other); in equals()
|
D | symbol_part.java | 61 public boolean equals(symbol_part other) in equals() argument 63 return other != null && super.equals(other) && in equals() 64 the_symbol().equals(other.the_symbol()); in equals() 70 public boolean equals(Object other) in equals() argument 72 if (!(other instanceof symbol_part)) in equals() 75 return equals((symbol_part)other); in equals()
|
D | shift_action.java | 50 public boolean equals(shift_action other) in equals() argument 52 return other != null && other.shift_to() == shift_to(); in equals() 58 public boolean equals(Object other) in equals() argument 60 if (other instanceof shift_action) in equals() 61 return equals((shift_action)other); in equals()
|
D | reduce_action.java | 50 public boolean equals(reduce_action other) in equals() argument 52 return other != null && other.reduce_with() == reduce_with(); in equals() 58 public boolean equals(Object other) in equals() argument 60 if (other instanceof reduce_action) in equals() 61 return equals((reduce_action)other); in equals()
|
D | lr_item_core.java | 162 public boolean core_equals(lr_item_core other) in core_equals() argument 164 return other != null && in core_equals() 165 _the_production.equals(other._the_production) && in core_equals() 166 _dot_pos == other._dot_pos; in core_equals() 172 public boolean equals(lr_item_core other) {return core_equals(other);} in equals() argument 177 public boolean equals(Object other) in equals() argument 179 if (!(other instanceof lr_item_core)) in equals() 182 return equals((lr_item_core)other); in equals()
|
D | lalr_item.java | 268 public boolean equals(lalr_item other) in equals() argument 270 if (other == null) return false; in equals() 271 return super.equals(other); in equals() 277 public boolean equals(Object other) in equals() argument 279 if (!(other instanceof lalr_item)) in equals() 282 return equals((lalr_item)other); in equals()
|
/cts/tools/signature-tools/src/signature/model/impl/ |
D | SigParameterizedType.java | 82 IParameterizedType other = (IParameterizedType) that; in equals() local 84 if (other.getOwnerType() != null) { in equals() 88 if (!Uninitialized.isInitialized(other.getOwnerType())) { in equals() 91 } else if (!thiz.getOwnerType().equals(other.getOwnerType())) { in equals() 94 if (!thiz.getRawType().equals(other.getRawType())) { in equals() 97 if (!thiz.getTypeArguments().equals(other.getTypeArguments())) { in equals()
|
D | SigArrayType.java | 54 IArrayType other = (IArrayType) that; in equals() local 55 return thiz.getComponentType().equals(other.getComponentType()); in equals()
|
/cts/suite/audio_quality/lib/src/ |
D | StringUtil.cpp | 57 int StringUtil::compare(const android::String8& str, const char* other) in compare() argument 59 return strcmp(str.string(), other); in compare() 62 bool StringUtil::endsWith(const android::String8& str, const char* other) in endsWith() argument 65 size_t l2 = strlen(other); in endsWith() 73 if (data[iStr] != other[iOther]) { in endsWith()
|
/cts/tools/vm-tests-tf/src/util/build/ |
D | JavacBuildStep.java | 78 JavacBuildStep other = (JavacBuildStep) obj; in equals() local 79 return destPath.equals(other.destPath) in equals() 80 && classPath.equals(other.classPath) in equals() 81 && sourceFiles.equals(other.sourceFiles); in equals()
|
D | JackBuildStep.java | 82 JackBuildStep other = (JackBuildStep) obj; in equals() local 83 return destPath.equals(other.destPath) && classPath.equals(other.classPath) in equals() 84 && sourceFiles.equals(other.sourceFiles); in equals()
|
D | JarBuildStep.java | 91 JarBuildStep other = (JarBuildStep) obj; in equals() local 92 return inputFile.equals(other.inputFile) in equals() 93 && outputFile.equals(other.outputFile) in equals() 94 && destFileName.equals(other.destFileName); in equals()
|
D | DxBuildStep.java | 74 DxBuildStep other = (DxBuildStep) obj; in equals() local 76 return inputFile.equals(other.inputFile) in equals() 77 && outputFile.equals(other.outputFile); in equals()
|
D | JillBuildStep.java | 64 JillBuildStep other = (JillBuildStep) obj; in equals() local 66 return inputFile.equals(other.inputFile) && outputFile.equals(other.outputFile); in equals()
|
D | JackDexBuildStep.java | 87 JackDexBuildStep other = (JackDexBuildStep) obj; in equals() local 89 return inputFile.equals(other.inputFile) in equals() 90 && outputFile.equals(other.outputFile); in equals()
|
D | DasmBuildStep.java | 161 DasmBuildStep other = (DasmBuildStep) obj; in equals() local 163 return inputFile.equals(other.inputFile) in equals() 164 && generate_linenum == other.generate_linenum in equals() 165 && outputFile.equals(other.outputFile); in equals()
|
/cts/tests/tests/hardware/src/android/hardware/camera2/cts/rs/ |
D | AllocationInfo.java | 376 public boolean equals(Object other) { in equals() argument 377 if (other instanceof AllocationInfo) { in equals() 378 return equals((AllocationInfo)other); in equals() 394 public boolean equals(AllocationInfo other) { in equals() argument 395 if (other == null) { in equals() 400 return mType.equals(other.mType) && mUsage == other.mUsage; in equals()
|
/cts/suite/audio_quality/lib/include/ |
D | StringUtil.h | 35 static int compare(const android::String8& str, const char* other); 36 static bool endsWith(const android::String8& str, const char* other);
|
/cts/tools/signature-tools/src/signature/converter/dex/ |
D | FieldPool.java | 54 FieldKey other = (FieldKey) obj; in equals() local 55 if (!fieldName.equals(other.fieldName)) { in equals() 58 if (!qualifiedClassName.equals(other.qualifiedClassName)) { in equals()
|
/cts/tests/tests/content/src/android/content/res/cts/ |
D | Resources_ThemeTest.java | 53 final Theme other = getContext().getTheme(); in testSetMethods() local 54 mResTheme.setTo(other); in testSetMethods() 100 Resources.Theme other = getContext().getResources().newTheme(); in testGetChangingConfigurations() local 101 other.setTo(theme); in testGetChangingConfigurations()
|