Home
last modified time | relevance | path

Searched refs:from (Results 1 – 25 of 99) sorted by relevance

1234

/cts/tools/dasm/src/dasm/
DDasmCatchBuilder.java45 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/tests/accessibilityservice/src/android/accessibilityservice/cts/utils/
DGestureUtils.java79 public static StrokeDescription swipe(PointF from, PointF to) { in swipe() argument
80 return swipe(from, to, ViewConfiguration.getTapTimeout()); in swipe()
83 public static StrokeDescription swipe(PointF from, PointF to, long duration) { in swipe() argument
84 return new StrokeDescription(path(from, to), 0, duration); in swipe()
87 public static StrokeDescription drag(StrokeDescription from, PointF to) { in drag() argument
88 return from.continueStroke( in drag()
89 path(lastPointOf(from), to), in drag()
90 endTimeOf(from), ViewConfiguration.getTapTimeout(), true); in drag()
/cts/tests/tests/database/src/android/database/sqlite/cts/
DSQLiteWalTest.java66 private void copyFile(String from, String to) throws Exception { in copyFile() argument
69 try (InputStream in = new FileInputStream(from)) { in copyFile()
80 private void backupFile(String from) throws Exception { in backupFile() argument
81 copyFile(from, from + BACKUP_SUFFIX); in backupFile()
84 private void restoreFile(String from) throws Exception { in restoreFile() argument
85 copyFile(from + BACKUP_SUFFIX, from); in restoreFile()
/cts/hostsidetests/rollback/app/src/com/android/cts/rollback/host/app/
DHostTestHelper.java95 Rollback.from(TestApp.A2).to(TestApp.A1)); in testApkOnlyCommitRollback()
103 Rollback.from(TestApp.A2).to(TestApp.A1)); in testApkOnlyCommitRollback()
127 Rollback.from(TestApp.A2).to(TestApp.A1)); in testApkOnlyConfirmRollback()
172 Rollback.from(TestApp.Apex3).to(TestApp.Apex2)); in testApexOnlyCommitRollback()
179 Rollback.from(TestApp.Apex3).to(TestApp.Apex2)); in testApexOnlyCommitRollback()
250 Rollback.from(TestApp.Apex3).to(TestApp.Apex2), in testApexAndApkCommitRollback()
251 Rollback.from(TestApp.A2).to(TestApp.A1)); in testApexAndApkCommitRollback()
258 Rollback.from(TestApp.Apex3).to(TestApp.Apex2), in testApexAndApkCommitRollback()
259 Rollback.from(TestApp.A2).to(TestApp.A1)); in testApexAndApkCommitRollback()
284 Rollback.from(TestApp.Apex3).to(TestApp.Apex2), in testApexAndApkConfirmRollback()
[all …]
/cts/libs/rollback/src/com/android/cts/rollback/lib/
DRollback.java35 private Rollback(TestApp from) { in Rollback() argument
36 mFrom = from.getVersionedPackage(); in Rollback()
43 public static Rollback from(TestApp app) { in from() method in Rollback
/cts/tests/tests/keystore/src/android/server/am/
DUiDeviceUtils.java60 public static void dragPointer(Point from, Point to, int steps) { in dragPointer() argument
61 if (DEBUG) Log.d(TAG, "dragPointer: from=" + from + " to=" + to + " steps=" + steps); in dragPointer()
62 getDevice().drag(from.x, from.y, to.x, to.y, steps); in dragPointer()
/cts/tests/framework/base/windowmanager/util/src/android/server/wm/
DUiDeviceUtils.java59 public static void dragPointer(Point from, Point to, int steps) { in dragPointer() argument
60 if (DEBUG) Log.d(TAG, "dragPointer: from=" + from + " to=" + to + " steps=" + steps); in dragPointer()
61 getDevice().drag(from.x, from.y, to.x, to.y, steps); in dragPointer()
/cts/tests/tests/net/src/android/net/ipv6/cts/
DPingTest.java118 InetSocketAddress from = new InetSocketAddress(); in checkResponse() local
119 bytesRead = Os.recvfrom(s, responseBuffer, 0, from); in checkResponse()
122 assertTrue(from.getAddress() instanceof Inet6Address); in checkResponse()
123 Inet6Address fromAddress = (Inet6Address) from.getAddress(); in checkResponse()
/cts/tests/tests/renderscript/src/android/renderscript/cts/refocus/
Dlayered_filter_f32_helper.rsh29 // Initializes the minimum distance from this pixel to the active pixels on
61 // Filters target layer when processing layers in pass one from the back-most to
70 // Extracts kernel matrix from kernel stack using kernel_info.
90 // bleeding from layers in front of this layer. Doing visibility test in a
114 // Filters target layer when processing layers in pass one from the back-most to
122 // Extracts kernel matrix from kernel stack using kernel_info.
150 // Filters the target layer when processing layers in pass two from the
158 // Extracts kernel matrix from kernel stack using kernel_info.
Dlayered_filter_d1new_helper.rsh48 // Initializes the minimum distance from this pixel to the active pixels on
89 // Initializes the minimum distance from this pixel to the active pixels on
121 // Filters target layer when processing layers in pass one from the back-most to
123 // Use global allocation for filter from back most layer to focus layer
130 // Extracts kernel matrix from kernel stack using kernel_info.
150 // bleeding from layers in front of this layer. Doing visibility test in a
185 // Extracts kernel matrix from kernel stack using kernel_info.
211 // Use global allocation to filter layer from the
218 // Extracts kernel matrix from kernel stack using kernel_info.
/cts/tests/tests/icu/resources/android/icu/cts/expectations/
Dicu-known-failures.txt19 …description: "Checks differences in DecimalFormat classes from ICU4J and JDK but on Android java.t…
24 description: "Collation rules data has been removed from ICU4J data on Android",
/cts/tests/tests/view/src/android/view/cts/
DViewAttributeTest.java73 LayoutInflater inflater = LayoutInflater.from(context); in testGetExplicitStyle()
91 LayoutInflater inflater = LayoutInflater.from(mActivityRule.getActivity()); in testGetAttributeResolutionStack()
108 LayoutInflater inflater = LayoutInflater.from(mActivityRule.getActivity()); in testGetAttributeSourceResourceMap()
/cts/tests/tests/networksecurityconfig/networksecurityconfig-basic-domain/
DOWNERS1 # Inherits OWNERS from parent directory.
/cts/tests/tests/networksecurityconfig/networksecurityconfig-cleartext-pre-P/
DOWNERS1 # Inherits OWNERS from parent directory.
/cts/tests/tests/networksecurityconfig/networksecurityconfig-nested-domains/
DOWNERS1 # Inherits OWNERS from parent directory.
/cts/tests/tests/networksecurityconfig/networksecurityconfig-debug-basic-enabled/
DOWNERS1 # Inherits OWNERS from parent directory.
/cts/tests/tests/networksecurityconfig/networksecurityconfig-invalid-pin/
DOWNERS1 # Inherits OWNERS from parent directory.
/cts/tests/tests/networksecurityconfig/networksecurityconfig-downloadmanager/
DOWNERS1 # Inherits OWNERS from parent directory.
/cts/tests/tests/networksecurityconfig/networksecurityconfig-resourcesrc/
DOWNERS1 # Inherits OWNERS from parent directory.
/cts/tests/tests/networksecurityconfig/networksecurityconfig-cleartext/
DOWNERS1 # Inherits OWNERS from parent directory.
/cts/tests/tests/networksecurityconfig/networksecurityconfig-debug-basic-disabled/
DOWNERS1 # Inherits OWNERS from parent directory.
/cts/tests/tests/networksecurityconfig/networksecurityconfig-attributes/
DOWNERS1 # Inherits OWNERS from parent directory.
/cts/hostsidetests/sustainedperf/dhrystone/
DRationale27 been the version made by Rick Richardson by another translation from
44 optimizing compilers should be prevented from removing significant
59 benchmark into something different from what has become known as
68 distributed as widely as possible. (Version 2.1 differs from version
73 format) from the author.
104 compilers should be prevented from moving code out of the measurement
105 loop, or from removing code altogether. Statements that are executed
149 Int_Glob makes the value of Int_Glob possibly dependent from the
154 prevent the division from just cancelling out the multiplication as
161 o In Proc_4, the second assignment has been changed from
[all …]
/cts/libs/vogar-expect/
DREADME1 Selected classes taken from http://code.google.com/p/vogar/
/cts/apps/CtsVerifier/src/com/android/cts/verifier/audio/audiolib/
DREADME1 This code is forked from (AndroidStudio Project) <branch>vendor/box/team/audio/AudioLibApp/audiolib

1234