Home
last modified time | relevance | path

Searched refs:change (Results 1 – 25 of 52) sorted by relevance

123

/tools/platform-compat/java/android/processor/compat/changeid/
DXmlWriter.java84 void addChange(Change change) { in addChange() argument
86 newElement.setAttribute(XML_NAME_ATTR, change.name); in addChange()
87 newElement.setAttribute(XML_ID_ATTR, change.id.toString()); in addChange()
88 if (change.disabled) { in addChange()
91 if (change.loggingOnly) { in addChange()
94 if (change.enabledAfter != null) { in addChange()
95 newElement.setAttribute(XML_ENABLED_AFTER_ATTR, change.enabledAfter.toString()); in addChange()
97 if (change.enabledSince != null) { in addChange()
98 newElement.setAttribute(XML_ENABLED_SINCE_ATTR, change.enabledSince.toString()); in addChange()
100 if (change.description != null) { in addChange()
[all …]
DChangeIdProcessor.java88 Change change = in process() local
90 writer.addChange(change); in process()
229 private Change verifyChange(Element element, Change change) { in verifyChange() argument
230 if (change.disabled && (change.enabledAfter != null || change.enabledSince != null)) { in verifyChange()
237 if (change.loggingOnly && (change.disabled || change.enabledAfter != null in verifyChange()
238 || change.enabledSince != null)) { in verifyChange()
245 if (change.enabledAfter != null && change.enabledSince != null) { in verifyChange()
252 return change; in verifyChange()
/tools/metalava/metalava/src/test/java/com/android/tools/metalava/compatibility/
DThrowsCompatibilityTest.kt31 fun `Incompatible method change -- throws list -- java`() { in Incompatible method change -- throws list -- java()
74 fun `Incompatible method change -- throws list -- kt`() { in Incompatible method change -- throws list -- kt()
125 fun `Incompatible method change -- throws list -- type parameter`() { in Incompatible method change -- throws list -- type parameter()
DCompatibilityCheckTest.kt993 fun `Change field constant value, change field type`() { in Change field constant value, change field type()
1059 fun `Change annotation default method value change`() { in Change annotation default method value change()
1108 fun `Incompatible class change -- class to interface`() { in Incompatible class change -- class to interface()
1136 fun `Incompatible class change -- change implemented interfaces`() { in Incompatible class change -- change implemented interfaces()
1165 fun `Incompatible class change -- change qualifiers`() { in Incompatible class change -- change qualifiers()
1195 fun `Incompatible class change -- final`() { in Incompatible class change -- final()
1248 fun `Incompatible class change -- visibility`() { in Incompatible class change -- visibility()
1289 fun `Incompatible class change -- superclass`() { in Incompatible class change -- superclass()
1408 fun `Incompatible method change -- modifiers`() { in Incompatible method change -- modifiers()
1444 fun `Incompatible method change -- final`() { in Incompatible method change -- final()
[all …]
/tools/netsim/guide/src/ui/
DREADME.md23 1. Click on the device you wish to change orientation.
24 2. On the **Device Info** panel, change the **Orientation** by moving around the range inputs.
30 1. Click on the device you wish to change radio state.
/tools/treble/split/
Dmanifest_diff_test.py24 def _canonicalize(change): argument
27 for identifier, value in change.items()
/tools/aadevtools/
DREADME.md31 there is a code patch change.
49 is the change report between **dev/resource/old_codebase** and
64 * For example, to generate the change report for Android 11 to 10 QPR3: [sysui_gcar_android10-qpr3-…
/tools/asuite/atest/docs/
Ddeveloper_workflow.md17 involved with your change. This will help determine what tests you write
40 This is the code that actually runs the test. If your change
91 All tests should be passing before you submit your change.
124 first run the test file your code change affected individually. The
160 Again, you shouldn't need to change vts10-tradefed code.
/tools/currysrc/scripts/
Drepackage-common.sh97 CHANGE_LOG=$(mktemp --suffix srcgen-change.log)
171 --change-log ${CHANGE_LOG} \
/tools/security/sanitizer-status/
DAndroid.bp5 // Added automatically by a large-scale-change
/tools/platform-compat/build/
Dprocess_compat_config.py104 for change in self.tree.getroot():
106 new_change.attrib = change.attrib.copy()
/tools/external_updater/
DREADME.md29 Update a library, commit, and upload the change to Gerrit:
41 Update a library on top of the local changes in the current branch, commit, and upload the change t…
90 top of upstream. As long as there is any new change upstream, local
150 libraries every hour, send email and change. Currently this is done by
/tools/netsim/doc/
DCODING_STYLE.md8 2. Once approved, apply the rule to the repository in a follow up change.
/tools/netsim/guide/
DCODING_STYLE.md8 2. Once approved, apply the rule to the repository in a follow up change.
/tools/tradefederation/core/javatests/res/config/suite/
Dsuite.md4 individual test from a suite can be as simple as a test config file change. One
7 change to pull it out of presubmit check.
/tools/tradefederation/core/
DREADME.md18 1. Create your change in Gerrit
/tools/asuite/atest/bazel/resources/rules/
Dplatform_transitions.bzl15 """Configuration transitions to change the platform flavor.
/tools/aadevtools/validation/
DREADME.md18 - As sometime mk file change the file name when copying XML files to the device at the build time, …
/tools/acloud/internal/proto/
Dinternal_config.proto102 // [CVD only] The kernel build target: "kernel". This is unlikely to change.
106 // It's very unlikely that this will ever change.
/tools/metalava/
DUSAGE.md8 - API change compatibility checking of current API vs previous version txt (`--check-compatibility:…
DFORMAT.md34 Why did we change from the historical doclava signature format (v1)
44 changes. (For example, you can change the return value of a final method from
47 And if we were going to change the signature format, we might as well make some
235 (also applying the @interface terminology change described above) :
327 is a compile-incompatible change.
378 files since they're entirely implied by the enum, you can't change them, and
/tools/external/fat32lib/
DAndroid.bp20 // Added automatically by a large-scale-change that took the approach of
/tools/test/connectivity/acts_tests/tests/google/tel/config/
DREADME.md6 … and amended by the 'manage_sim.py' utility. Its contents are subject to change so users are highl…
/tools/metalava/metalava/src/test/java/com/android/tools/metalava/binarycompatibility/
DBinaryCompatibilityInterfacesTest.kt531 fun `Add, delete, or change type bounds of type parameter (Incompatible)`() { in Add, delete, or change type bounds of type parameter (Incompatible)()
/tools/trebuchet/
DAndroid.bp20 // Added automatically by a large-scale-change

123