HomeSort by relevance Sort by last modified time
    Searched refs:preview (Results 1 - 25 of 167) sorted by null

1 2 3 4 5 6 7

  /external/chromium_org/chrome/browser/resources/print_preview/previewarea/
preview_area.css 5 #preview-area.preview-area {
13 .preview-area-plugin-wrapper {
19 #preview-area .preview-area-plugin {
30 #preview-area .preview-area-plugin.invisible {
38 #preview-area .preview-area-overlay-layer {
53 #preview-area .preview-area-overlay-layer.invisible
    [all...]
margin_control.css 5 #preview-area .margin-control {
10 #preview-area .margin-control.invisible {
15 #preview-area .margin-control.margin-control-top,
16 #preview-area .margin-control.margin-control-bottom {
22 #preview-area .margin-control.margin-control-left,
23 #preview-area .margin-control.margin-control-right {
29 #preview-area .margin-control.margin-control-disabled {
33 #preview-area .margin-control-line {
39 #preview-area .margin-control-disabled .margin-control-line {
43 #preview-area .margin-control-top .margin-control-line
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageVisibilityState.cpp 41 DEFINE_STATIC_LOCAL(const String, preview, ("preview"));
51 return preview;
  /packages/apps/Settings/src/com/android/settings/accessibility/
EdgeTypePreference.java 56 final SubtitleView preview = (SubtitleView) view.findViewById(R.id.preview); local
58 preview.setForegroundColor(DEFAULT_FOREGROUND_COLOR);
59 preview.setBackgroundColor(DEFAULT_BACKGROUND_COLOR);
60 preview.setTextSize(DEFAULT_FONT_SIZE);
63 preview.setEdgeType(value);
64 preview.setEdgeColor(DEFAULT_EDGE_COLOR);
ToggleCaptioningPreferenceFragment.java 83 final SubtitleView preview = mPreviewText; local
84 if (preview != null) {
88 applyCaptionProperties(mCaptioningManager, preview, styleId);
94 preview.setText(localizedText);
96 preview.setText(R.string.captioning_preview_text);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
RenderPreviewManager.java 131 * preview managers to refresh themselves to the latest revision when they
188 for (RenderPreview preview : mPreviews) {
189 preview.disposeThumbnail();
191 RenderPreview preview = mCanvas.getPreview(); local
192 if (preview != null) {
193 preview.disposeThumbnail();
214 * Returns whether there are any manual preview items (provided the current
217 * @return true if there are items in the manual preview list
240 for (RenderPreview preview : old) {
241 preview.dispose()
466 RenderPreview preview = iterator.next(); local
587 RenderPreview preview = mCanvas.getPreview(); local
698 RenderPreview preview = RenderPreview.create(this, configuration); local
771 RenderPreview preview = RenderPreview.create(this, parent); local
956 RenderPreview preview = RenderPreview.create(this, parent); local
1059 RenderPreview preview = RenderPreview.create(this, config); local
1093 RenderPreview preview = RenderPreview.create(this, config); local
1177 RenderPreview preview = mCanvas.getPreview(); local
1492 RenderPreview preview = getPreview(mousePos); local
1612 private RenderPreview preview; field in class:RenderPreviewManager.SwapAnimation
    [all...]
RenderPreviewList.java 135 * configuration preview list
180 RenderPreview preview = RenderPreview.create(manager, configuration); local
182 preview.setDescription(description);
183 previews.add(preview);
189 void remove(@NonNull RenderPreview preview) {
190 ConfigurationDescription description = preview.getDescription();
200 void add(@NonNull RenderPreview preview) {
201 Configuration configuration = preview.getConfiguration();
205 description.displayName = preview.getDisplayName();
207 preview.setDescription(description)
    [all...]
  /external/chromium/chrome/browser/ui/cocoa/tab_contents/
previewable_contents_controller.h 15 // the notion of an "active" view vs. a "preview" tab contents view.
21 // The "preview" can be set using |-showPreview:| and |-hidePreview|. When a
22 // preview is set, the active view is hidden (but stays in the view hierarchy).
23 // When the preview is removed, the active view is reshown.
29 // The preview TabContents. Will be NULL if no preview is currently showing.
35 // Sets the current preview and installs its TabContentsView into the view
36 // hierarchy. Hides the active view. |preview| must not be NULL.
37 - (void)showPreview:(TabContents*)preview;
39 // Closes the current preview and shows the active view
    [all...]
  /packages/apps/Launcher2/src/com/android/launcher2/
WidgetPreviewLoader.java 202 Bitmap preview = null; local
205 preview = readFromDb(name, unusedBitmap);
208 if (preview != null) {
210 mLoadedPreviews.put(name, new WeakReference<Bitmap>(preview));
212 return preview;
216 preview = generatedPreview;
217 if (preview != unusedBitmap) {
222 mLoadedPreviews.put(name, new WeakReference<Bitmap>(preview));
234 return preview;
324 private void writeToDb(Object o, Bitmap preview) {
    [all...]
PagedViewWidget.java 97 FastBitmapDrawable preview = (FastBitmapDrawable) image.getDrawable(); local
99 mInfo != null && preview != null && preview.getBitmap() != null) {
100 mWidgetPreviewLoader.recycleBitmap(mInfo, preview.getBitmap());
148 void applyPreview(FastBitmapDrawable preview, int index) {
151 if (preview != null) {
153 image.setImageDrawable(preview);
157 int centerAmount = (imageSize[0] - preview.getIntrinsicWidth()) / 2;
  /packages/apps/Launcher3/src/com/android/launcher3/
WidgetPreviewLoader.java 202 Bitmap preview = null; local
205 preview = readFromDb(name, unusedBitmap);
208 if (preview != null) {
210 mLoadedPreviews.put(name, new WeakReference<Bitmap>(preview));
212 return preview;
216 preview = generatedPreview;
217 if (preview != unusedBitmap) {
222 mLoadedPreviews.put(name, new WeakReference<Bitmap>(preview));
234 return preview;
324 private void writeToDb(Object o, Bitmap preview) {
    [all...]
PagedViewWidget.java 110 FastBitmapDrawable preview = (FastBitmapDrawable) image.getDrawable(); local
112 mInfo != null && preview != null && preview.getBitmap() != null) {
113 mWidgetPreviewLoader.recycleBitmap(mInfo, preview.getBitmap());
164 void applyPreview(FastBitmapDrawable preview, int index) {
167 if (preview != null) {
169 image.setImageDrawable(preview);
173 int centerAmount = (imageSize[0] - preview.getIntrinsicWidth()) / 2;
  /sdk/eclipse/scripts/
build_server.sh 27 ADT_PREVIEW="preview" # "preview" for preview builds, "" for final release builds.
64 # Qualifier is "v" followed by date/time in YYYYMMDDHHSS format, an optional "preview"
87 local preview="${ADT_PREVIEW:+-}${ADT_PREVIEW}"
88 ZIP_NAME="${BUILD_PREFIX}${preview}-${BUILD_NUMBER:-$DATE}.zip"
116 local preview="${ADT_PREVIEW}${ADT_PREVIEW:+-}"
124 $sc "$DEST_DIR" "$QUALIFIER" "${preview}${BUILD_NUMBER:-$QUALIFIER}"
  /external/chromium_org/chrome/browser/resources/chromeos/login/
oobe_screen_user_image.css 53 * #user-image-preview can have the following classes:
62 #user-image-preview {
94 html[dir=rtl] #user-image-preview {
98 #user-image-preview-img {
105 .camera.live #user-image-preview-img {
109 .camera.flip-x #user-image-preview-img {
113 .default-image #user-image-preview-img {
156 #user-image-preview-caption {
162 .camera #user-image-preview-caption {
210 #user-image-preview .perspective-box
    [all...]
  /packages/apps/UnifiedEmail/src/com/android/mail/ui/
AttachmentTile.java 65 * Returns true if the attachment should be rendered as a tile. with a large image preview.
193 // preview fills up at least 1 dimension
204 // preview is small. just center
235 public Bitmap preview; field in class:AttachmentTile.AttachmentPreview
245 dest.writeParcelable(preview, 0);
263 preview = in.readParcelable(null);
266 public AttachmentPreview(Attachment attachment, Bitmap preview) {
268 this.preview = preview;
273 void set(Attachment attachment, Bitmap preview);
    [all...]
AttachmentTileGrid.java 211 for (AttachmentPreview preview : previews) {
212 mAttachmentPreviews.put(preview.attachmentIdentifier, preview);
218 * Save the preview for an attachment
221 public void set(Attachment attachment, Bitmap preview) {
225 attachmentIdentifier, new AttachmentPreview(attachment, preview));
230 * Returns a saved preview that was previously set
239 return attachmentPreview.preview;
  /device/lge/mako/camera/QCamera/HAL/core/src/
QCameraHWI_Preview.cpp 32 /* following code implement the preview mode's image capture & display logic of this class*/
37 // Preview Callback
61 LOGW(" Setting NULL preview window ");
62 /* TODO: Current preview window will be invalidated.
293 if (mDisplayBuf.preview.buf.mp != NULL) {
294 delete[] mDisplayBuf.preview.buf.mp;
295 mDisplayBuf.preview.buf.mp = NULL;
378 if (mDisplayBuf.preview.buf.mp != NULL) {
379 delete[] mDisplayBuf.preview.buf.mp;
380 mDisplayBuf.preview.buf.mp = NULL
    [all...]
  /device/lge/mako/camera/
QCameraHWI_Preview.cpp 32 /* following code implement the preview mode's image capture & display logic of this class*/
37 // Preview Callback
61 ALOGW(" Setting NULL preview window ");
62 /* TODO: Current preview window will be invalidated.
265 ALOGE("%s: unmapping Preview Buffer", __func__);
307 if (mDisplayBuf.preview.buf.mp != NULL) {
308 delete[] mDisplayBuf.preview.buf.mp;
309 mDisplayBuf.preview.buf.mp = NULL;
398 if (mDisplayBuf.preview.buf.mp != NULL) {
399 delete[] mDisplayBuf.preview.buf.mp
    [all...]
QCameraHWI_Preview_7x27A.cpp 35 /* following code implement the preview mode's image capture & display logic of this class*/
40 // Preview Callback
64 ALOGW(" Setting NULL preview window ");
65 /* TODO: Current preview window will be invalidated.
367 /* get preview size, by qury mm_camera*/
398 mDisplayBuf.preview.buf.mp = new mm_camera_mp_buf_t[mDisplayStreamBuf.num];
399 if (!mDisplayBuf.preview.buf.mp) {
402 memset(mDisplayBuf.preview.buf.mp, 0,
429 mDisplayBuf.preview.buf.mp[i].frame = mDisplayStreamBuf.frame[i];
430 mDisplayBuf.preview.buf.mp[i].frame_offset = mHalCamCtrl->mPreviewMemory.addr_offset[i]
    [all...]
  /external/chromium_org/chrome/browser/resources/options/chromeos/
change_picture_options.css 47 * #user-image-preview can have the following classes:
56 #user-image-preview {
62 #user-image-preview .perspective-box {
66 #user-image-preview-img {
75 .camera.live #user-image-preview-img {
79 .animation #user-image-preview-img {
83 .camera.flip-x #user-image-preview-img {
  /external/chromium/chrome/browser/ui/views/frame/
contents_container.h 31 // Makes the preview view the active view and nulls out the old active view.
36 // Sets the preview view. This does not delete the old.
37 void SetPreview(views::View* preview, TabContents* preview_tab_contents);
44 // Returns the bounds of the preview. If the preview isn't active this
45 // retuns the bounds the preview would be shown at.
54 // Removes the fade. This is done implicitly when the preview is made active.
89 // preview overlap the bookmark bar on the new tab page.
  /external/chromium/chrome/browser/
aeropeek_manager.h 37 // This bitmap is used for creating thumbnail and preview images.
49 virtual bool GetTabPreview(int tab_id, SkBitmap* preview) = 0;
58 // a user can preview the contents of a tab (AeroPeek), choose a tab, close
135 virtual bool GetTabPreview(int tab_id, SkBitmap* preview);
183 // When we create a preview bitmap, we use these values for preventing from
190 // preview image can use transparent colors only in the frame area.
195 // content area" when creating a preview image.
  /packages/apps/Camera2/src/com/android/camera/tinyplanet/
TinyPlanetPreview.java 29 * Shows a preview of the TinyPlanet on the screen while editing.
34 * preview size.
38 * Called when the preview size has changed.
40 * @param sizePx the size in pixels of the square preview area
66 public void setBitmap(Bitmap preview, Lock lock) {
67 mPreview = preview;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/keyboard/internal/
PreviewPlacerView.java 49 public void addPreview(final AbstractDrawingPreview preview) {
50 mPreviews.add(preview);
  /packages/apps/Gallery2/src/com/android/photos/
BitmapRegionTileSource.java 86 Bitmap preview = decodePreview(path, previewSize); local
87 if (preview.getWidth() <= GL_SIZE_LIMIT && preview.getHeight() <= GL_SIZE_LIMIT) {
88 mPreview = new BitmapTexture(preview);
91 "Failed to create preview of apropriate size! "
94 preview.getWidth(), preview.getHeight()));

Completed in 742 milliseconds

1 2 3 4 5 6 7