Home
last modified time | relevance | path

Searched refs:dash_pattern (Results 1 – 10 of 10) sorted by relevance

/external/ImageMagick/MagickWand/
Ddrawing-wand.c1952 p=CurrentContext->dash_pattern; in DrawGetStrokeDashArray()
1962 p=CurrentContext->dash_pattern; in DrawGetStrokeDashArray()
2588 (CurrentContext->dash_pattern != (double *) NULL)) in DrawGetVectorGraphics()
2591 *dash_pattern; in DrawGetVectorGraphics() local
2593 dash_pattern=AcquireString((char *) NULL); in DrawGetVectorGraphics()
2594 for (i=0; fabs(CurrentContext->dash_pattern[i]) >= MagickEpsilon; i++) in DrawGetVectorGraphics()
2597 (void) ConcatenateString(&dash_pattern,","); in DrawGetVectorGraphics()
2599 CurrentContext->dash_pattern[i]); in DrawGetVectorGraphics()
2600 (void) ConcatenateString(&dash_pattern,value); in DrawGetVectorGraphics()
2602 (void) SetXMLTreeContent(child,dash_pattern); in DrawGetVectorGraphics()
[all …]
/external/python/cpython2/RISCOS/Modules/
Ddrawfmodule.c162 draw_dash_pattern *dash_pattern=0; in DrawF_Path() local
190 { dash_pattern=&(((drawfile_path_with_pattern*)dpath)->pattern); in DrawF_Path()
191 dash_pattern->start=start; in DrawF_Path()
192 dash_pattern->element_count=element_count; in DrawF_Path()
194 { dash_pattern->elements[i]=(int)PyInt_AsLong(PyTuple_GetItem(dp,i)); in DrawF_Path()
220 e=xdraw_process_path(thepath,0x70000000,0,0,width,&line_style,dash_pattern, in DrawF_Path()
/external/ImageMagick/Magick++/lib/
DOptions.cpp578 _drawInfo->dash_pattern=(double *) RelinquishMagickMemory( in strokeDashArray()
579 _drawInfo->dash_pattern); in strokeDashArray()
588 _drawInfo->dash_pattern=static_cast<double*>(AcquireMagickMemory((x+1)* in strokeDashArray()
591 memcpy(_drawInfo->dash_pattern,strokeDashArray_,(x+1)*sizeof(double)); in strokeDashArray()
592 _drawInfo->dash_pattern[x]=0.0; in strokeDashArray()
598 return(_drawInfo->dash_pattern); in strokeDashArray()
/external/skqp/gm/
Dstrokes.cpp531 SkScalar dash_pattern[] = {1, 5}; local
532 paint.setPathEffect(SkDashPathEffect::Make(dash_pattern, 2, 0));
547 SkScalar dash_pattern[] = {1, 5}; variable
548 paint.setPathEffect(SkDashPathEffect::Make(dash_pattern, 2, 0));
/external/ImageMagick/MagickCore/
Ddraw.c309 if (draw_info->dash_pattern != (double *) NULL) in CloneDrawInfo()
314 for (x=0; fabs(draw_info->dash_pattern[x]) >= DrawEpsilon; x++) ; in CloneDrawInfo()
315 clone_info->dash_pattern=(double *) AcquireQuantumMemory((size_t) x+1UL, in CloneDrawInfo()
316 sizeof(*clone_info->dash_pattern)); in CloneDrawInfo()
317 if (clone_info->dash_pattern == (double *) NULL) in CloneDrawInfo()
320 (void) CopyMagickMemory(clone_info->dash_pattern,draw_info->dash_pattern, in CloneDrawInfo()
321 (size_t) (x+1)*sizeof(*clone_info->dash_pattern)); in CloneDrawInfo()
854 if (draw_info->dash_pattern != (double *) NULL) in DestroyDrawInfo()
855 draw_info->dash_pattern=(double *) RelinquishMagickMemory( in DestroyDrawInfo()
856 draw_info->dash_pattern); in DestroyDrawInfo()
[all …]
Ddraw.h290 *dash_pattern; member
Dannotate.c1483 if (annotate_info->dash_pattern != (double *) NULL) in RenderFreetype()
1484 annotate_info->dash_pattern[0]=0.0; in RenderFreetype()
/external/skia/gm/
Dstrokes.cpp531 SkScalar dash_pattern[] = {1, 5}; local
532 paint.setPathEffect(SkDashPathEffect::Make(dash_pattern, 2, 0));
547 SkScalar dash_pattern[] = {1, 5}; variable
548 paint.setPathEffect(SkDashPathEffect::Make(dash_pattern, 2, 0));
/external/ImageMagick/PerlMagick/
DMagick.xs9013 draw_info->dash_pattern=(double *) AcquireQuantumMemory( in Mogrify()
9014 av_len(av)+2UL,sizeof(*draw_info->dash_pattern)); in Mogrify()
9015 if (draw_info->dash_pattern != (double *) NULL) in Mogrify()
9018 draw_info->dash_pattern[i]=(double) in Mogrify()
9020 draw_info->dash_pattern[i]=0.0; in Mogrify()
/external/ImageMagick/PerlMagick/quantum/
Dquantum.xs.in9013 draw_info->dash_pattern=(double *) AcquireQuantumMemory(
9014 av_len(av)+2UL,sizeof(*draw_info->dash_pattern));
9015 if (draw_info->dash_pattern != (double *) NULL)
9018 draw_info->dash_pattern[i]=(double)
9020 draw_info->dash_pattern[i]=0.0;