/external/ImageMagick/coders/ |
D | gradient.c | 183 *stops; in ReadGRADIENTImage() local 214 stops=(StopInfo *) AcquireQuantumMemory(2,sizeof(*stops)); in ReadGRADIENTImage() 215 if (stops == (StopInfo *) NULL) in ReadGRADIENTImage() 217 stops[0].offset=0.0; in ReadGRADIENTImage() 218 stops[1].offset=1.0; in ReadGRADIENTImage() 219 status=QueryColorCompliance(colorname,AllCompliance,&stops[0].color, in ReadGRADIENTImage() 223 stops=(StopInfo *) RelinquishMagickMemory(stops); in ReadGRADIENTImage() 227 (void) SetImageColorspace(image,stops[0].color.colorspace,exception); in ReadGRADIENTImage() 229 if (GetPixelInfoIntensity(image,&stops[0].color) > (QuantumRange/2.0)) in ReadGRADIENTImage() 235 status=QueryColorCompliance(colorname,AllCompliance,&stops[1].color, in ReadGRADIENTImage() [all …]
|
/external/cldr/tools/java/org/unicode/cldr/util/ |
D | Tabber.java | 60 private List stops = new ArrayList(); field in Tabber.MonoTabber 64 stops.clear(); in clear() 72 for (int i = 0; i < stops.size(); ++i) { in toString() 77 .append(stops.get(i)); in toString() 88 stops.add(new Integer(tabPos)); in addAbsolute() 97 int last = getStop(stops.size() - 1); in add() 98 stops.add(new Integer(last + fieldWidth)); in add() 105 if (fieldNumber >= stops.size()) fieldNumber = stops.size() - 1; in getStop() 106 return ((Integer) stops.get(fieldNumber)).intValue(); in getStop() 111 if (fieldNumber >= stops.size()) return LEFT; in getType()
|
/external/skia/src/compute/skc/ |
D | styling.c | 267 float const stops[], in skc_styling_layer_fill_gradient_encoder() argument 318 float ds_prev = stops[1] - stops[0]; in skc_styling_layer_fill_gradient_encoder() 327 float const ds_curr = stops[ii+1] - stops[ii]; in skc_styling_layer_fill_gradient_encoder() 358 if (stops[ii+1] > stops[ii]) in skc_styling_layer_fill_gradient_encoder()
|
/external/skqp/src/compute/skc/ |
D | styling.c | 267 float const stops[], in skc_styling_layer_fill_gradient_encoder() argument 318 float ds_prev = stops[1] - stops[0]; in skc_styling_layer_fill_gradient_encoder() 327 float const ds_curr = stops[ii+1] - stops[ii]; in skc_styling_layer_fill_gradient_encoder() 358 if (stops[ii+1] > stops[ii]) in skc_styling_layer_fill_gradient_encoder()
|
/external/icu/icu4c/source/data/brkitr/dictionaries/ |
D | thaidict.txt | 15997 # วี.ดี. # TODO: why do these have full stops? 16382 # ส.ธรนินทร์ -- TODO: why do these have full stops?
|
/external/fonttools/Lib/fontTools/varLib/ |
D | plot.py | 17 def stops(support, count=10): function 84 for x in stops(Xs): 109 for x in stops(Xs): 117 for y in stops(Ys):
|
/external/strace/ |
D | README-linux-ptrace | 28 ptrace commands from the tracer is called ptrace-stop. Ptrace-stops can 122 The following kinds of ptrace-stops exist: signal-delivery-stops, 123 group-stop, PTRACE_EVENT stops, syscall-stops [, SINGLESTEP, SYSEMU, 147 ptrace-stop - see "Syscall-stops" and "execve" sections below for 215 is returned by some other classes of ptrace-stops, therefore the 240 1.x.x PTRACE_EVENT stops 242 If tracer sets TRACE_O_TRACEfoo options, tracee will enter ptrace-stops 243 called PTRACE_EVENT stops. 245 PTRACE_EVENT stops are observed by tracer as waitpid returning with 263 For all four stops described above: stop occurs in parent, not in newly [all …]
|
/external/tensorflow/tensorflow/lite/kernels/ |
D | strided_slice.cc | 187 std::vector<int32_t> stops; in Eval() local 192 stops.emplace_back(1); in Eval() 198 stops.emplace_back(GetTensorData<int32_t>(op_context.end)[idx]); in Eval() 208 begin_mask, end_mask, shrink_axis_mask, starts, stops, strides); in Eval()
|
/external/skqp/src/gpu/gradients/ |
D | GrUnrolledBinaryGradientColorizer.fp | 126 // Depending on how the positions resolve into hard stops or regular stops, the number of 130 // stops has 16 colors. 147 // Already reached kMaxIntervals, and haven't run out of color stops so this 157 // that have repeated hard stops at the very beginning that are effectively unreachable.
|
/external/skia/src/gpu/gradients/ |
D | GrUnrolledBinaryGradientColorizer.fp | 126 // Depending on how the positions resolve into hard stops or regular stops, the number of 130 // stops has 16 colors. 147 // Already reached kMaxIntervals, and haven't run out of color stops so this 157 // that have repeated hard stops at the very beginning that are effectively unreachable.
|
/external/python/cpython2/Lib/ |
D | mailbox.py | 840 starts, stops = [], [] 847 if len(stops) < len(starts): 849 stops.append(line_pos - len(os.linesep)) 854 stops.append(line_pos) 859 stops.append(line_pos - len(os.linesep)) 861 stops.append(line_pos) 867 self._toc = dict(enumerate(zip(starts, stops))) 890 starts, stops = [], [] 904 stops.append(line_pos - len(os.linesep)) 907 stops.append(line_pos) [all …]
|
/external/python/cpython3/Lib/ |
D | mailbox.py | 855 starts, stops = [], [] 862 if len(stops) < len(starts): 864 stops.append(line_pos - len(linesep)) 869 stops.append(line_pos) 874 stops.append(line_pos - len(linesep)) 876 stops.append(line_pos) 882 self._toc = dict(enumerate(zip(starts, stops))) 905 starts, stops = [], [] 919 stops.append(line_pos - len(linesep)) 922 stops.append(line_pos) [all …]
|
/external/ImageMagick/MagickCore/ |
D | paint.c | 405 const GradientType type,const SpreadMethod method,const StopInfo *stops, in GradientImage() argument 427 assert(stops != (const StopInfo *) NULL); in GradientImage() 603 gradient->stops=(StopInfo *) AcquireQuantumMemory(gradient->number_stops, in GradientImage() 604 sizeof(*gradient->stops)); in GradientImage() 605 if (gradient->stops == (StopInfo *) NULL) in GradientImage() 608 (void) memcpy(gradient->stops,stops,(size_t) number_stops* in GradientImage() 609 sizeof(*stops)); in GradientImage()
|
D | draw.c | 351 if (draw_info->gradient.stops != (StopInfo *) NULL) in CloneDrawInfo() 357 clone_info->gradient.stops=(StopInfo *) AcquireQuantumMemory((size_t) in CloneDrawInfo() 358 number_stops,sizeof(*clone_info->gradient.stops)); in CloneDrawInfo() 359 if (clone_info->gradient.stops == (StopInfo *) NULL) in CloneDrawInfo() 362 (void) memcpy(clone_info->gradient.stops,draw_info->gradient.stops, in CloneDrawInfo() 363 (size_t) number_stops*sizeof(*clone_info->gradient.stops)); in CloneDrawInfo() 912 if (draw_info->gradient.stops != (StopInfo *) NULL) in DestroyDrawInfo() 913 draw_info->gradient.stops=(StopInfo *) RelinquishMagickMemory( in DestroyDrawInfo() 914 draw_info->gradient.stops); in DestroyDrawInfo() 2014 qsort(gradient->stops,gradient->number_stops,sizeof(StopInfo), in DrawGradientImage() [all …]
|
/external/skqp/experimental/docs/ |
D | canvasBackend.js | 108 var stopLen = g.stops.length; 110 var stop = g.stops[index];
|
D | svgBackend.js | 113 var stopLen = g.stops.length; 115 var stop = g.stops[index];
|
/external/skia/experimental/docs/ |
D | canvasBackend.js | 108 var stopLen = g.stops.length; 110 var stop = g.stops[index];
|
D | svgBackend.js | 113 var stopLen = g.stops.length; 115 var stop = g.stops[index];
|
/external/icu/icu4c/source/data/translit/ |
D | und_FONIPA_ar.txt | 65 # Nasal stops 70 # Non-nasal stops
|
D | und_FONIPA_fa.txt | 58 # Nasal stops 63 # Non-nasal stops
|
/external/skqp/modules/skottie/src/ |
D | SkottieShapeLayer.cpp | 150 const skjson::ObjectValue* stops = jgrad["g"]; in AttachGradient() local 151 if (!stops) in AttachGradient() 154 const auto stopCount = ParseDefault<int>((*stops)["p"], -1); in AttachGradient() 173 abuilder->bindProperty<VectorValue>((*stops)["k"], ascope, in AttachGradient() 174 [adapter](const VectorValue& stops) { in AttachGradient() argument 175 adapter->setColorStops(stops); in AttachGradient()
|
D | SkottieAdapter.cpp | 195 std::vector<sksg::Gradient::ColorStop> stops; in apply() local 203 stops.push_back({ pos, ValueTraits<VectorValue>::As<SkColor>(rgb) }); in apply() 206 fGradient->setColorStops(std::move(stops)); in apply()
|
/external/skia/modules/skottie/src/ |
D | SkottieShapeLayer.cpp | 150 const skjson::ObjectValue* stops = jgrad["g"]; in AttachGradient() local 151 if (!stops) in AttachGradient() 154 const auto stopCount = ParseDefault<int>((*stops)["p"], -1); in AttachGradient() 173 abuilder->bindProperty<VectorValue>((*stops)["k"], ascope, in AttachGradient() 174 [adapter](const VectorValue& stops) { in AttachGradient() argument 175 adapter->setColorStops(stops); in AttachGradient()
|
/external/autotest/client/tests/profiler_test/ |
D | control | 9 stops it, generates the profiler report and removes it).
|
/external/curl/docs/cmdline-opts/ |
D | expect100-timeout.d | 11 curl stops waiting, it will continue as if the response has been received.
|