Home
last modified time | relevance | path

Searched refs:stops (Results 1 – 25 of 118) 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/icu4c/source/data/brkitr/dictionaries/
Dthaidict.txt15997 # วี.ดี. # TODO: why do these have full stops?
16382 # ส.ธรนินทร์ -- TODO: why do these have full stops?
/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/fmtlib/doc/bootstrap/mixins/
Dgradients.less7 // Creates two color stops, start and end, by specifying a color and position for each color stop.
8 // Color stops are not available in IE9 and below.
19 // Creates two color stops, start and end, by specifying a color and position for each color stop.
20 // Color stops are not available in IE9 and below.
/external/python/cpython2/Lib/
Dmailbox.py840 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/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/icu/icu4c/source/data/translit/
Dund_FONIPA_ar.txt65 # Nasal stops
70 # Non-nasal stops
Dund_FONIPA_fa.txt58 # Nasal stops
63 # Non-nasal stops
Des_es_FONIPA.txt9 # Not fully phonemic, since we mark up allophonic variants of voiced stops,
/external/autotest/client/tests/profiler_test/
Dcontrol9 stops it, generates the profiler report and removes it).
/external/curl/docs/cmdline-opts/
Dexpect100-timeout.d11 curl stops waiting, it will continue as if the response has been received.
/external/autotest/client/site_tests/platform_DebugDaemonCupsAddPrinters/
Dcontrol.lpadmin17 This test will fail if debugd stops reporting lpadmin failures.
/external/autotest/client/tests/cyclictest/
DREADME3 runs a test with 5 threads, stops after 10 loops and outputs:
/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/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
/external/syslinux/gpxe/
DREADME41 You should see a lot of output, and when it stops, the "bin" directory
/external/python/cpython2/Doc/library/
Dgetopt.rst70 intermixed. The :func:`getopt` function stops processing options as soon as a
74 variable :envvar:`POSIXLY_CORRECT` is set, then option processing stops as
/external/dhcpcd-6.8.2/
DREADME21 This also puts the --no-background flag on and stops the --background flag
86 instead of the kernel. However, if the /dev management system breaks, stops
/external/clang/include/clang/Basic/
DDiagnosticOptions.def90 VALUE_DIAGOPT(TabStop, 32, DefaultTabStop) /// The distance between tab stops.

12345