/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/GLES2/ |
gl2ext.h | 244 GL_APICALL void GL_APIENTRY glEGLImageTargetTexture2DOES (GLenum target, GLeglImageOES image); 245 GL_APICALL void GL_APIENTRY glEGLImageTargetRenderbufferStorageOES (GLenum target, GLeglImageOES image); 247 typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETTEXTURE2DOESPROC) (GLenum target, GLeglImageOES image); 248 typedef void (GL_APIENTRYP PFNGLEGLIMAGETARGETRENDERBUFFERSTORAGEOESPROC) (GLenum target, GLeglImageOES image);
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/scene/ |
ViewNode.java | 19 import java.awt.Image; 36 public Image image; field in class:ViewNode
|
/sdk/hierarchyviewer/src/com/android/hierarchyviewer/ui/ |
Workspace.java | 99 import java.awt.image.BufferedImage; 107 import java.awt.Image; 796 private void showCaptureWindow(ViewNode node, String captureParams, Image image) { 797 if (image != null) { 803 final CaptureRenderer label = new CaptureRenderer(new ImageIcon(image), node); 1145 Image image = get(); local 1284 BufferedImage image = new BufferedImage(sceneView.getWidth(), local [all...] |
/build/core/ |
Makefile | 324 # the boot image, which is a collection of other images. 354 $(call pretty,"Target boot image: $@") 360 $(call pretty,"Target boot image: $@") 362 $(hide) $(call assert-max-image-size,$@,$(BOARD_BOOTIMAGE_PARTITION_SIZE),raw) 537 # before the rules that use that variable to build the image. 588 # Recovery image 657 @echo ----- Making recovery image ------ 679 @echo ----- Made recovery image -------- $@ 680 $(hide) $(call assert-max-image-size,$@,$(BOARD_RECOVERYIMAGE_PARTITION_SIZE),raw) 697 # system image [all...] |
/external/openssl/ssl/ |
install.com | 80 $! Shareable image.
|
/hardware/broadcom/wlan/bcm4329/src/dhd/sys/ |
dhd.h | 275 extern int dhd_os_get_image_block(char * buf, int len, void * image); 276 extern void dhd_os_close_image(void * image);
|
/external/chromium/third_party/icu/source/i18n/ |
ucol_res.cpp | 212 result = ucol_initCollator(UCA->image, result, UCA, status); 230 if(intStatus == U_MISSING_RESOURCE_ERROR) { /* we didn't find the binary image, we should use the rules */ 243 if(uprv_memcmp(colData->UCAVersion, UCA->image->UCAVersion, sizeof(UVersionInfo)) != 0 || 244 uprv_memcmp(colData->UCDVersion, UCA->image->UCDVersion, sizeof(UVersionInfo)) != 0 || 260 result = ucol_initCollator(UCA->image, result, UCA, status); 425 uprv_memcpy(table->UCAVersion, UCA->image->UCAVersion, sizeof(UVersionInfo)); 436 result = ucol_initCollator(UCA->image, 0, UCA, status); [all...] |
/external/icu4c/i18n/ |
ucol_res.cpp | 212 result = ucol_initCollator(UCA->image, result, UCA, status); 230 if(intStatus == U_MISSING_RESOURCE_ERROR) { /* we didn't find the binary image, we should use the rules */ 243 if(uprv_memcmp(colData->UCAVersion, UCA->image->UCAVersion, sizeof(UVersionInfo)) != 0 || 244 uprv_memcmp(colData->UCDVersion, UCA->image->UCDVersion, sizeof(UVersionInfo)) != 0 || 260 result = ucol_initCollator(UCA->image, result, UCA, status); 419 uprv_memcpy(table->UCAVersion, UCA->image->UCAVersion, sizeof(UVersionInfo)); 430 result = ucol_initCollator(UCA->image, 0, UCA, status); [all...] |
/external/webkit/WebCore/platform/mac/ |
ClipboardMac.mm | 36 #import "Image.h" 330 void ClipboardMac::setDragImage(CachedImage* image, Node *node, const IntPoint &loc) 335 m_dragImage = image; 346 // Dashboard wants to be able to set the drag image during dragging, but Cocoa does not allow this. 358 // Else either 1) we haven't started dragging yet, so we rely on the part to install this drag image 360 // set the image way too late. 408 // Client specifies point relative to element, not the whole image, which may include child 415 result = m_dragImage->image()->getNSImage();
|
/external/webkit/WebKit/android/WebCoreSupport/ |
FrameLoaderClientAndroid.cpp | 251 // Try to obtain the icon image. 252 WebCore::Image* icon = WebCore::iconDatabase()->iconForPageURL( 1033 static RefPtr<Image> image; local [all...] |
/packages/apps/Gallery/src/com/android/camera/ |
GalleryPicker.java | 232 // Slide show starts from the first image on the list. 552 // IMAGE_LIST_DATA stores the parameters for the four image lists 620 private static void placeImage(Bitmap image, Canvas c, Paint paint, 630 c.drawBitmap(image, xPos, yPos, paint); 637 // We draw three different version of the folder image depending on the 639 // For a single image, that image draws over the whole folder. 682 IImage image = i < count ? images.getImageAt(i) : null; 684 if (image != null) { 685 temp = image.miniThumbBitmap() [all...] |
/packages/apps/Gallery3D/src/com/cooliris/media/ |
HudLayer.java | 503 int image = 0; local 510 image = CAMERA_BUTTON_ICON; 516 image = STACK_MODE_ICON; 521 image = GRID_MODE_ICON; 529 image = CAMERA_BUTTON_ICON; 540 topRightButton.setImages(image, pressedImage); 738 mimeType = "image/jpeg"; [all...] |
/external/clearsilver/imd/ |
imd.c | 276 /* Declare the image */ 341 /* fprintf(stderr,"reading image\n"); */ 342 /* Read the image in */ 358 /* create the destination image */ 371 /* if the src image has wider aspect ratio than the max */ 375 /* if the src image has taller aspect ratio than the max */ 388 /* Scale it to the destination image */ 394 /* write the output image */ 998 NEOERR *dowork_image (CGI *cgi, char *image) 1030 snprintf (srcpath, sizeof(srcpath), "%s/%s", basepath, image); 1076 char *image; local [all...] |
/external/webkit/WebCore/accessibility/gtk/ |
AccessibilityObjectWrapperAtk.cpp | 131 static AccessibilityObject* core(AtkImage* image) 133 return core(ATK_OBJECT(image)); [all...] |
/sdk/ddms/app/src/com/android/ddms/ |
UIThread.java | 72 import org.eclipse.swt.graphics.Image; 251 private Image mTracingStartImage; 253 private Image mTracingStopImage; 422 // create the image loaders for DDMS and DDMUILIB 1454 Image image = mDdmUiLibLoader.loadImage("pull.png", mDisplay); \/\/$NON-NLS-1\$ local [all...] |
/external/webkit/WebCore/rendering/ |
RenderLayerBacking.cpp | 589 // or any background (color or image). 698 // FIXME: we could optimize cases where the image, video or canvas is known to fill the border box entirely, 706 // An image can be directly compositing if it's the sole content of the layer, and has no box decorations 738 Image* image = cachedImage->image(); 739 if (!image) 742 // We have to wait until the image is fully loaded before setting it on the layer. 746 // This is a no-op if the layer doesn't have an inner layer for the image. 747 m_graphicsLayer->setContentsToImage(image); [all...] |
SVGRenderTreeAsText.cpp | 264 writeIfNotDefault(ts, "image rendering", svgStyle->imageRendering(), SVGRenderStyle::initialImageRendering()); 505 void writeSVGImage(TextStream& ts, const RenderImage& image, int indent) 507 writeStandardPrefix(ts, image, indent); 508 writePositionAndStyle(ts, image);
|
/external/webkit/WebCore/rendering/style/ |
RenderStyle.cpp | 539 void RenderStyle::addCursor(CachedImage* image, const IntPoint& hotSpot) 542 data.cursorImage = image; 566 void RenderStyle::setContent(PassRefPtr<StyleImage> image, bool add) 568 if (!image) 589 newContentData->setImage(image); [all...] |
/external/webkit/WebKit/win/ |
DOMCoreClasses.cpp | 1090 HRESULT STDMETHODCALLTYPE DOMElement::renderedImage(HBITMAP* image) 1092 if (!image) { 1096 *image = 0; 1104 *image = frame->nodeImage(m_element); 1105 if (!*image) [all...] |
/external/webkit/WebCore/platform/graphics/win/ |
GraphicsLayerCACF.cpp | 35 #include "Image.h" 347 void GraphicsLayerCACF::setContentsToImage(Image* image) 351 if (image) { 352 m_pendingContentsImage = image->nativeImageForCurrentFrame(); 615 imageLayer->setName("Image Layer"); 622 // FIXME: maybe only do trilinear if the image is being scaled down, 630 // No image.
|
/external/webkit/WebKit/qt/Api/ |
qwebsettings.cpp | 36 #include "Image.h" 321 \value MissingImageGraphic The replacement graphic shown when an image could not be loaded. 571 WebCore::Image* image = WebCore::iconDatabase()->iconForPageURL(WebCore::KURL(url).string(), local 573 if (!image) 576 QPixmap* icon = image->nativeImageForCurrentFrame(); 596 Sets \a graphic to be drawn when QtWebKit needs to draw an image of the 599 For example, when an image cannot be loaded the pixmap specified by 617 For example, when an image cannot be loaded the pixmap specified by [all...] |
/external/webkit/WebCore/bindings/objc/ |
DOM.mm | 427 - (NSImage*)image 436 return cachedImage->image()->getNSImage(); 461 return (NSData *)cachedImage->image()->getTIFFRepresentation();
|
/sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/ |
HeapPanel.java | 35 import org.eclipse.swt.graphics.Image; 149 /** Image used for the hilbert display. Since we recreate a new image every time, we 151 private Image mHilbertImage; 152 private Image mLinearImage; 1224 Image image; local [all...] |
/external/srec/srec/clib/ |
srec_arb.c | 310 pfread(&allotree->image, sizeof(char *), 1, fp); /* image */ 324 allotree->image = buffer; 357 PLogMessage("read arbdata image size %d\n", allotree->image_size);
|
/external/webkit/WebCore/css/ |
wml.css | 149 background-image:none !important;
|