/cts/tools/signature-tools/src/signature/compare/ |
D | ApiComparator.java | 105 public IApiDelta compare(IApi from, IApi to) { in compare() argument 106 assert from.getVisibility() == to.getVisibility(); in compare() 108 Set<IPackage> fromPackages = from.getPackages(); in compare() 113 public IPackageDelta createChangedDelta(IPackage from, in compare() 115 return comparePackage(from, to); in compare() 118 public IPackageDelta createAddRemoveDelta(IPackage from, in compare() 120 return new SigPackageDelta(from, to); in compare() 123 public boolean considerEqualElement(IPackage from, in compare() 125 return from.getName().equals(to.getName()); in compare() 131 delta = new SigApiDelta(from, to); in compare() [all …]
|
/cts/tools/signature-tools/src/signature/compare/model/impl/ |
D | SigDelta.java | 30 private T from; field in SigDelta 33 public SigDelta(T from, T to) { in SigDelta() argument 34 this.from = from; in SigDelta() 39 return from; in getFrom() 47 if (from == null && to != null) { in getType() 50 if (from != null && to == null) { in getType() 96 builder.append(from); in toString()
|
D | SigValueDelta.java | 23 public SigValueDelta(Object from, Object to) { in SigValueDelta() argument 24 super(from, to); in SigValueDelta()
|
D | SigFieldDelta.java | 25 public SigFieldDelta(IField from, IField to) { in SigFieldDelta() argument 26 super(from, to); in SigFieldDelta()
|
D | SigConstructorDelta.java | 25 public SigConstructorDelta(IConstructor from, IConstructor to) { in SigConstructorDelta() argument 26 super(from, to); in SigConstructorDelta()
|
D | SigGenericDeclarationDelta.java | 25 public SigGenericDeclarationDelta(IGenericDeclaration from, in SigGenericDeclarationDelta() argument 27 super(from, to); in SigGenericDeclarationDelta()
|
D | SigPrimitiveTypeDelta.java | 25 public SigPrimitiveTypeDelta(IPrimitiveType from, IPrimitiveType to) { in SigPrimitiveTypeDelta() argument 26 super(from, to); in SigPrimitiveTypeDelta()
|
D | SigModifierDelta.java | 25 public SigModifierDelta(Modifier from, Modifier to) { in SigModifierDelta() argument 26 super(from, to); in SigModifierDelta()
|
D | SigClassReferenceDelta.java | 25 public SigClassReferenceDelta(IClassReference from, IClassReference to) { in SigClassReferenceDelta() argument 26 super(from, to); in SigClassReferenceDelta()
|
D | SigTypeDefinitionDelta.java | 25 public SigTypeDefinitionDelta(T from, T to) { in SigTypeDefinitionDelta() argument 26 super(from, to); in SigTypeDefinitionDelta()
|
D | SigTypeDelta.java | 25 public SigTypeDelta(T from, T to) { in SigTypeDelta() argument 26 super(from, to); in SigTypeDelta()
|
D | SigAnnotationFieldDelta.java | 28 public SigAnnotationFieldDelta(IAnnotationField from, IAnnotationField to) { in SigAnnotationFieldDelta() argument 29 super(from, to); in SigAnnotationFieldDelta()
|
D | SigArrayTypeDelta.java | 28 public SigArrayTypeDelta(IArrayType from, IArrayType to) { in SigArrayTypeDelta() argument 29 super(from, to); in SigArrayTypeDelta()
|
D | SigEnumConstantDelta.java | 28 public SigEnumConstantDelta(IEnumConstant from, IEnumConstant to) { in SigEnumConstantDelta() argument 29 super(from, to); in SigEnumConstantDelta()
|
D | SigMethodDelta.java | 28 public SigMethodDelta(IMethod from, IMethod to) { in SigMethodDelta() argument 29 super(from, to); in SigMethodDelta()
|
D | SigAnnotationElementDelta.java | 28 public SigAnnotationElementDelta(IAnnotationElement from, in SigAnnotationElementDelta() argument 30 super(from, to); in SigAnnotationElementDelta()
|
D | SigTypeVariableReferenceDelta.java | 29 public SigTypeVariableReferenceDelta(ITypeVariableReference from, in SigTypeVariableReferenceDelta() argument 31 super(from, to); in SigTypeVariableReferenceDelta()
|
D | SigAnnotationDelta.java | 30 public SigAnnotationDelta(IAnnotation from, IAnnotation to) { in SigAnnotationDelta() argument 31 super(from, to); in SigAnnotationDelta()
|
D | SigApiDelta.java | 29 public SigApiDelta(IApi from, IApi to) { in SigApiDelta() argument 30 super(from, to); in SigApiDelta()
|
D | SigTypeVariableDefinitionDelta.java | 31 public SigTypeVariableDefinitionDelta(ITypeVariableDefinition from, in SigTypeVariableDefinitionDelta() argument 33 super(from, to); in SigTypeVariableDefinitionDelta()
|
D | SigWildcardTypeDelta.java | 30 public SigWildcardTypeDelta(IWildcardType from, IWildcardType to) { in SigWildcardTypeDelta() argument 31 super(from, to); in SigWildcardTypeDelta()
|
D | SigUpperBoundsDelta.java | 32 public SigUpperBoundsDelta(List<ITypeReference> from, in SigUpperBoundsDelta() argument 34 super(from, to); in SigUpperBoundsDelta()
|
/cts/tools/dasm/src/dasm/ |
D | DasmCatchBuilder.java | 45 String from; field in DasmCatchBuilder.UnprocessedCatch 62 UnprocessedCatch(String exception, String from, String to, in UnprocessedCatch() argument 64 this.from = from; in UnprocessedCatch() 153 if (uc.from.compareToIgnoreCase(start) == 0) { in add() 158 + uc.from in add() 178 LabelTableEntry lte = labels_table.get(uc.from); in build() 181 throw new RuntimeException("Label " + uc.from + " not defined"); in build() 182 CodeAddress from = lte.code_address; in build() local 214 CatchTable.Entry entry = new CatchTable.Entry(from.getAddress(), to in build()
|
/cts/tools/signature-tools/templates/delta/ |
D | deltas.stg | 7 REMOVED(delta) ::= "Removed $ElementType(element=delta.from)$" 47 SigClassReferenceDelta(delta) ::= "from $SigClass(element=delta.from)$ to $SigClass(element=delta.t… 111 SigPrimitiveTypeDelta(delta) ::= "from $delta.from$ to $delta.to$" 113 SigTypeDelta(delta) ::= "from $ElementType(element=delta.from)$ to $ElementType(element=delta.to)$"
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_enter/d/ |
D | T_monitor_enter_2.d | 78 .catch all from Label13 to Label14 using Label46 79 .catch all from Label16 to Label20 using Label46 80 .catch all from Label22 to Label23 using Label46 81 .catch all from Label35 to Label37 using Label46 82 .catch all from Label46 to Label53 using Label46
|