Searched refs:pixels (Results 51 - 75 of 142) sorted by relevance

123456

/macosx-10.9.5/tcl-102/tk84/tk/unix/
H A DtkUnixMenubu.c354 int width, height, mm, pixels;
454 pixels = WidthOfScreen(Tk_Screen(mbPtr->tkwin));
455 mbPtr->indicatorHeight= (INDICATOR_HEIGHT * pixels)/(10*mm);
456 mbPtr->indicatorWidth = (INDICATOR_WIDTH * pixels)/(10*mm)
350 int width, height, mm, pixels; local
/macosx-10.9.5/tcl-102/tk84/tk/win/
H A DtkWinColor.c443 XFreeColors(display, colormap, pixels, npixels, planes)
446 unsigned long* pixels;
470 (char *) pixels[i]);
476 cref = pixels[i] & 0x00ffffff;
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/tablelist/scripts/
H A DtablelistWidget.tcl688 # (whose width and height can be set arbitrarily in pixels).
2648 set pixels [lindex $data(colList) [expr {2*$col}]]
2649 if {$pixels == 0} { ;# convention: dynamic width
2652 set pixels $data($col-maxPixels)
2655 if {$pixels == 0 || $data($col-wrap)} {
2660 getAuxData $win $key $col auxType auxWidth $pixels
2663 incr pixels $data($col-delta)
2667 adjustMlElem $win list auxWidth indentWidth $cellFont $pixels "r" ""
2670 adjustElem $win text auxWidth indentWidth $cellFont $pixels "r" ""
3579 set pixels [exp
[all...]
H A DtablelistEdit.tcl1346 set pixels [colWidth $win $col -stretched]
1347 if {$indentWidth >= $pixels} {
1590 adjustEditWindow $win $pixels
1844 proc tablelist::adjustEditWindow {win pixels} {
1851 if {$indentWidth >= $pixels} {
1852 set indentWidth $pixels
1853 set pixels 0
1856 incr pixels -$indentWidth
1858 if {$auxWidth + 5 <= $pixels} {
1860 incr pixels
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/
H A DShadowBlur.cpp80 // Round to the nearest 32 pixels so we do not grow the buffer for similar sized requests.
310 unsigned char* pixels = imageData; local
315 for (int j = 0; j < final; ++j, pixels += delta) {
319 // This is much more efficient than computing the sum of each pixels
327 int alpha1 = pixels[channels[step]];
328 int alpha2 = pixels[(dim - 1) * stride + channels[step]];
330 unsigned char* ptr = pixels + channels[step + 1];
331 unsigned char* prev = pixels + stride + channels[step];
332 unsigned char* next = pixels + ofs * stride + channels[step];
350 prev = pixels
[all...]
/macosx-10.9.5/WebCore-7537.78.1/platform/wince/
H A DPasteboardWinCE.cpp230 void* pixels; local
231 HBITMAP resultBitmap = sourceBmp->clipBitmap(rect, true, bmpInfo, pixels);
/macosx-10.9.5/WebKit-7537.78.2/win/
H A DWebNodeHighlight.cpp159 void* pixels = 0; local
160 OwnPtr<HBITMAP> hbmp = adoptPtr(::CreateDIBSection(hdc, &bitmapInfo, DIB_RGB_COLORS, &pixels, 0, 0));
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tkextlib/tcllib/
H A Ddiagrams.rb193 def linewidth(pixels=None)
194 number(tk_call('::Diagrams::linewidth', pixels))
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-en/
H A Druler.rb112 TkWinfo.pixels($ruler_canvas, '13.5c'),
113 TkWinfo.pixels($ruler_canvas, '.65c') ) )
/macosx-10.9.5/ruby-104/ruby/ext/tk/sample/demos-jp/
H A Druler.rb110 TkWinfo.pixels($ruler_canvas, '13.5c'),
111 TkWinfo.pixels($ruler_canvas, '.65c') ) )
/macosx-10.9.5/tcl-102/tk/tk/library/demos/
H A Druler.tcl75 $c addtag well withtag [rulerMkTab $c [winfo pixels $c 13.5c] \
76 [winfo pixels $c .65c]]
/macosx-10.9.5/tcl-102/tk84/tk/library/demos/
H A Druler.tcl75 $c addtag well withtag [rulerMkTab $c [winfo pixels $c 13.5c] \
76 [winfo pixels $c .65c]]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/ntext/
H A Dntext.tcl594 %W yview scroll [expr {-15 * (%D)}] pixels
597 %W yview scroll [expr {-150 * (%D)}] pixels
600 %W xview scroll [expr {-15 * (%D)}] pixels
603 %W xview scroll [expr {-150 * (%D)}] pixels
614 %W yview scroll [expr {-%D/3}] pixels
616 %W yview scroll [expr {(2-%D)/3}] pixels
628 %W yview scroll -50 pixels
633 %W yview scroll 50 pixels
965 $w yview scroll [expr {1 + $Priv(y) - [winfo height $w]}] pixels
967 $w yview scroll [expr {-1 + $Priv(y)}] pixels
[all...]
/macosx-10.9.5/WebCore-7537.78.1/html/canvas/
H A DWebGLRenderingContext.cpp3398 void WebGLRenderingContext::readPixels(GC3Dint x, GC3Dint y, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, ArrayBufferView* pixels, ExceptionCode&) argument
3406 if (!pixels) {
3434 if (pixels->getType() != ArrayBufferView::TypeUint8) {
3452 if (pixels->byteLength() < totalBytesRequired) {
3459 void* data = pixels->baseAddress();
3464 m_context->getExtensions()->readnPixelsEXT(x, y, width, height, format, type, pixels->byteLength(), data);
3476 unsigned char* pixels = reinterpret_cast<unsigned char*>(data); local
3479 pixels[3] = 255;
3480 pixels += 4;
3482 pixels
3662 texImage2DBase(GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height, GC3Dint border, GC3Denum format, GC3Denum type, const void* pixels, ExceptionCode& ec) argument
3772 texImage2D(GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Dsizei width, GC3Dsizei height, GC3Dint border, GC3Denum format, GC3Denum type, ArrayBufferView* pixels, ExceptionCode& ec) argument
3800 texImage2D(GC3Denum target, GC3Dint level, GC3Denum internalformat, GC3Denum format, GC3Denum type, ImageData* pixels, ExceptionCode& ec) argument
3965 texSubImage2DBase(GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, const void* pixels, ExceptionCode& ec) argument
4018 texSubImage2D(GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, ArrayBufferView* pixels, ExceptionCode& ec) argument
4045 texSubImage2D(GC3Denum target, GC3Dint level, GC3Dint xoffset, GC3Dint yoffset, GC3Denum format, GC3Denum type, ImageData* pixels, ExceptionCode& ec) argument
5162 validateTexFuncData(const char* functionName, GC3Dint level, GC3Dsizei width, GC3Dsizei height, GC3Denum format, GC3Denum type, ArrayBufferView* pixels, NullDisposition disposition) argument
5238 validateCompressedTexFuncData(const char* functionName, GC3Dsizei width, GC3Dsizei height, GC3Denum format, ArrayBufferView* pixels) argument
[all...]
/macosx-10.9.5/WebKit-7537.78.2/efl/ewk/
H A Dewk_view_tiled.cpp37 uint8_t* pixels = static_cast<uint8_t*>(evas_object_image_data_get(tile->image, true)); local
38 Ewk_Paint_Context* context = ewk_paint_context_from_image_data_new(pixels, tile->width, tile->height, tile->cspace);
44 evas_object_image_data_set(tile->image, pixels);
/macosx-10.9.5/tcl-102/tk/tk/win/
H A DtkWinColor.c442 unsigned long *pixels,
464 entryPtr = Tcl_FindHashEntry(&cmap->refCounts, (char *) pixels[i]);
470 cref = pixels[i] & 0x00ffffff;
432 XFreeColors( Display *display, Colormap colormap, unsigned long *pixels, int npixels, unsigned long planes) argument
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/iwidgets/generic/
H A Dscrolledtext.itk207 -width [winfo pixels $shell $itk_option(-width)]
240 -height [winfo pixels $shell $itk_option(-height)]
/macosx-10.9.5/tcl-102/tcl_ext/snack/snack/demos/tcl/
H A DWaveform.tcl23 -orient hori -length 150 -command {.c itemconf wave -pixels }] -side left
/macosx-10.9.5/tcl-102/tk/tk/generic/
H A DtkScrollbar.c302 int xDelta, yDelta, pixels, length;
316 pixels = yDelta;
320 pixels = xDelta;
327 fraction = ((double) pixels / (double) length);
300 int xDelta, yDelta, pixels, length; local
H A DtkText.h51 int *pixels; /* Array containing two integers for each member in struct:TkTextLine
53 * is the number of vertical pixels taken up
131 * window, in pixels. */
163 * in pixels. */
245 int x; /* X position of chunk, in pixels. This
279 int width; /* Width of this chunk, in pixels. Initially
356 * text line, in pixels. Only valid if
361 * lines of each text line, in pixels. Only
376 int rMargin; /* Right margin for text, in pixels. Only
479 int location; /* Offset in pixels o
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkScrollbar.c311 int xDelta, yDelta, pixels, length;
325 pixels = yDelta;
329 pixels = xDelta;
336 fraction = ((double) pixels / (double) length);
309 int xDelta, yDelta, pixels, length; local
/macosx-10.9.5/ruby-104/ruby/ext/tk/lib/tk/
H A Dwinfo.rb178 def TkWinfo.pixels(win, dist) singleton method in class:TkWinfo
179 number(tk_call_without_enc('winfo', 'pixels', win, dist))
182 TkWinfo.pixels self, dist
/macosx-10.9.5/tcl-102/tcl_ext/tkimg/tkimg/ppm/
H A Dppm.c296 static Boln readUShortRow (Tcl_Interp *interp, tkimg_MFile *handle, UShort *pixels, argument
299 UShort *mPtr = pixels;
311 pixels[i] = (UShort) val;
337 static Boln readUByteRow (Tcl_Interp *interp, tkimg_MFile *handle, UByte *pixels, argument
340 UByte *mPtr = pixels;
352 pixels[i] = (UByte) val;
/macosx-10.9.5/WebCore-7537.78.1/platform/graphics/wince/
H A DGraphicsContextWinCE.cpp295 unsigned* pixels = (unsigned*)bmp->bytes(); local
296 const unsigned* const pixelsEnd = pixels + bmp->bitmapInfo().numPixels();
297 while (pixels < pixelsEnd) {
298 *pixels |= 0xFF000000;
299 ++pixels;
326 unsigned* pixels = (unsigned*)bmp->bytes(); local
327 const unsigned* const pixelsEnd = pixels + bmp->bitmapInfo().numPixels();
328 while (pixels < pixelsEnd) {
329 *pixels ^= 0xFF000000;
330 ++pixels;
562 unsigned* pixels = (unsigned*)m_bitmap->bytes(); local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/widget/
H A Druler.tcl21 # -measure -default pixels ; {pixels points inches mm cm}
75 option -measure -default pixels -configuremethod C-measure \
76 -type [list snit::enum -values [list pixels points inches mm cm]]
116 valid {pixels points inches mm cm}
117 cm c mm m inches i points p pixels ""
400 foreach {val und} {pixels 0 points 1 inches 0 mm 0 cm 0} {

Completed in 185 milliseconds

123456