/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() 109 Set<IPackage> toPackages = to.getPackages(); in compare() 114 IPackage to) { in compare() 115 return comparePackage(from, to); in compare() 119 IPackage to) { in compare() 120 return new SigPackageDelta(from, to); in compare() 124 IPackage to) { 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 | 31 private T to; field in SigDelta 33 public SigDelta(T from, T to) { in SigDelta() argument 35 this.to = to; in SigDelta() 43 return to; in getTo() 47 if (from == null && to != null) { in getType() 50 if (from != null && to == null) { in getType() 98 builder.append(to); 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 | 26 IGenericDeclaration to) { 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 | 29 IAnnotationElement to) { in SigAnnotationElementDelta() argument 30 super(from, to); in SigAnnotationElementDelta()
|
D | SigTypeVariableReferenceDelta.java | 30 ITypeVariableReference to) { in SigTypeVariableReferenceDelta() argument 31 super(from, to); in SigTypeVariableReferenceDelta()
|
/cts/tools/dex-tools/ |
D | README.txt | 4 The parser is able to read a dex file and to create a datastructure based on it. 5 It is designed to be fast and close to the spec. 6 Support for direct navigation to super classes and similar will be implemented in a layer on top of… 10 Feel free to improve!
|
/cts/tools/dasm/src/dasm/ |
D | DasmCatchBuilder.java | 46 String to; field in DasmCatchBuilder.UnprocessedCatch 62 UnprocessedCatch(String exception, String from, String to, in UnprocessedCatch() argument 65 this.to = to; in UnprocessedCatch() 154 if (uc.to.compareToIgnoreCase(end) != 0) in add() 159 + ") and different end addresses (" + uc.to in add() 184 lte = labels_table.get(uc.to); in build() 186 throw new RuntimeException("Label " + uc.to + " not defined"); in build() 187 CodeAddress to = lte.code_address; in build() local 214 CatchTable.Entry entry = new CatchTable.Entry(from.getAddress(), to in build()
|
/cts/hostsidetests/appsecurity/test-apps/SplitApp/ |
D | README | 3 the build_libs.sh script. Don't attempt to modify manually. To rebuild 4 the native code, make the following change to the NDK to pass through
|
/cts/tools/signature-tools/templates/ |
D | PackageOverviewPage.st | 17 …om/android/reference/$package_delta.to.packageFragments; separator="/"$/package-summary.html}, nam… 28 $Table(name="Added Classes and Interfaces", rows=added_classes:{$it.to:ClassReferenceLink()$}:Simpl… 33 $Table(name="Changed Classes and Interfaces", rows=changed_classes:{$it.to:ClassChangedLink()$}:Sim…
|
/cts/hostsidetests/theme/ |
D | README | 9 * Unless required by applicable law or agreed to in writing, software 21 theme tests, a device must be able to generate images that are identical to the 25 modifications to the reference images will invalidate the test results. 36 to generate references images for. Confirm that all devices are connected 57 2. Subsequent changes to the theme tests, including changes to the reference 65 1. Connect the device that you wish to test. Confirm that is is connected with: 73 3. Wait for the tests to complete. This should take less than five minutes.
|
/cts/tools/signature-tools/ |
D | README.txt | 6 #Signature model : A generic model to represent the structure of an API 11 #Delta model : A model to represent differences between two signature models 15 #Report engine : Translates a delta model to a html output based on templates (utilizing the Stri… 20 Feel free to improve! 50 spec : various input files to try the tool
|
/cts/tools/vm-tests-tf/src/dot/junit/opcodes/monitor_enter/d/ |
D | T_monitor_enter_2.d | 9 ; Unless required by applicable law or agreed to in writing, software 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
|
/cts/tools/signature-tools/templates/delta/ |
D | deltas.stg | 4 ADDED(delta) ::= "Added $ElementType(element=delta.to)$" 47 …lassReferenceDelta(delta) ::= "from $SigClass(element=delta.from)$ to $SigClass(element=delta.to)$" 111 SigPrimitiveTypeDelta(delta) ::= "from $delta.from$ to $delta.to$" 113 SigTypeDelta(delta) ::= "from $ElementType(element=delta.from)$ to $ElementType(element=delta.to)$"
|