Home
last modified time | relevance | path

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

12345

/external/ImageMagick/coders/
Dgradient.c112 *stops; in ReadGRADIENTImage() local
143 stops=(StopInfo *) AcquireQuantumMemory(2,sizeof(*stops)); in ReadGRADIENTImage()
144 if (stops == (StopInfo *) NULL) in ReadGRADIENTImage()
146 stops[0].offset=0.0; in ReadGRADIENTImage()
147 stops[1].offset=1.0; in ReadGRADIENTImage()
148 status=QueryColorCompliance(colorname,AllCompliance,&stops[0].color,exception); in ReadGRADIENTImage()
151 stops=(StopInfo *) RelinquishMagickMemory(stops); in ReadGRADIENTImage()
155 (void) SetImageColorspace(image,stops[0].color.colorspace,exception); in ReadGRADIENTImage()
157 if (GetPixelInfoIntensity(image,&stops[0].color) > (QuantumRange/2.0)) in ReadGRADIENTImage()
163 status=QueryColorCompliance(colorname,AllCompliance,&stops[1].color,exception); in ReadGRADIENTImage()
[all …]
/external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/util/
DTabber.java57 private List stops = new ArrayList(); field in Tabber.MonoTabber
61 stops.clear(); in clear()
69 for (int i = 0; i < stops.size(); ++i) { in toString()
74 .append(stops.get(i)); in toString()
85 stops.add(new Integer(tabPos)); in addAbsolute()
94 int last = getStop(stops.size()-1); in add()
95 stops.add(new Integer(last + fieldWidth)); in add()
102 if (fieldNumber >= stops.size()) fieldNumber = stops.size() - 1; in getStop()
103 return ((Integer)stops.get(fieldNumber)).intValue(); in getStop()
107 if (fieldNumber >= stops.size()) return LEFT; in getType()
/external/icu/android_icu4j/src/main/tests/android/icu/dev/util/
DTabber.java58 private List stops = new ArrayList(); field in Tabber.MonoTabber
62 stops.clear(); in clear()
70 for (int i = 0; i < stops.size(); ++i) { in toString()
75 .append(stops.get(i)); in toString()
86 stops.add(new Integer(tabPos)); in addAbsolute()
95 int last = getStop(stops.size()-1); in add()
96 stops.add(new Integer(last + fieldWidth)); in add()
103 if (fieldNumber >= stops.size()) fieldNumber = stops.size() - 1; in getStop()
104 return ((Integer)stops.get(fieldNumber)).intValue(); in getStop()
108 if (fieldNumber >= stops.size()) return LEFT; in getType()
/external/mesa3d/src/gallium/state_trackers/vega/
Dpaint.h82 void paint_set_ramp_stops(struct vg_paint *paint, const VGfloat *stops,
84 void paint_ramp_stops(struct vg_paint *paint, VGfloat *stops,
87 void paint_set_ramp_stopsi(struct vg_paint *paint, const VGint *stops,
89 void paint_ramp_stopsi(struct vg_paint *paint, VGint *stops,
Dpaint.c383 void paint_set_ramp_stops(struct vg_paint *paint, const VGfloat *stops, in paint_set_ramp_stops() argument
396 memcpy(paint->gradient.ramp_stops, stops, sizeof(VGfloat)*num); in paint_set_ramp_stops()
402 if (stops[0] > 1) { in paint_set_ramp_stops()
403 stops = default_stops; in paint_set_ramp_stops()
406 last_coord = stops[0]; in paint_set_ramp_stops()
409 VGfloat coord = stops[idx]; in paint_set_ramp_stops()
411 stops = default_stops; in paint_set_ramp_stops()
418 create_gradient_data(stops, num / 5, paint->gradient.color_data, in paint_set_ramp_stops()
530 void paint_ramp_stops(struct vg_paint *paint, VGfloat *stops, in paint_ramp_stops() argument
533 memcpy(stops, paint->gradient.ramp_stops, sizeof(VGfloat)*num); in paint_ramp_stops()
[all …]
/external/icu/icu4c/source/data/brkitr/
Dthaidict.txt15995 # วี.ดี. # TODO: why do these have full stops?
16380 # ส.ธรนินทร์ -- TODO: why do these have full stops?
/external/skia/src/effects/gradients/
DSkTwoPointConicalGradient_gpu.cpp207 SkScalar* stops = stopsArray; in TestCreate() local
209 int colorCount = RandomGradientParams(d->fRandom, colors, &stops, &tm); in TestCreate()
212 colors, stops, colorCount, in TestCreate()
488 SkScalar* stops = stopsArray; in TestCreate() local
490 int colorCount = RandomGradientParams(d->fRandom, colors, &stops, &tm); in TestCreate()
493 colors, stops, colorCount, in TestCreate()
701 SkScalar* stops = stopsArray; in TestCreate() local
703 int colorCount = RandomGradientParams(d->fRandom, colors, &stops, &tm); in TestCreate()
706 colors, stops, colorCount, in TestCreate()
949 SkScalar* stops = stopsArray; in TestCreate() local
[all …]
DSkSweepGradient.cpp190 SkScalar* stops = stopsArray; in TestCreate() local
192 int colorCount = RandomGradientParams(d->fRandom, colors, &stops, &tmIgnored); in TestCreate()
194 colors, stops, colorCount)); in TestCreate()
DSkRadialGradient.cpp312 SkScalar* stops = stopsArray; in TestCreate() local
314 int colorCount = RandomGradientParams(d->fRandom, colors, &stops, &tm); in TestCreate()
316 colors, stops, colorCount, in TestCreate()
/external/strace/
DREADME-linux-ptrace28 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/ImageMagick/MagickCore/
Ddraw.c324 if (draw_info->gradient.stops != (StopInfo *) NULL) in CloneDrawInfo()
330 clone_info->gradient.stops=(StopInfo *) AcquireQuantumMemory((size_t) in CloneDrawInfo()
331 number_stops,sizeof(*clone_info->gradient.stops)); in CloneDrawInfo()
332 if (clone_info->gradient.stops == (StopInfo *) NULL) in CloneDrawInfo()
335 (void) CopyMagickMemory(clone_info->gradient.stops, in CloneDrawInfo()
336 draw_info->gradient.stops,(size_t) number_stops* in CloneDrawInfo()
337 sizeof(*clone_info->gradient.stops)); in CloneDrawInfo()
857 if (draw_info->gradient.stops != (StopInfo *) NULL) in DestroyDrawInfo()
858 draw_info->gradient.stops=(StopInfo *) RelinquishMagickMemory( in DestroyDrawInfo()
859 draw_info->gradient.stops); in DestroyDrawInfo()
[all …]
Dpaint.c409 const GradientType type,const SpreadMethod method,const StopInfo *stops, in GradientImage() argument
431 assert(stops != (const StopInfo *) NULL); in GradientImage()
604 gradient->stops=(StopInfo *) AcquireQuantumMemory(gradient->number_stops, in GradientImage()
605 sizeof(*gradient->stops)); in GradientImage()
606 if (gradient->stops == (StopInfo *) NULL) in GradientImage()
609 (void) CopyMagickMemory(gradient->stops,stops,(size_t) number_stops* in GradientImage()
610 sizeof(*stops)); in GradientImage()
Ddraw.h158 *stops; member
/external/skia/experimental/docs/
DcanvasBackend.js108 var stopLen = g.stops.length;
110 var stop = g.stops[index];
DsvgBackend.js113 var stopLen = g.stops.length;
115 var stop = g.stops[index];
/external/autotest/client/tests/profiler_test/
Dcontrol9 stops it, generates the profiler report and removes it).
/external/chromium-trace/catapult/third_party/flot/
Dexcanvas.js1054 var stops = fillStyle.colors_;
1055 stops.sort(function(cs1, cs2) {
1059 var length = stops.length;
1060 var color1 = stops[0].color;
1061 var color2 = stops[length - 1].color;
1062 var opacity1 = stops[0].alpha * ctx.globalAlpha;
1063 var opacity2 = stops[length - 1].alpha * ctx.globalAlpha;
1067 var stop = stops[i];
/external/autotest/client/tests/cyclictest/
DREADME3 runs a test with 5 threads, stops after 10 loops and outputs:
/external/chromium-trace/catapult/telemetry/third_party/altgraph/doc/
Dgraph.rst236 If *end* is specified traversal stops when reaching that node.
247 If *end* is specified traversal stops when reaching that node.
261 When *end* is specified iteration stops at that node.
268 When *end* is specified iteration stops at that node.
/external/autotest/server/site_tests/platform_CryptohomeSyncStressServer/
Dcontrol18 This test runs continuously and fails iff it stops running.
/external/clang/test/Analysis/
Dpr_2542_rdar_6793404.m46 // NOTE: The analyzer doesn't really handle this; it just stops tracking
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/services/
Dsonofmmm.cfg12 # when it starts and stops
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/pyami/
Dcopybot.cfg16 # when it starts and stops
/external/llvm/test/MC/AArch64/
Delf-globaladdress.ll53 ; This is on the store, so not really important, but it stops the next
/external/llvm/test/CodeGen/SystemZ/
Dunaligned-01.ll4 ; FIXME: -combiner-alias-analysis (the default for SystemZ) stops

12345