HomeSort by relevance Sort by last modified time
    Searched defs:stops (Results 1 - 25 of 26) sorted by null

1 2

  /external/ImageMagick/coders/
gradient.c 114 *stops;
145 stops=(StopInfo *) AcquireQuantumMemory(2,sizeof(*stops));
146 if (stops == (StopInfo *) NULL)
148 stops[0].offset=0.0;
149 stops[1].offset=1.0;
150 status=QueryColorCompliance(colorname,AllCompliance,&stops[0].color,exception);
153 stops=(StopInfo *) RelinquishMagickMemory(stops);
157 (void) SetImageColorspace(image,stops[0].color.colorspace,exception)
112 *stops; local
    [all...]
  /frameworks/ml/nn/common/operations/
StridedSlice.cpp 39 std::vector<int> stops; local
58 stops.emplace_back(end);
64 stops.emplace_back(1);
77 starts, stops, strides, local
85 starts, stops, strides, local
  /external/skia/experimental/skottie/
SkottieProperties.cpp 162 std::vector<sksg::Gradient::ColorStop> stops; local
164 // TODO: merge/lerp opacity stops
167 stops.push_back({ *cs, VecToColor(&*(cs + 1), 3) });
170 fGradient->setColorStops(std::move(stops));
Skottie.cpp 275 const auto& stops = obj["g"]; local
276 if (!stops.isObject())
279 const auto stopCount = ParseDefault(stops["p"], -1);
298 BindProperty<VectorValue>(stops["k"], &ctx->fAnimators,
299 [composite](const VectorValue& stops) {
300 composite->setColorStops(stops);
    [all...]
  /external/skqp/experimental/skottie/
SkottieProperties.cpp 162 std::vector<sksg::Gradient::ColorStop> stops; local
164 // TODO: merge/lerp opacity stops
167 stops.push_back({ *cs, VecToColor(&*(cs + 1), 3) });
170 fGradient->setColorStops(std::move(stops));
Skottie.cpp 274 const auto& stops = obj["g"]; local
275 if (!stops.isObject())
278 const auto stopCount = ParseDefault(stops["p"], -1);
297 BindProperty<VectorValue>(stops["k"], &ctx->fAnimators,
298 [composite](const VectorValue& stops) {
299 composite->setColorStops(stops);
    [all...]
  /external/tensorflow/tensorflow/contrib/lite/kernels/
strided_slice.cc 187 std::vector<int32_t> stops; local
192 stops.emplace_back(GetEndValueAtIndex(&op_context, idx));
198 stops.emplace_back(1);
214 starts, stops, strides, GetTensorData<data_type>(op_context.output), \
  /packages/apps/Bluetooth/tests/unit/src/com/android/bluetooth/btservice/
ProfileServiceTest.java 138 * Verify that each profile starts and stops.
147 ArgumentCaptor<ProfileService> stops = ArgumentCaptor.forClass(ProfileService.class); local
154 stops.capture(), eq(BluetoothAdapter.STATE_OFF));
157 List<ProfileService> stoppedArguments = stops.getAllValues();
  /frameworks/av/drm/mediadrm/plugins/clearkey/hidl/
DrmPlugin.cpp 92 // This function merely creates a test environment for testing secure stops APIs.
469 std::vector<SecureStop> stops; local
478 stops.push_back(stop);
480 _hidl_cb(Status::OK, stops);
531 // count - number of secure stops
532 // list of fixed length secure stops
  /external/ImageMagick/MagickCore/
draw.h 158 *stops; member in struct:_GradientInfo
draw.c 330 if (draw_info->gradient.stops != (StopInfo *) NULL)
336 clone_info->gradient.stops=(StopInfo *) AcquireQuantumMemory((size_t)
337 number_stops,sizeof(*clone_info->gradient.stops));
338 if (clone_info->gradient.stops == (StopInfo *) NULL)
341 (void) CopyMagickMemory(clone_info->gradient.stops,
342 draw_info->gradient.stops,(size_t) number_stops*
343 sizeof(*clone_info->gradient.stops));
866 if (draw_info->gradient.stops != (StopInfo *) NULL)
867 draw_info->gradient.stops=(StopInfo *) RelinquishMagickMemory(
868 draw_info->gradient.stops);
1738 *stops; local
    [all...]
  /development/samples/training/InteractiveChart/src/com/example/android/interactivechart/
InteractiveLineGraphView.java 161 // Buffers for storing current X and Y stops. See the computeAxisStops method for more details.
323 // Computes axis stops (in terms of numerical value and position on screen)
338 // arrays and only reallocate if the number of stops grows.
354 mAxisXPositionsBuffer[i] = getDrawX(mXStopsBuffer.stops[i]);
357 mAxisYPositionsBuffer[i] = getDrawY(mYStopsBuffer.stops[i]);
383 labelLength = formatFloat(mLabelBuffer, mXStopsBuffer.stops[i], mXStopsBuffer.decimals);
396 labelLength = formatFloat(mLabelBuffer, mYStopsBuffer.stops[i], mYStopsBuffer.decimals);
460 * of stops between these boundaries.
464 * @param steps The ideal number of stops to create. This should be based on available screen
465 * space; the more space there is, the more stops should be shown
1181 float[] stops = new float[]{}; field in class:InteractiveLineGraphView.AxisStops
    [all...]
  /frameworks/base/services/core/java/com/android/server/am/
ActivityStackSupervisor.java 2062 final ArrayList<ActivityRecord> stops = processStoppingActivitiesLocked(r, local
3893 ArrayList<ActivityRecord> stops = null; local
    [all...]
  /prebuilts/tools/common/m2/repository/com/tunnelvisionlabs/antlr4-runtime/4.5/
antlr4-runtime-4.5.jar 
  /prebuilts/tools/common/m2/repository/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 
  /prebuilts/tools/common/offline-m2/org/antlr/antlr4/4.5.3/
antlr4-4.5.3.jar 
  /prebuilts/checkstyle/
checkstyle.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/24/
android.jar 
  /prebuilts/sdk/25/
android.jar 
  /prebuilts/sdk/26/
android.jar 
  /prebuilts/sdk/27/
android.jar 
  /prebuilts/sdk/28/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_28/
android.jar 

Completed in 2270 milliseconds

1 2