Home
last modified time | relevance | path

Searched refs:stops (Results 1 – 25 of 48) sorted by relevance

12

/aosp12/frameworks/base/graphics/java/android/graphics/
H A DRadialGradient.java71 @NonNull @ColorInt int[] colors, @Nullable float[] stops, in RadialGradient() argument
74 stops, tileMode, ColorSpace.get(ColorSpace.Named.SRGB)); in RadialGradient()
95 @NonNull @ColorLong long[] colors, @Nullable float[] stops, in RadialGradient() argument
97 this(centerX, centerY, 0f, centerX, centerY, radius, colors.clone(), stops, in RadialGradient()
140 @NonNull @ColorLong long[] colors, @Nullable float[] stops, in RadialGradient() argument
142 this(startX, startY, startRadius, endX, endY, endRadius, colors.clone(), stops, tileMode, in RadialGradient()
151 float endRadius, @NonNull @ColorLong long[] colors, @Nullable float[] stops, in RadialGradient() argument
165 if (stops != null && colors.length != stops.length) { in RadialGradient()
175 mPositions = stops != null ? stops.clone() : null; in RadialGradient()
/aosp12/hardware/interfaces/drm/1.1/vts/functional/
H A Ddrm_hal_clearkey_test.cpp413 [&](Status status, const hidl_vec<SecureStop>& stops) { in TEST_P() argument
415 EXPECT_EQ(0u, stops.size()); in TEST_P()
432 [&](Status status, const hidl_vec<SecureStop>& stops) { in TEST_P() argument
434 EXPECT_EQ(1u, stops.size()); in TEST_P()
444 EXPECT_EQ(0u, stops.size()); in TEST_P()
464 EXPECT_EQ(0u, stops.size()); in TEST_P()
483 EXPECT_EQ(1u, stops.size()); in TEST_P()
493 EXPECT_EQ(0u, stops.size()); in TEST_P()
544 EXPECT_EQ(1u, stops.size()); in TEST_P()
545 release = makeSecureRelease(stops[0]); in TEST_P()
[all …]
/aosp12/frameworks/base/core/tests/coretests/src/android/text/
H A DTextLineTest.java200 final TabStops stops = new TabStops(100, spans); in testMeasure_Tab_LTR() local
205 TextLine tl = getTextLine("II\tII", paint, stops); in testMeasure_Tab_LTR()
215 final TabStops stops = new TabStops(100, spans); in testMeasure_Tab_RTL() local
220 TextLine tl = getTextLine("\u05D0\u05D0\t\u05D0\u05D0", paint, stops); in testMeasure_Tab_RTL()
230 final TabStops stops = new TabStops(100, spans); in testMeasure_Tab_BiDi() local
235 TextLine tl = getTextLine("I\u05D0\tI\u05D0", paint, stops); in testMeasure_Tab_BiDi()
245 final TabStops stops = new TabStops(100, spans); in testMeasure_Tab_BiDi2() local
250 TextLine tl = getTextLine("\u05D0I\t\u05D0I", paint, stops); in testMeasure_Tab_BiDi2()
/aosp12/frameworks/layoutlib/bridge/src/android/graphics/text/
H A DTabStops.java28 public TabStops(@Nullable float[] stops, float defaultTabWidth) { in TabStops() argument
30 mStops = stops; in TabStops()
/aosp12/hardware/interfaces/broadcastradio/1.0/
H A DITunerCallback.hal60 * stops.
61 * @param active True if the announcement starts, false if it stops.
67 * or stops.
68 * @param active True if the announcement starts, false if it stops.
/aosp12/packages/modules/NeuralNetworks/common/operations/
H A DStridedSlice.cpp62 std::vector<int> stops; in compute() local
68 stops.emplace_back(endData[idx]); in compute()
74 stops.emplace_back(1); in compute()
83 endMask, shrinkAxisMask, starts, stops, strides, outputData, in compute()
/aosp12/frameworks/minikin/include/minikin/
H A DLineBreaker.h56 TabStops(const float* stops, size_t nStops, float tabWidth) in TabStops() argument
57 : mStops(stops), mStopsSize(nStops), mTabWidth(tabWidth) {} in TabStops()
/aosp12/frameworks/base/libs/WindowManager/Shell/src/com/android/wm/shell/startingsurface/
H A DSplashScreenExitAnimation.java139 final float[] stops = {0f, transparentRatio, 1f}; in createAnimator() local
144 mRadialVanishAnimation.setRadialPaintParam(colors, stops); in createAnimator()
218 void setRadialPaintParam(int[] colors, float[] stops) { in setRadialPaintParam() argument
221 new RadialGradient(0, 0, 1, colors, stops, Shader.TileMode.CLAMP); in setRadialPaintParam()
/aosp12/packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/
H A DProfileServiceTest.java168 ArgumentCaptor<ProfileService> stops = ArgumentCaptor.forClass(ProfileService.class); in testEnableDisableInterleaved() local
175 stops.capture(), eq(BluetoothAdapter.STATE_OFF)); in testEnableDisableInterleaved()
178 List<ProfileService> stoppedArguments = stops.getAllValues(); in testEnableDisableInterleaved()
/aosp12/frameworks/base/core/java/android/text/
H A DLayout.java2212 float[] stops = this.mStops;
2215 if (stops == null) {
2216 stops = new float[10];
2217 } else if (ns == stops.length) {
2220 nstops[i] = stops[i];
2222 stops = nstops;
2228 Arrays.sort(stops, 0, ns);
2230 if (stops != this.mStops) {
2231 this.mStops = stops;
2240 float[] stops = this.mStops;
[all …]
H A DStaticLayout.java745 float[] stops = new float[spans.length]; in generate()
747 stops[i] = (float) spans[i].getTabStop(); in generate()
749 Arrays.sort(stops, 0, stops.length); in generate()
750 variableTabStops = stops; in generate()
/aosp12/hardware/interfaces/drm/1.1/
H A DIDrmPlugin.hal194 * Get the IDs of all secure stops on the device
205 * Release secure stops given a release message from the key server
208 * secure stops to release. ssRelease is opaque, it is passed directly from
236 * Remove all secure stops on the device without requiring a secure
241 * stops cannot be removed.
/aosp12/packages/modules/NetworkPermissionConfig/
H A DAndroid.bp23 // TODO: mark app as hasCode=false in manifest once soong stops complaining about apps without
/aosp12/bootable/recovery/minadbd/
H A DREADME.md17 - When requested to start `minadbd`, `recovery` stops `adbd` first, if it's running; it then forks
/aosp12/hardware/interfaces/wifi/1.5/
H A DIWifi.hal34 * state of the rest of the HAL and must persist though stops/starts. These
/aosp12/art/dt_fd_forward/
H A DREADME.md13 When this transport stops listening for connections it will send the
/aosp12/system/sepolicy/prebuilts/api/30.0/private/
H A Dinit.te50 # TODO(b/137092007): this can be removed once the platform stops supporting
/aosp12/hardware/interfaces/drm/1.0/
H A DIDrmPlugin.hal230 * stops are queried by the app. The app then delivers the secure stop
238 * Get all secure stops on the device
241 * ERROR_DRM_INVALID_STATE if the HAL is in a state where the secure stops
249 * Get all secure stops by secure stop ID
266 * Release all secure stops on the device
270 * stops cannot be released.
/aosp12/hardware/interfaces/confirmationui/1.0/
H A DIConfirmationResultCallback.hal25 * This callback is called by the confirmation provider when it stops prompting the user.
/aosp12/hardware/interfaces/wifi/1.0/
H A DIWifi.hal32 * state of the rest of the HAL and must persist though stops/starts. These
/aosp12/frameworks/av/drm/mediadrm/plugins/clearkey/hidl/
H A DDrmPlugin.cpp832 std::vector<SecureStop> stops; in getSecureStops() local
841 stops.push_back(stop); in getSecureStops()
845 _hidl_cb(Status::OK, stops); in getSecureStops()
/aosp12/system/sepolicy/prebuilts/api/31.0/private/
H A Dinit.te64 # TODO(b/137092007): this can be removed once the platform stops supporting
/aosp12/system/sepolicy/prebuilts/api/32.0/private/
H A Dinit.te64 # TODO(b/137092007): this can be removed once the platform stops supporting
/aosp12/system/sepolicy/private/
H A Dinit.te64 # TODO(b/137092007): this can be removed once the platform stops supporting
/aosp12/system/bt/doc/
H A Dpower_management.md169 `bta_dm_pm_btm_status` stops any timers started for the device in
175 stops all timers for the device, and then re-calls `bta_dm_pm_set_mode`

12