Searched refs:points (Results 126 - 150 of 182) sorted by relevance

12345678

/macosx-10.9.5/emacs-92/emacs/lisp/gnus/
H A Dmessage.el2487 '(:help "Insert a To header that points to the author."))]
2847 "Insert a To header that points to the author of the article being replied to.
3677 "Return a list of all points where the text has PROP."
3678 (let ((points nil)
3683 (push point points))
3685 (nreverse points)))
3694 (let ((points (message-text-with-property 'message-hidden)))
3695 (when points
3696 (goto-char (car points))
3697 (dolist (point points)
[all...]
/macosx-10.9.5/CPANInternal-140/SOAP-Lite-0.69/lib/SOAP/
H A DTrace.pm85 Used in the various transport modules to track the contents of requests and responses (as ordinary strings, not as objects) at different points along the way.
/macosx-10.9.5/WebCore-7537.78.1/plugins/blackberry/
H A DPluginViewBlackBerry.cpp368 npTouchEvent.points = 0;
374 npTouchEvent.points = touchPoints.get();
/macosx-10.9.5/hfs-226.1.1/fsck_hfs/dfalib/
H A DFixDecompsNotes.txt147 it points to the beginning of a sequence of combining marks that continues up to
/macosx-10.9.5/vim-53/runtime/indent/
H A Dawk.vim43 " This function contains a lot of exit points. It checks for simple cases
/macosx-10.9.5/vim-53/runtime/syntax/
H A Dmf.vim146 " Metafont coordinates and points
H A Dgnuplot.vim138 syn keyword gnuplotType line[s] linesp[oints] points poiinttype sbezier splines steps
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/wince/
H A DGraphicsContextWinCE.cpp786 void GraphicsContext::drawConvexPolygon(size_t npoints, const FloatPoint* points, bool shouldAntialias) argument
788 if (!m_data->m_opacity || paintingDisabled() || npoints <= 1 || !points)
796 FloatPoint trPoint = m_data->mapPoint(points[0]);
801 trPoint = m_data->mapPoint(points[i]);
850 void GraphicsContext::clipConvexPolygon(size_t numPoints, const FloatPoint* points, bool antialiased) argument
/macosx-10.9.5/WebKit-7537.78.2/blackberry/Api/
H A DWebPage.cpp4081 npTouchEvent.points = 0;
4084 npTouchEvent.points = new NPTouchPoint[npTouchEvent.size];
4086 npTouchEvent.points[i].touchId = event.m_points[i].id();
4087 npTouchEvent.points[i].clientX = event.m_points[i].screenPosition().x();
4088 npTouchEvent.points[i].clientY = event.m_points[i].screenPosition().y();
4089 npTouchEvent.points[i].screenX = event.m_points[i].screenPosition().x();
4090 npTouchEvent.points[i].screenY = event.m_points[i].screenPosition().y();
4091 npTouchEvent.points[i].pageX = event.m_points[i].pixelViewportPosition().x();
4092 npTouchEvent.points[i].pageY = event.m_points[i].pixelViewportPosition().y();
4101 delete[] npTouchEvent.points;
[all...]
/macosx-10.9.5/CPANInternal-140/Path-Class/lib/Path/Class/
H A DFile.pm318 stats the link instead of the file the link points to.
H A DDir.pm615 stats the link instead of the directory the link points to.
/macosx-10.9.5/Heimdal-323.92.1/lib/hcrypto/libtommath/
H A Dbn.tex1238 actually faster than Comba until you hit distinct ``cutoff'' points. For Karatsuba with the default configuration,
1242 Toom-Cook has incredible overhead and is probably only useful for very large inputs. So far no known cutoff points
1243 exist and for the most part I just set the cutoff points very high to make sure they're not called.
1245 A demo program in the ``etc/'' directory of the project called ``tune.c'' can be used to find the cutoff points. This
1270 When the program is running it will output a series of measurements for different cutoff points. It will first find
1271 good Karatsuba squaring and multiplication points. Then it proceeds to find Toom-Cook points. Note that the Toom-Cook
1272 tuning takes a very long time as the cutoff points are likely to be very high.
/macosx-10.9.5/vim-53/src/
H A Dos_mswin.c761 * Check if a pointer points to a valid NUL terminated string.
2414 * When "fname" is the name of a shortcut (*.lnk) resolve the file it points
3221 int points = 0; local
3239 points *= 10;
3240 points += *str - '0';
3257 pixels = MulDiv(points,
H A Dgui_w48.c1334 int points; local
1341 points = MulDiv(pixels, 72,
1346 return points;
H A Dgui_mac.c442 int points = 0; local
457 points *= 10;
458 points += *str - '0';
467 pixels = points/divisor;
/macosx-10.9.5/emacs-92/emacs/lisp/
H A Dediff-diff.el412 (setq diff-list (cons (if word-mode 'words 'points)
499 ;; else convert lines to points
606 ;; of this list. The type is either 'points or 'words
647 ;; convert word numbers to points, if necessary
942 (setq diff-list (cdr diff-list)) ; discard list type (words or points)
964 ;; convert lines to points, if necessary
1042 ;; diff list contains word numbers or points, depending on word-mode
1043 (setq diff-list (cons (if word-mode 'words 'points)
1131 ;; else convert lines to points
/macosx-10.9.5/llvmCore-3425.0.33/lib/Support/Windows/
H A DPathV2.inc445 // Handle reparse points.
/macosx-10.9.5/WebCore-7537.78.1/accessibility/mac/
H A DWebAccessibilityObjectWrapperMac.mm1579 [bezierPath moveToPoint:NSPointFromCGPoint(element->points[0])];
1582 [bezierPath lineToPoint:NSPointFromCGPoint(element->points[0])];
1585 [bezierPath curveToPoint:NSPointFromCGPoint(element->points[0]) controlPoint1:NSPointFromCGPoint(element->points[1]) controlPoint2:NSPointFromCGPoint(element->points[2])];
/macosx-10.9.5/WebCore-7537.78.1/page/
H A DEventHandler.cpp3946 const Vector<PlatformTouchPoint>& points = event.touchPoints(); local
3953 for (i = 0; i < points.size(); ++i) {
3954 const PlatformTouchPoint& point = points[i];
3961 for (i = 0; i < points.size(); ++i) {
3962 const PlatformTouchPoint& point = points[i];
4086 // the user had several points touched but did not move them all) should
/macosx-10.9.5/CPANInternal-140/Crypt-SSLeay-0.64/
H A DSSLeay.pm142 tests, ensure that C<LD_LIBRARY_PATH> points to the location where the
/macosx-10.9.5/ICU-511.35/icuSources/common/
H A Dubidiln.c689 Point *point, *start=pBiDi->insertPoints.points,
/macosx-10.9.5/emacs-92/emacs/lisp/textmodes/
H A Dartist.el602 artist-arrows artist-pen-set-arrow-points
610 artist-arrows artist-set-arrow-points-for-2points
617 artist-arrows artist-set-arrow-points-for-2points
642 artist-arrows artist-set-arrow-points-for-poly
649 artist-arrows artist-set-arrow-points-for-poly
876 ARROW-SET-FN is a function that is called to set arrow end-points.
892 2 -- The drawing operation requires two points.
2026 ;; Routines for setting and unsetting points
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/generic/
H A Dscrolledhtml.itk856 if [regexp "${efont}(B?)(I?)(U?)(\[1-9\]\[0-9\]*)-" $tag t b i u points] {
874 "_%spoints" $itk_option(-fontsize)]] $points]
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkIntXlibDecls.h639 Drawable d, GC gc, XPoint * points,
929 Drawable d, GC gc, XPoint * points,
1152 void (*xDrawPoints) _ANSI_ARGS_((Display* display, Drawable d, GC gc, XPoint * points, int npoints, int mode)); /* 86 */
1245 void (*xDrawPoints) _ANSI_ARGS_((Display* display, Drawable d, GC gc, XPoint * points, int npoints, int mode)); /* 86 */
/macosx-10.9.5/emacs-92/emacs/etc/
H A Dcalccard.tex639 \key{set number of data points}{g N}

Completed in 375 milliseconds

12345678