Searched refs:image (Results 1 - 25 of 638) sorted by relevance

1234567891011>>

/macosx-10.10.1/dyld-353.2.1/unit-tests/test-cases/framework-fallback/
H A Dmain.c41 const struct mach_header *image; local
43 image = NSAddImage("AppKit.framework/AppKit",
45 if ( image == NULL )
/macosx-10.10.1/tcl-105/tk84/tk/generic/
H A DtkImgUtil.c4 * This file contains image related utility functions.
25 * This function takes an image and copies the data into an
39 TkAlignImageData(image, alignment, bitOrder)
40 XImage *image; /* Image to be aligned. */
49 if (image->bits_per_pixel != 1) {
50 panic("TkAlignImageData: Can't handle image depths greater than 1.");
57 dataWidth = image->bytes_per_line;
62 data = ckalloc(dataWidth * image->height);
65 for (i = 0; i < image->height; i++) {
66 srcPtr = &image
[all...]
/macosx-10.10.1/configd-699.1.5/SystemConfiguration.fproj/
H A DCaptiveNetwork.c46 static void *image = NULL; local
47 if (NULL == image) {
56 image = dlopen(path, RTLD_LAZY | RTLD_LOCAL);
58 image = dlopen(framework, RTLD_LAZY | RTLD_LOCAL);
61 return (void *)image;
70 void *image = __loadCaptiveNetwork(); local
71 if (image) dyfunc = dlsym(image, "__CNSetSupportedSSIDs");
82 void *image = __loadCaptiveNetwork(); local
83 if (image) dyfun
94 void *image = __loadCaptiveNetwork(); local
105 void *image = __loadCaptiveNetwork(); local
118 void *image = __loadCaptiveNetwork(); local
[all...]
H A Ddy_framework.c45 static void *image = NULL; local
46 if (NULL == image) {
55 image = dlopen(path, RTLD_LAZY | RTLD_LOCAL);
57 image = dlopen(framework, RTLD_LAZY | RTLD_LOCAL);
60 return (void *)image;
70 void *image = __loadIOKit(); local
71 if (image) dyfunc = dlsym(image, "IOBSDNameMatching");
83 void *image = __loadIOKit(); local
84 if (image) dyfun
96 void *image = __loadIOKit(); local
109 void *image = __loadIOKit(); local
122 void *image = __loadIOKit(); local
135 void *image = __loadIOKit(); local
150 void *image = __loadIOKit(); local
163 void *image = __loadIOKit(); local
176 void *image = __loadIOKit(); local
189 void *image = __loadIOKit(); local
202 void *image = __loadIOKit(); local
218 void *image = __loadIOKit(); local
233 void *image = __loadIOKit(); local
246 void *image = __loadIOKit(); local
259 void *image = __loadIOKit(); local
272 void *image = __loadIOKit(); local
285 void *image = __loadIOKit(); local
298 void *image = __loadIOKit(); local
311 void *image = __loadIOKit(); local
324 void *image = __loadIOKit(); local
337 void *image = __loadIOKit(); local
350 void *image = __loadIOKit(); local
363 void *image = __loadIOKit(); local
376 void *image = __loadIOKit(); local
387 static void *image = NULL; local
435 void *image = __loadSecurity(); local
447 void *image = __loadSecurity(); local
460 void *image = __loadSecurity(); local
472 void *image = __loadSecurity(); local
485 void *image = __loadSecurity(); local
497 void *image = __loadSecurity(); local
509 void *image = __loadSecurity(); local
521 void *image = __loadSecurity(); local
533 void *image = __loadSecurity(); local
545 void *image = __loadSecurity(); local
557 void *image = __loadSecurity(); local
569 void *image = __loadSecurity(); local
581 void *image = __loadSecurity(); local
594 void *image = __loadSecurity(); local
611 void *image = __loadSecurity(); local
625 void *image = __loadSecurity(); local
[all...]
/macosx-10.10.1/tcl-105/tk/tk/generic/
H A DtkImgUtil.c4 * This file contains image related utility functions.
24 * This function takes an image and copies the data into an aligned
38 XImage *image, /* Image to be aligned. */
47 if (image->bits_per_pixel != 1) {
49 "TkAlignImageData: Can't handle image depths greater than 1.");
56 dataWidth = image->bytes_per_line;
61 data = ckalloc((unsigned) dataWidth * image->height);
64 for (i = 0; i < image->height; i++) {
65 srcPtr = &image->data[i * image
36 TkAlignImageData( XImage *image, int alignment, int bitOrder) argument
[all...]
/macosx-10.10.1/WebKit2-7600.1.25/UIProcess/API/C/cg/
H A DWKIconDatabaseCG.cpp39 Image* image = toImpl(iconDatabaseRef)->imageForPageURL(toWTFString(urlRef)); local
40 return image ? image->getFirstCGImageRefOfSize(IntSize(static_cast<int>(size.width), static_cast<int>(size.height))) : 0;
45 Image* image = toImpl(iconDatabaseRef)->imageForPageURL(toWTFString(urlRef)); local
46 return image ? image->getCGImageArray().leakRef() : 0;
/macosx-10.10.1/tcl-105/tk/tk/tests/ttk/
H A Dimage.test9 test image-1.1 "Bad image element" -body {
10 ttk::style element create BadImage image badimage
11 } -returnCodes error -result {image "badimage" doesn't exist}
13 test image-1.2 "Duplicate element" -setup {
14 image create photo test.element -width 10 -height 10
15 ttk::style element create testElement image test.element
17 ttk::style element create testElement image test.element
20 test image-2.0 "Deletion of displayed image (labe
[all...]
/macosx-10.10.1/pyobjc-45/2.5/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGRotation/
H A DCGImageUtils.py9 self.fRotation = 0.0 # The rotation about the center of the image (degrees)
10 self.fScaleX = 0.0 # The scaling of the image along it's X-axis
11 self.fScaleY = 0.0 # The scaling of the image along it's Y-axis
12 self.fTranslateX = 0.0 # Move the image along the X-axis
13 self.fTranslateY = 0.0 # Move the image along the Y-axis
14 self.fImageRef = None # The image itself
16 self.fOrientation = None # Affine transform that ensures the image displays correctly
18 # Create a new image from a file at the given url
22 # Try to create an image source to the image passe
[all...]
/macosx-10.10.1/pyobjc-45/2.6/pyobjc/pyobjc-framework-Quartz/Examples/Core Graphics/CGRotation/
H A DCGImageUtils.py9 self.fRotation = 0.0 # The rotation about the center of the image (degrees)
10 self.fScaleX = 0.0 # The scaling of the image along it's X-axis
11 self.fScaleY = 0.0 # The scaling of the image along it's Y-axis
12 self.fTranslateX = 0.0 # Move the image along the X-axis
13 self.fTranslateY = 0.0 # Move the image along the Y-axis
14 self.fImageRef = None # The image itself
16 self.fOrientation = None # Affine transform that ensures the image displays correctly
18 # Create a new image from a file at the given url
22 # Try to create an image source to the image passe
[all...]
/macosx-10.10.1/pyobjc-45/pyobjc/pyobjc-framework-Quartz-2.5.1/Examples/Core Graphics/CGRotation/
H A DCGImageUtils.py9 self.fRotation = 0.0 # The rotation about the center of the image (degrees)
10 self.fScaleX = 0.0 # The scaling of the image along it's X-axis
11 self.fScaleY = 0.0 # The scaling of the image along it's Y-axis
12 self.fTranslateX = 0.0 # Move the image along the X-axis
13 self.fTranslateY = 0.0 # Move the image along the Y-axis
14 self.fImageRef = None # The image itself
16 self.fOrientation = None # Affine transform that ensures the image displays correctly
18 # Create a new image from a file at the given url
22 # Try to create an image source to the image passe
[all...]
/macosx-10.10.1/ruby-106/ruby/test/rss/
H A Dtest_inherit.rb10 def self.tag_name; 'image'; end
24 orig_image = rss.image
26 image = InheritedImage.new("#{prefix} #{orig_image.about}")
27 image.title = "#{prefix} #{orig_image.title}"
28 image.url = "#{prefix} #{orig_image.url}"
29 image.link = "#{prefix} #{orig_image.link}"
30 rss.image = image
33 new_image = new_rss.image
/macosx-10.10.1/WebInspectorUI-7600.1.17/UserInterface/Views/
H A DIndeterminateProgressSpinner.css29 background-image: url(../Images/IndeterminateProgressSpinner1.svg);
33 background-image: url(../Images/IndeterminateProgressSpinner2.svg);
37 background-image: url(../Images/IndeterminateProgressSpinner3.svg);
41 background-image: url(../Images/IndeterminateProgressSpinner4.svg);
45 background-image: url(../Images/IndeterminateProgressSpinner5.svg);
49 background-image: url(../Images/IndeterminateProgressSpinner6.svg);
53 background-image: url(../Images/IndeterminateProgressSpinner7.svg);
57 background-image: url(../Images/IndeterminateProgressSpinner8.svg);
61 background-image: url(../Images/IndeterminateProgressSpinner9.svg);
65 background-image
[all...]
H A DApplicationCacheIcons.css27 content: -webkit-image-set(url(../Images/ApplicationCacheManifest.png) 1x, url(../Images/ApplicationCacheManifest@2x.png) 2x);
31 content: -webkit-image-set(url(../Images/ApplicationCache.png) 1x, url(../Images/ApplicationCache@2x.png) 2x);
H A DDOMStorageIcons.css27 content: -webkit-image-set(url(../Images/LocalStorage.png) 1x, url(../Images/LocalStorage@2x.png) 2x);
31 content: -webkit-image-set(url(../Images/SessionStorage.png) 1x, url(../Images/SessionStorage@2x.png) 2x);
H A DControlToolbarItem.js26 WebInspector.ControlToolbarItem = function(identifier, toolTip, image, imageWidth, imageHeight)
28 WebInspector.ButtonNavigationItem.call(this, identifier, toolTip, image, imageWidth, imageHeight, false);
H A DCookieIcon.css27 content: -webkit-image-set(url(../Images/Cookie.png) 1x, url(../Images/Cookie@2x.png) 2x);
H A DDatabaseIcon.css27 content: -webkit-image-set(url(../Images/Database.png) 1x, url(../Images/Database@2x.png) 2x);
H A DDatabaseTableIcon.css27 content: -webkit-image-set(url(../Images/DatabaseTable.png) 1x, url(../Images/DatabaseTable@2x.png) 2x);
/macosx-10.10.1/tcl-105/tcl_ext/tkimg/tkimg/sgi/
H A Dsgi.c13 * A photo image handler for Silicon Graphics' native file format.
15 * The following image types are supported:
40 * Read SGI image: "sgi -matte <bool> -verbose <bool>"
41 * Write SGI image: "sgi -matte <bool> -verbose <bool> -compression <type>"
53 * image library code, written in 1984.
132 /* Start of original code from SGI image library, slightly modified. */
142 * image; getrow returns buffer which
218 static int img_badrow(IMAGE *image, unsigned int y, unsigned int z);
219 static int img_write(IMAGE *image, char *buffer,int count);
220 static int img_writeheader(IMAGE *image);
252 isetname(IMAGE *image, const char *name) argument
311 ibufalloc(IMAGE *image) argument
316 imgOpenRead(MYCHANNEL file, IMAGE *image, const char *mode) argument
324 imgOpenWrite(MYCHANNEL file, IMAGE *image, const char *mode, unsigned int type, unsigned int dim, unsigned int xsize, unsigned int ysize, unsigned int zsize) argument
334 imgopen(int f, MYCHANNEL file, IMAGE *image, const char *mode, unsigned int type, unsigned int dim, unsigned int xsize, unsigned int ysize, unsigned int zsize) argument
446 iclose(IMAGE *image) argument
495 iflush(IMAGE *image) argument
602 img_seek(IMAGE *image, unsigned int y, unsigned int z) argument
642 img_badrow(IMAGE *image, unsigned int y, unsigned int z) argument
650 img_write(IMAGE *image, char *buffer,int count) argument
662 img_writeheader(IMAGE *image) argument
674 img_read(IMAGE *image, char *buffer, int count) argument
686 img_optseek(IMAGE *image, unsigned int offset) argument
730 img_getrowsize(IMAGE *image) argument
743 img_setrowsize(IMAGE *image, int cnt, int y, int z) argument
903 putrow(IMAGE *image, unsigned short *buffer, unsigned int y, unsigned int z) argument
1028 getrow(IMAGE *image, unsigned short *buffer, unsigned int y, unsigned int z) argument
[all...]
/macosx-10.10.1/objc4-646/runtime/
H A Dobjcrt.h21 OBJC_EXPORT void *_objc_init_image(HMODULE image, const objc_sections *sects);
22 OBJC_EXPORT void _objc_load_image(HMODULE image, void *hinfo);
23 OBJC_EXPORT void _objc_unload_image(HMODULE image, void *hinfo);
/macosx-10.10.1/apr-32/apr/apr/include/arch/beos/
H A Dapr_arch_dso.h26 #include <kernel/image.h>
/macosx-10.10.1/dcerpc-61/www/content/css/blueprint/plugins/link-icons/
H A Dscreen.css28 a[href^="http:"] { background-image: url(icons/external.png); }
29 a[href^="mailto:"] { background-image: url(icons/email.png); }
30 a[href^="http:"]:visited { background-image: url(icons/visited.png); }
33 a[href$=".pdf"] { background-image: url(icons/pdf.png); }
34 a[href$=".doc"] { background-image: url(icons/doc.png); }
35 a[href$=".xls"] { background-image: url(icons/xls.png); }
39 a[href$=".rdf"] { background-image: url(icons/feed.png); }
40 a[href^="aim:"] { background-image: url(icons/im.png); }
/macosx-10.10.1/dyld-353.2.1/src/
H A DdyldAPIs.cpp223 inline NSModule ImageLoaderToNSModule(const ImageLoader* image) argument
225 return (NSModule)image;
229 ImageLoader* image = (ImageLoader*)module; local
230 if ( dyld::validImage(image) )
231 return image;
238 ImageLoader* image; member in struct:__NSObjectFileImage
251 // The contained image is delete in one of two places:
252 // NSUnLinkModule deletes the image if there is no __NSObjectFileImage with a reference to it
253 // NSDestroyObjectFileImage deletes the image if image i
303 ImageLoader* image = dyld::getIndexedImage(image_index); local
314 ImageLoader* image = dyld::getIndexedImage(image_index); local
325 ImageLoader* image = dyld::findImageByMachHeader(mh); local
337 ImageLoader* image = dyld::getIndexedImage(image_index); local
348 ImageLoader* image = dyld::findImageContainingAddress(address); local
409 ImageLoader* image; local
439 const ImageLoader* image; local
460 const ImageLoader* image; local
484 const ImageLoader* image; local
497 const ImageLoader* image; local
519 ImageLoader* image = NULL; local
618 ImageLoader* image = dyld::findImageByMachHeader(mh); local
633 ImageLoader* image = dyld::findImageByMachHeader(mh); local
662 const ImageLoader* image; local
671 const ImageLoader* image; local
688 ImageLoader* image = dyld::findImageContainingSymbol(symbol); local
701 ImageLoader* image = dyld::findImageContainingSymbol(symbol); local
712 ImageLoader* image = dyld::findImageContainingSymbol(symbol); local
741 ImageLoader* image = dyld::findImageContainingAddress(address); local
762 createObjectImageFile(ImageLoader* image, const void* address = NULL, size_t len=0) argument
793 ImageLoader* image = dyld::load(pathName, context); local
820 ImageLoader* image = dyld::loadFromMemory((const uint8_t*)address, size, NULL); local
1038 ImageLoader* image = NULL; local
1081 ImageLoader* image = NSModuleToImageLoader(module); local
1091 ImageLoader* image = NSModuleToImageLoader(module); local
1101 ImageLoader* image = NSModuleToImageLoader(module); local
1231 ImageLoader* image = NSModuleToImageLoader(module); local
1334 ImageLoader* image = NULL; local
1418 ImageLoader* image = NULL; local
1593 ImageLoader* image = dyld::findImageContainingAddress(address); local
1660 const ImageLoader* image; local
1776 ImageLoader* image = dyld::findImageContainingAddress(addr); local
1802 ImageLoader* image = dyld::findImageContainingAddress(address); local
[all...]
/macosx-10.10.1/cups-408/cups/conf/
H A Dmime.types89 image/gif gif string(0,GIF87a) string(0,GIF89a)
90 image/png png string(0,<89>PNG)
91 image/jpeg jpeg jpg jpe string(0,<FFD8FF>) +\
96 image/pwg-raster string(0,"RaS2") + string(4,PwgRaster<00>) priority(150)
97 image/tiff tiff tif string(0,MM<002A>) string(0,II<2A00>)
98 image/x-photocd pcd string(2048,PCD_IPI)
99 image/x-portable-anymap pnm
100 image/x-portable-bitmap pbm string(0,P1) string(0,P4)
101 image/x-portable-graymap pgm string(0,P2) string(0,P5)
102 image/
[all...]
/macosx-10.10.1/emacs-93/emacs/lisp/
H A Dimage.el0 ;;; image.el --- image API
31 (defgroup image () function
36 (defconst image-type-header-regexps
46 ("\\`\xff\xd8" . (image-jpeg-p . jpeg)))
47 "Alist of (REGEXP . IMAGE-TYPE) pairs used to auto-detect image types.
48 When the first bytes of an image file match REGEXP, it is assumed to
49 be of image type IMAGE-TYPE if IMAGE-TYPE is a symbol. If not a symbol,
51 with one argument, a string containing the image data. If PREDICATE returns
52 a non-nil value, TYPE is the image'
[all...]

Completed in 120 milliseconds

1234567891011>>