HomeSort by relevance Sort by last modified time
    Searched refs:picture (Results 251 - 275 of 355) sorted by null

<<1112131415

  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
WebViewTest.java 3 import android.graphics.Picture;
87 public void onNewPicture(WebView view, Picture picture) {
  /external/skia/src/utils/debugger/
SkDrawCommand.cpp 47 case DRAW_PICTURE: return "Draw Picture";
505 SkDrawPictureCommand::SkDrawPictureCommand(const SkPicture* picture)
507 , fPicture(SkRef(picture)) {
509 temp->appendf("SkPicture: W: %d H: %d", picture->width(), picture->height());
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/policy/
UserInfoController.java 197 public void onUserInfoChanged(String name, Drawable picture);
  /hardware/intel/img/psb_video/src/
vsp_fw.h 147 struct VssProcPictureParameterBuffer picture; member in union:VssProcBuffer
534 * Picture data structure. Currently the same as frc
539 uint32_t base; /* pointer to luma picture in DDR */
540 uint32_t base_uv; /* pointer to chroma picture in DDR */
552 vss_vp8enc_seq_param_recon_buffer_mode_per_pic, /* send 1 recon frame buffer per picture */
  /sdk/apps/NotificationStudio/src/com/android/notificationstudio/model/
EditableItem.java 43 PICTURE(R.string.picture, TYPE_BITMAP, CATEGORY_STYLE),
80 loadBitmaps(context, PICTURE, PICTURES);
126 PICTURE.setVisible(STYLE_BIG_PICTURE.equals(mValue));
158 PICTURE.setValue(PICTURE.getAvailableValues()[0]);
  /external/chromium_org/third_party/skia/src/core/
SkPictureRecord.cpp 195 clip starts out the size of the picture, which is often much larger
    [all...]
SkPicturePlayback.h 263 void dumpPicture(const SkPicture& picture) const;
343 // fPaint will be NULL if the picture's paint wasn't copyable
  /external/skia/src/core/
SkPictureRecord.cpp 195 clip starts out the size of the picture, which is often much larger
    [all...]
SkPicturePlayback.h 263 void dumpPicture(const SkPicture& picture) const;
343 // fPaint will be NULL if the picture's paint wasn't copyable
  /developers/build/prebuilts/gradle/Camera2Basic/Application/src/main/java/com/example/android/camera2basic/
Camera2BasicFragment.java 106 * Camera state: Picture was taken.
213 * This is the output file for our picture.
359 view.findViewById(R.id.picture).setOnClickListener(this);
658 * Capture a still picture. This method should be called when we get a response in
667 // This is the CaptureRequest.Builder that we use to take a picture.
724 case R.id.picture: {
  /developers/samples/android/media/Camera2Basic/Application/src/main/java/com/example/android/camera2basic/
Camera2BasicFragment.java 106 * Camera state: Picture was taken.
213 * This is the output file for our picture.
359 view.findViewById(R.id.picture).setOnClickListener(this);
658 * Capture a still picture. This method should be called when we get a response in
667 // This is the CaptureRequest.Builder that we use to take a picture.
724 case R.id.picture: {
  /development/samples/browseable/Camera2Basic/src/com.example.android.camera2basic/
Camera2BasicFragment.java 106 * Camera state: Picture was taken.
213 * This is the output file for our picture.
359 view.findViewById(R.id.picture).setOnClickListener(this);
658 * Capture a still picture. This method should be called when we get a response in
667 // This is the CaptureRequest.Builder that we use to take a picture.
724 case R.id.picture: {
  /external/chromium_org/content/test/data/media/
webrtc_test_utilities.js 68 // Check that there is an old and a new picture with the same size to
  /external/chromium_org/third_party/libwebp/
libwebp_enc.target.darwin-arm64.mk 35 third_party/libwebp/enc/picture.c \
libwebp_enc.target.linux-arm64.mk 35 third_party/libwebp/enc/picture.c \
  /external/chromium_org/third_party/skia/src/images/
SkImageDecoder_libwebp.cpp 587 const WebPPicture* const picture) {
588 SkWStream* const stream = (SkWStream*)picture->custom_ptr;
  /external/skia/src/images/
SkImageDecoder_libwebp.cpp 587 const WebPPicture* const picture) {
588 SkWStream* const stream = (SkWStream*)picture->custom_ptr;
  /external/flac/include/FLAC/
metadata.h 72 * PICTURE blocks.
133 * STREAMINFO, VORBIS_COMMENT, CUESHEET, and PICTURE blocks, requiring
198 /** Read a PICTURE metadata block of the given FLAC file. This
200 * Since there can be more than one PICTURE block in a file, this
202 * the search. The PICTURE block with the largest area matching all
203 * the constraints will be returned, or \a *picture will be set to
207 * \param picture The address where the returned pointer will be
208 * stored. The \a picture object must be deleted by
210 * \param type The desired picture type. Use \c -1 to mean
228 * \code picture != NULL \endcod
    [all...]
  /external/chromium_org/content/renderer/gpu/
gpu_benchmarking_extension.cc 69 // reflection on those subclasses required for picture serialization.
82 skia::RefPtr<SkPicture> picture = layer->GetPicture(); local
83 if (!picture)
86 // Serialize picture to file.
95 picture->serialize(&file, &EncodeBitmapToData);
    [all...]
  /external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/vl/
vl_mpeg12_bitstream.c 958 struct pipe_mpeg12_picture_desc *picture,
965 bs->desc = picture;
966 bs->intra_dct_tbl = picture->intra_vlc_format ? tbl_B15 : tbl_B14_AC;
  /external/mesa3d/src/gallium/auxiliary/vl/
vl_mpeg12_bitstream.c 958 struct pipe_mpeg12_picture_desc *picture,
965 bs->desc = picture;
966 bs->intra_dct_tbl = picture->intra_vlc_format ? tbl_B15 : tbl_B14_AC;
  /external/chromium_org/third_party/skia/src/pipe/
SkGPipeWrite.cpp 291 virtual void onDrawPicture(const SkPicture* picture) SK_OVERRIDE;
933 void SkGPipeCanvas::onDrawPicture(const SkPicture* picture) {
934 // we want to playback the picture into individual draw calls
935 this->INHERITED::onDrawPicture(picture);
    [all...]
  /external/skia/src/pipe/
SkGPipeWrite.cpp 291 virtual void onDrawPicture(const SkPicture* picture) SK_OVERRIDE;
933 void SkGPipeCanvas::onDrawPicture(const SkPicture* picture) {
934 // we want to playback the picture into individual draw calls
935 this->INHERITED::onDrawPicture(picture);
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
TracingTimelineModel.js 94 PictureSnapshot: "cc::Picture"
115 categoriesArray.push("disabled-by-default-devtools.timeline.layers", "disabled-by-default-devtools.timeline.picture");
416 paintEvent.picture = event.args["snapshot"]["skp64"];
  /external/chromium_org/third_party/WebKit/Source/platform/graphics/
GraphicsContextTest.cpp     [all...]

Completed in 529 milliseconds

<<1112131415