/external/chromium-trace/trace-viewer/src/cc/ |
picture_view.js | 9 base.require('cc.picture'); 18 * Displays a picture snapshot in a human readable form. 22 'picture-snapshot-view', 29 this.classList.add('picture-snapshot-view'); 36 this.pictureDebugger_.picture = this.objectSnapshot_; 41 'cc::Picture', PictureSnapshotView);
|
picture_ops_list_view_test.js | 8 base.require('cc.picture'); 22 var instance = p.objects.getAllInstancesNamed('cc::Picture')[0]; 26 view.picture = snapshot; 36 var instance = p.objects.getAllInstancesNamed('cc::Picture')[0]; 40 view.picture = snapshot;
|
picture_ops_list_view.css | 6 picture-ops-list-view { 11 picture-ops-list-view > .x-list-view { 16 picture-ops-list-view > .x-list-view .list-item { 24 picture-ops-list-view > .x-list-view .list-item:hover { 29 picture-ops-list-view > .x-list-view .list-item > * { 37 picture-ops-list-view > .x-list-view .list-item > .elementInfo {
|
picture_test.js | 8 base.require('cc.picture'); 13 base.unittest.testSuite('cc.picture', function() { 18 var instance = p.objects.getAllInstancesNamed('cc::Picture')[0]; 29 var instance = p.objects.getAllInstancesNamed('cc::Picture')[0];
|
picture_view.css | 6 .picture-snapshot-view {
|
/external/skia/dm/ |
DMUtil.cpp | 13 void RecordPicture(skiagm::GM* gm, SkPicture* picture, uint32_t recordFlags) { 15 SkCanvas* canvas = picture->beginRecording(size.width(), size.height(), recordFlags); 19 picture->endRecording(); 29 void DrawPicture(SkPicture* picture, SkBitmap* bitmap) { 30 SkASSERT(picture != NULL); 33 canvas.drawPicture(*picture);
|
/external/chromium_org/third_party/WebKit/Source/platform/image-encoders/skia/ |
WEBPImageEncoder.cpp | 43 static int writeOutput(const uint8_t* data, size_t size, const WebPPicture* const picture) 45 static_cast<Vector<unsigned char>*>(picture->custom_ptr)->append(data, size); 49 static bool rgbPictureImport(const unsigned char* pixels, bool premultiplied, WebPImporter importRGBX, WebPImporter importRGB, WebPPicture* picture) 52 return importRGBX(picture, pixels, picture->width * 4); 57 size_t pixelCount = picture->height * picture->width; 73 return importRGB(picture, rgb.data(), picture->width * 3); 76 template <bool Premultiplied> inline bool importPictureBGRX(const unsigned char* pixels, WebPPicture* picture) [all...] |
/external/chromium_org/content/renderer/ |
skia_benchmarking_extension.cc | 11 #include "cc/resources/picture.h" 41 static scoped_refptr<cc::Picture> ParsePictureStr(v8::Isolate* isolate, 46 return cc::Picture::CreateFromSkpValue(picture_value.get()); 49 static scoped_refptr<cc::Picture> ParsePictureHash(v8::Isolate* isolate, 54 return cc::Picture::CreateFromValue(picture_value.get()); 67 "chrome.skiaBenchmarking.rasterize = function(picture, params) {" 69 " Rasterizes a Picture JSON-encoded by cc::Picture::AsValue()." 70 " @param {Object} picture A json-encoded cc::Picture. 144 scoped_refptr<cc::Picture> picture = ParsePictureHash(isolate, args[0]); local 238 scoped_refptr<cc::Picture> picture = ParsePictureHash(isolate, args[0]); local 279 scoped_refptr<cc::Picture> picture = ParsePictureHash(isolate, args[0]); local 318 scoped_refptr<cc::Picture> picture = ParsePictureStr(isolate, args[0]); local [all...] |
/external/chromium_org/cc/debug/ |
traced_picture.cc | 14 TracedPicture::TracedPicture(scoped_refptr<Picture> picture) 15 : picture_(picture), 23 TracedPicture::AsTraceablePicture(Picture* picture) { 25 new TracedPicture(picture)); 29 TracedPicture::AsTraceablePictureAlias(Picture* original) {
|
/external/chromium_org/third_party/libva/va/ |
va_enc_mpeg2.h | 63 * \brief Packed Picture Parameter Set (PPS). 95 /** \brief Picture width. 103 /** \brief Picture height. 171 * \brief Picture parameter for MPEG-2 encoding 176 * If packed picture headers mode is used, i.e. if the encoding 187 /** \brief Forward reference picture */ 189 /** \brief Backward reference picture */ 191 /** \brief Reconstructed(decoded) picture */ 202 * \brief Flag to indicate the picture is the last one or not. 204 * This fields holds 0 if the picture to be encoded is not [all...] |
/external/chromium_org/content/common/gpu/media/ |
h264_dpb.h | 5 // This file contains an implementation of an H.264 Decoded Picture Buffer 19 // A picture (a frame or a field) in the H.264 spec sense. 44 bool idr; // IDR picture? 45 bool ref; // reference picture? 46 bool long_term; // long term reference picture? 49 // picture has finished decoding? 55 // memory management after finishing this picture. 63 // DPB - Decoded Picture Buffer. 78 // Remove a picture by its pic_order_cnt and free it. 84 // Store picture in DPB. DPB takes ownership of its resources [all...] |
/frameworks/base/core/jni/android/graphics/ |
Picture.cpp | 41 SkPicture* picture = NULL; local 44 picture = SkPicture::CreateFromStream(strm); 47 return picture; 50 static void killPicture(JNIEnv* env, jobject, SkPicture* picture) { 51 SkASSERT(picture); 52 picture->unref(); 56 SkPicture* picture) { 58 SkASSERT(picture); 59 picture->draw(canvas); 62 static bool serialize(JNIEnv* env, jobject, SkPicture* picture, [all...] |
/development/samples/training/threadsample/src/com/example/android/threadsample/ |
DataProviderContract.java | 43 * Picture table primary key column name 48 * Picture table name 53 * Picture table content URI 59 * Picture table thumbnail URL column name 64 * Picture table thumbnail filename column name 69 * Picture table full picture URL column name 74 * Picture table full picture filename column name
|
/external/chromium_org/android_webview/native/ |
aw_picture.cc | 14 AwPicture::AwPicture(skia::RefPtr<SkPicture> picture) 15 : picture_(picture) { 34 bool RenderPictureToCanvas(SkPicture* picture, SkCanvas* canvas) { 35 picture->draw(canvas); 49 LOG_IF(ERROR, !ok) << "Couldn't draw picture";
|
/external/jmonkeyengine/engine/src/core/com/jme3/ui/ |
Picture.java | 47 * A <code>Picture</code> represents a 2D image drawn on the screen. 52 public class Picture extends Geometry { 58 * Create a named picture. 60 * By default a picture's width and height are 1 63 * @param name the name of the picture in the scene graph 66 public Picture(String name, boolean flipY){ 73 * Creates a named picture. 74 * By default a picture's width and height are 1 78 * @param name the name of the picture in the scene graph 80 public Picture(String name) [all...] |
/external/chromium_org/third_party/skia/include/utils/ |
SkPictureUtils.h | 19 * Given a rectangular visible "window" into the picture, return an array 24 * The pixelrefs returned in the SkData are already owned by the picture, 25 * so the returned pointers are only valid while the picture is in scope
|
/external/skia/include/utils/ |
SkPictureUtils.h | 19 * Given a rectangular visible "window" into the picture, return an array 24 * The pixelrefs returned in the SkData are already owned by the picture, 25 * so the returned pointers are only valid while the picture is in scope
|
/external/skia/tools/ |
CopyTilesRenderer.h | 19 * PictureRenderer that draws the picture and then extracts it into tiles. For large pictures, 20 * it will divide the picture into large tiles and draw the picture once for each large tile.
|
/external/chromium_org/cc/resources/ |
picture_pile_impl.cc | 103 // If this picture has opaque contents, it is guaranteeing that it will 153 // Rasterize the collection of relevant picture piles. 157 // Coalesce rasters of the same picture into different rects: 179 Picture* picture = info.GetPicture(); local 180 if (!picture) 185 // of the picture chunk's layer rect. The min_contents_scale enforces that 192 << picture->LayerRect().ToString() 196 PictureRegionMap::iterator it = results->find(picture); 198 Region& region = (*results)[picture]; 241 Picture* picture = it->first; local 298 skia::RefPtr<SkPicture> picture = skia::AdoptRef(new SkPicture); local 392 const Picture* picture = it->second.GetPicture(); local 410 Picture* picture = it->second.GetPicture(); local [all...] |
/external/chromium_org/media/video/ |
picture.h | 15 // A picture buffer that is composed of a GLES2 texture. 53 // A decoded picture frame. 55 class MEDIA_EXPORT Picture { 57 Picture(int32 picture_buffer_id, int32 bitstream_buffer_id); 59 // Returns the id of the picture buffer where this picture is contained.
|
/external/chromium_org/cc/trees/ |
layer_tree_host_unittest_picture.cc | 16 // These tests deal with picture layers. 30 scoped_refptr<FakePictureLayer> picture = variable 32 layer_tree_host()->root_layer()->AddChild(picture); variable 43 // Drop the picture layer from the tree. 47 // Add a new picture layer. 48 scoped_refptr<FakePictureLayer> picture = variable 50 layer_tree_host()->root_layer()->AddChild(picture); variable 83 // and active layer. Then we recreate a picture layer in the 4th activate
|
/external/chromium_org/third_party/skia/src/image/ |
SkImagePriv.cpp | 62 void SkImagePrivDrawPicture(SkCanvas* canvas, SkPicture* picture, 69 x + SkIntToScalar(picture->width()), 70 y + SkIntToScalar(picture->height())); 78 canvas->drawPicture(*picture); 82 void SkImagePrivDrawPicture(SkCanvas* canvas, SkPicture* picture, 93 SkIntToScalar(picture->width()), 94 SkIntToScalar(picture->height())); 108 canvas->drawPicture(*picture);
|
/external/skia/src/image/ |
SkImagePriv.cpp | 62 void SkImagePrivDrawPicture(SkCanvas* canvas, SkPicture* picture, 69 x + SkIntToScalar(picture->width()), 70 y + SkIntToScalar(picture->height())); 78 canvas->drawPicture(*picture); 82 void SkImagePrivDrawPicture(SkCanvas* canvas, SkPicture* picture, 93 SkIntToScalar(picture->width()), 94 SkIntToScalar(picture->height())); 108 canvas->drawPicture(*picture);
|
/external/llvm/test/YAMLParser/ |
spec-02-23.data | 6 picture: !!binary |
|
/frameworks/base/media/java/android/mtp/ |
package.html | 4 PTP (Picture Transfer Protocol) subset of the MTP (Media Transfer Protocol) specification. Your
|