/aosp_15_r20/cts/tests/tests/view/src/android/view/cts/ |
H A D | TextureViewTest.java | 134 int[] outLocation = new int[2]; in testFirstFrames() local 135 content.getLocationInWindow(outLocation); in testFirstFrames() 136 center.x = outLocation[0] + (content.getWidth() / 2); in testFirstFrames() 137 center.y = outLocation[1] + (content.getHeight() / 2); in testFirstFrames() 198 int[] outLocation = new int[2]; in testRotateScale() local 199 textureView.getLocationInWindow(outLocation); in testRotateScale() 200 viewPos.left = outLocation[0]; in testRotateScale() 201 viewPos.top = outLocation[1]; in testRotateScale() 240 int[] outLocation = new int[2]; in testTransformScale() local 241 textureView.getLocationInWindow(outLocation); in testTransformScale() [all …]
|
/aosp_15_r20/platform_testing/libraries/motion/src/platform/test/motion/view/ |
H A D | ViewFeatureCaptures.kt | 49 val outLocation = IntArray(2) in view() constant 50 view.getLocationOnScreen(outLocation) in view() 54 x = outLocation[0] in view() 55 y = outLocation[1] in view()
|
/aosp_15_r20/frameworks/base/core/tests/coretests/src/android/view/ |
H A D | ScrollCaptureSearchResultsTest.java | 363 public void getLocationInWindow(int[] outLocation) { in getLocationInWindow() argument 364 outLocation[0] = mLeft; in getLocationInWindow() 365 outLocation[1] = mTop; in getLocationInWindow() 370 outLocation[0] -= view.mScrollX; in getLocationInWindow() 371 outLocation[1] -= view.mScrollY; in getLocationInWindow() 378 outLocation[0] += view.mLeft; in getLocationInWindow() 379 outLocation[1] += view.mTop; in getLocationInWindow()
|
/aosp_15_r20/external/apache-xml/test/java/src/org/apache/qetest/xalanj2/ |
H A D | TransformStateTest.java | 170 File outLocation, File goldLocation) in buildDatalets() argument 210 d.outputName = outLocation.getPath() + File.separator + testFileName + ".out"; in buildDatalets() 225 d.outputName = outLocation.getPath() + File.separator + testFileName + ".out"; in buildDatalets() 241 d.outputName = outLocation.getPath() + File.separator + testFileName + ".out"; in buildDatalets()
|
H A D | FactoryFeatureTest.java | 376 File outLocation, File goldLocation) in buildDatalets() argument
|
/aosp_15_r20/frameworks/base/services/accessibility/java/com/android/server/accessibility/gestures/ |
H A D | EventDispatcher.java | 468 private int computeClickLocation(Point outLocation) { in computeClickLocation() argument 472 outLocation.x = in computeClickLocation() 474 outLocation.y = in computeClickLocation() 478 if (mAms.getAccessibilityFocusClickPointInScreen(outLocation)) { in computeClickLocation() 485 if (mAms.getAccessibilityFocusClickPointInScreen(outLocation)) { in computeClickLocation()
|
/aosp_15_r20/frameworks/base/core/tests/coretests/src/android/view/stylus/ |
H A D | HandwritingTestUtil.java | 75 int[] outLocation = invocation.getArgument(0); in createEditText() 76 outLocation[0] = handwritingArea.left; in createEditText() 77 outLocation[1] = handwritingArea.top; in createEditText()
|
/aosp_15_r20/packages/apps/TV/src/com/android/tv/ui/ |
D | AppLayerTvView.java | 71 public void getLocationOnScreen(int[] outLocation) { in getLocationOnScreen() argument 72 super.getLocationOnScreen(outLocation); in getLocationOnScreen()
|
/aosp_15_r20/external/vulkan-validation-layers/tests/ |
H A D | vklayertests_pipeline_shader.cpp | 3884 uint32_t outLocation = 0; in TEST_F() local 3886 …tcsSourceStr += "layout(location=" + std::to_string(outLocation) + ") out vec4 v" + std::to_string… in TEST_F() 3887 outLocation += 1; in TEST_F() 3892 … tcsSourceStr += "layout(location=" + std::to_string(outLocation) + ") out float" + " vnOut[3];\n"; in TEST_F() 3895 …"layout(location=" + std::to_string(outLocation) + ") out vec" + std::to_string(outRemainder) + " … in TEST_F() 3897 outLocation += 1; in TEST_F() 3988 uint32_t outLocation = 0; in TEST_F() local 3990 …tesSourceStr += "layout(location=" + std::to_string(outLocation) + ") out vec4 v" + std::to_string… in TEST_F() 3991 outLocation += 1; in TEST_F() 3996 … tesSourceStr += "layout(location=" + std::to_string(outLocation) + ") out float" + " vnOut;\n"; in TEST_F() [all …]
|
/aosp_15_r20/external/apache-xml/test/java/src/org/apache/qetest/xsl/ |
H A D | StylesheetTestletDriver.java | 586 File outLocation, File goldLocation, in buildDatalets() argument 627 … d.outputName = outLocation.getPath() + File.separator + fileNameRoot + OUT_EXTENSION; in buildDatalets() 641 … d.outputName = outLocation.getPath() + File.separator + fileNameRoot + OUT_EXTENSION; in buildDatalets()
|
H A D | BugzillaTestletDriver.java | 250 File outLocation, File goldLocation) in buildDatalets() argument 318 …((StylesheetDatalet)d).outputName = outLocation.getPath() + File.separator + fileNameRoot + OUT_EX… in buildDatalets()
|
/aosp_15_r20/cts/tests/framework/base/windowmanager/src/android/server/wm/input/ |
H A D | WindowInputTests.java | 287 private void selectRandomLocationInWindow(Rect bounds, Point outLocation) { in selectRandomLocationInWindow() argument 290 outLocation.set(randomX, randomY); in selectRandomLocationInWindow()
|
/aosp_15_r20/external/deqp/modules/glshared/ |
H A D | glsShaderExecUtil.cpp | 701 const int outLocation = de::lookup(m_outputLayout.locationMap, output.name); in execute() local 707 gl.readBuffer(GL_COLOR_ATTACHMENT0 + outLocation + locNdx); in execute()
|
/aosp_15_r20/frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/stack/ |
H A D | NotificationStackScrollLayoutController.java | 1143 public void getLocationOnScreen(int[] outLocation) { in getLocationOnScreen() argument 1144 mView.getLocationOnScreen(outLocation); in getLocationOnScreen()
|
/aosp_15_r20/frameworks/base/core/java/android/view/ |
H A D | View.java | 27632 public void getLocationOnScreen(@Size(2) int[] outLocation) { in getLocationOnScreen() argument 27633 getLocationInWindow(outLocation); in getLocationOnScreen() 27637 outLocation[0] += info.mWindowLeft; in getLocationOnScreen() 27638 outLocation[1] += info.mWindowTop; in getLocationOnScreen() 27641 info.mViewRootImpl.applyViewLocationSandboxingIfNeeded(outLocation); in getLocationOnScreen() 27666 public void getLocationInWindow(@Size(2) int[] outLocation) { in getLocationInWindow() argument 27667 if (outLocation == null || outLocation.length < 2) { in getLocationInWindow() 27671 outLocation[0] = 0; in getLocationInWindow() 27672 outLocation[1] = 0; in getLocationInWindow() 27674 transformFromViewToWindowSpace(outLocation); in getLocationInWindow()
|
H A D | ViewRootImpl.java | 9252 public void getLastTouchPoint(Point outLocation) { in getLastTouchPoint() argument 9253 outLocation.x = (int) mLastTouchPoint.x; in getLastTouchPoint() 9254 outLocation.y = (int) mLastTouchPoint.y; in getLastTouchPoint() 9661 public void applyViewLocationSandboxingIfNeeded(@Size(2) int[] outLocation) { in applyViewLocationSandboxingIfNeeded() argument 9664 outLocation[0] -= bounds.left; in applyViewLocationSandboxingIfNeeded() 9665 outLocation[1] -= bounds.top; in applyViewLocationSandboxingIfNeeded()
|
/aosp_15_r20/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
H A D | vktShaderExecutor.cpp | 1398 const int outLocation = de::lookup(m_outputLayout.locationMap, output.name); in execute() local 1419 … vk.cmdCopyImageToBuffer(*copyCmdBuffer, colorImages[outLocation + locNdx].get()->get(), in execute()
|
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/javac/ |
D | framework.jar18 | META-INF/
META-INF/MANIFEST.MF
android/
android/view/
android/ ... |
/aosp_15_r20/out/soong/.intermediates/frameworks/base/framework-minus-apex/android_common/repackaged-jarjar/javac-18/ |
D | framework.jar | android/view/animation/TranslateYAnimation.uau
android/view/animation/TranslateYAnimation.class
TranslateYAnimation ... |
/aosp_15_r20/out/soong/.intermediates/frameworks/base/services/accessibility/services.accessibility/android_common/javac/ |
D | services.accessibility.jar | META-INF/
META-INF/MANIFEST.MF
com/
com/android/
com/ ... |
/aosp_15_r20/out/soong/.intermediates/frameworks/base/services/accessibility/services.accessibility/android_common/repackaged-jarjar/javac/ |
D | services.accessibility.jar | com/android/settingslib/RestrictedLockUtils.class
RestrictedLockUtils.java
package com.android.settingslib
public ... |
/aosp_15_r20/prebuilts/sdk/31/public/ |
HD | android-non-updatable.jar | META-INF/
META-INF/MANIFEST.MF
AndroidManifest.xml
android/
android/Manifest ... |
/aosp_15_r20/prebuilts/sdk/33/public/ |
HD | android-non-updatable.jar | META-INF/
META-INF/MANIFEST.MF
AndroidManifest.xml
android/
android/Manifest ... |
/aosp_15_r20/prebuilts/sdk/32/public/ |
HD | android-non-updatable.jar | META-INF/
META-INF/MANIFEST.MF
AndroidManifest.xml
android/
android/Manifest ... |
/aosp_15_r20/prebuilts/sdk/35/public/ |
HD | android-non-updatable.jar | META-INF/
META-INF/MANIFEST.MF
AndroidManifest.xml
android/
android/Manifest ... |