HomeSort by relevance Sort by last modified time
    Searched full:pointsize (Results 26 - 50 of 259) sorted by null

12 3 4 5 6 7 8 91011

  /external/ImageMagick/coders/
caption.c 206 if ((fabs(image_info->pointsize) < MagickEpsilon) && (strlen(caption) > 0))
215 for ( ; ; draw_info->pointsize*=2.0)
239 high=draw_info->pointsize;
242 draw_info->pointsize=(low+high)/2.0;
258 low=draw_info->pointsize+0.5;
260 high=draw_info->pointsize-0.5;
265 low=draw_info->pointsize+0.5;
267 high=draw_info->pointsize-0.5;
269 draw_info->pointsize=(low+high)/2.0-0.5;
282 if (image_info->pointsize == 0.0
283 pointsize[MagickPathExtent]; local
    [all...]
  /external/opencv3/samples/cpp/
intelperc_capture.cpp 168 static const int pointSize = 4;
169 for (int row = y; row < min(y + pointSize, image.rows); row++)
172 for (int col = 0; col < min(pointSize, image.cols - x); col++, ptrDst+=3)
201 static const int pointSize = 4;
202 for (int row = g_closedDepthPoint[0]; row < min(g_closedDepthPoint[0] + pointSize, image.rows); row++)
205 for (int col = 0; col < min(pointSize, image.cols - g_closedDepthPoint[1]); col++, ptrDst+=3)
258 static const int pointSize = 4;
259 for (int row = g_closedDepthPoint[0]; row < min(g_closedDepthPoint[0] + pointSize, image.rows); row++)
262 for (int col = 0; col < min(pointSize, image.cols - g_closedDepthPoint[1]); col++, ptrDst+=3)
  /external/icu/icu4c/source/samples/layout/
GnomeFontInstance.cpp 49 GnomeFontInstance::GnomeFontInstance(FT_Library engine, const char *fontPathName, le_int16 pointSize, LEErrorCode &status)
50 : FontTableCache(), fPointSize(pointSize), fUnitsPerEM(0), fAscent(0), fDescent(0), fLeading(0),
70 error = FT_Set_Char_Size(fFace, 0, pointSize << 6, 92, 92);
  /external/chromium-trace/catapult/third_party/flot/
jquery.flot.threshold.min.js 7 (function($){var options={series:{threshold:null}};function init(plot){function thresholdData(plot,s,datapoints,below,color){var ps=datapoints.pointsize,i,x,y,p,prevp,thresholded=$.extend({},s);thresholded.datapoints={points:[],pointsize:ps,format:datapoints.format};thresholded.label=null;thresholded.color=color;thresholded.threshold= (…)
jquery.flot.fillbetween.min.js 7 (function($){var options={series:{fillBetween:null}};function init(plot){function findBottomSeries(s,allseries){var i;for(i=0;i<allseries.length;++i){if(allseries[i].id===s.fillBetween){return allseries[i]}}if(typeof s.fillBetween==="number"){if(s.fillBetween<0||s.fillBetween>=allseries.length){return null}return allseries[s.fillBetween]}return null}function computeFillBottoms(plot,s,datapoints){if(s.fillBetween==null){return}var other=findBottomSeries(s,plot.getData());if(!other){return}var ps=datapoints.pointsize,points=datapoints.points,otherps=other.datapoints.pointsize,otherpoints=other.datapoints.points,newpoints=[],px,py,intery,qx,qy,bottom,withlines=s.lines.show, (…)
jquery.flot.stack.min.js 7 (function($){var options={series:{stack:null}};function init(plot){function findMatchingSeries(s,allseries){var res=null;for(var i=0;i<allseries.length;++i){if(s==allseries[i])break;if(allseries[i].stack==s.stack)res=allseries[i]}return res}function stackData(plot,s,datapoints){if(s.stack==null||s.stack===false)return;var other=findMatchingSeries(s,plot.getData());if(!other)return;var ps=datapoints.pointsize,points=datapoints.points,otherps=other.datapoints.pointsize,otherpoints=other.datapoints.points,newpoints=[],px,py,intery,qx,qy,bottom,withlines=s.lines.show, (…)
jquery.flot.threshold.js 52 var ps = datapoints.pointsize, i, x, y, p, prevp,
55 thresholded.datapoints = { points: [], pointsize: ps, format: datapoints.format };
  /external/icu/icu4c/source/test/letest/
SimpleFontInstance.cpp 26 SimpleFontInstance::SimpleFontInstance(float pointSize, LEErrorCode &status)
27 : fPointSize(pointSize), fAscent(0), fDescent(0)
SimpleFontInstance.h 33 SimpleFontInstance(float pointSize, LEErrorCode &status);
  /external/icu/icu4c/source/test/perf/leperf/
SimpleFontInstance.cpp 23 SimpleFontInstance::SimpleFontInstance(float pointSize, LEErrorCode &status)
24 : fPointSize(pointSize), fAscent(0), fDescent(0)
SimpleFontInstance.h 33 SimpleFontInstance(float pointSize, LEErrorCode &status);
  /external/libgdx/extensions/gdx-tools/src/com/badlogic/gdx/tools/particleeditor/
Chart.java 134 int pointSize = isExpanded ? POINT_SIZE_EXPANDED : POINT_SIZE;
139 if (Math.abs(x - mouseX) <= pointSize && Math.abs(y - mouseY) <= pointSize) {
306 int pointSize = isExpanded ? POINT_SIZE_EXPANDED : POINT_SIZE;
307 int x = (int)pixel.x - pointSize / 2;
308 int y = (int)pixel.y - pointSize / 2;
309 g.fillOval(x, y, pointSize, pointSize);
  /external/skia/gm/
verttext2.cpp 33 const int pointSize = 24;
34 textHeight = SkIntToScalar(pointSize);
shadertext.cpp 105 const int pointSize = 36;
107 const int w = pointSize * textLen;
108 const int h = pointSize;
149 paint.setTextSize(SkIntToScalar(pointSize));
lcdtext.cpp 23 const int pointSize = 36;
24 textHeight = SkIntToScalar(pointSize);
  /external/ImageMagick/Magick++/lib/
Montage.cpp 110 void Magick::Montage::pointSize(size_t pointSize_)
115 size_t Magick::Montage::pointSize(void) const
208 // pointsize
209 montageInfo_.pointsize=_pointSize;
  /external/ImageMagick/MagickCore/
montage.h 44 pointsize; member in struct:_MontageInfo
  /external/skia/samplecode/
SampleShaderText.cpp 115 static int pointSize = 36;
117 int w = pointSize * textLen;
118 int h = pointSize;
157 paint.setTextSize(SkIntToScalar(pointSize));
  /external/ImageMagick/Magick++/lib/Magick++/
Montage.h 61 void pointSize(size_t pointSize_);
62 size_t pointSize(void) const;
  /external/ImageMagick/www/Magick++/
TypeMetric.html 12 <p>The <i>TypeMetric</i> class provides the means to pass data from the Image class's TypeMetric method to the user. It provides information regarding font metrics such as ascent, descent, text width, text height, and maximum horizontal advance. The units of these font metrics are in pixels, and that the metrics are dependent on the current Image font (default Ghostscript's "Helvetica"), pointsize (default 12 points), and x/y resolution (default 72 DPI) settings.</p>
18 <p>Note that a font's pointsize is only a first-order approximation of the font height (ascender + descender) in points. The relationship between the specified pointsize and the rendered font height is determined by the font designer.</p>
  /packages/apps/Dialer/InCallUI/src/com/android/incallui/widget/multiwaveview/
PointCloud.java 209 final float pointSize = interp(MAX_POINT_SIZE, MIN_POINT_SIZE,
221 final float s = pointSize / MAX_POINT_SIZE;
229 canvas.drawCircle(px, py, pointSize, mPaint);
  /external/mesa3d/src/mesa/swrast_setup/
ss_context.c 167 EMIT_ATTR( _TNL_ATTRIB_POINTSIZE, EMIT_1F, pointSize );
298 /* XXX See _tnl_get_attr about pointsize ... */
300 dest->pointSize = tmp[0];
  /external/ImageMagick/PerlMagick/demo/
annotate.pl 17 $label=Image::Magick->new(size=>"600x600",pointsize=>24,font=>$font);
composite.pl 20 $thumbnail=Image::Magick->new(size=>"600x600",pointsize=>24,font=>$font,
piddle.pl 63 font=>'Generic.ttf',fill=>'green',pointsize=>24,rotate=>45.0);

Completed in 977 milliseconds

12 3 4 5 6 7 8 91011