HomeSort by relevance Sort by last modified time
    Searched full:gallery (Results 1 - 25 of 447) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/native_client_sdk/src/doc/community/
application-gallery.rst 1 .. _application-gallery:
4 Application Gallery
  /external/chromium_org/chrome/browser/media_galleries/
media_galleries_dialog_controller_unittest.cc 15 std::string GalleryName(const MediaGalleryPrefInfo& gallery) {
16 base::string16 name = gallery.GetGalleryDisplayName();
22 MediaGalleryPrefInfo gallery; local
23 gallery.pref_id = 1;
24 gallery.device_id = StorageInfo::MakeDeviceId(
25 StorageInfo::FIXED_MASS_STORAGE, "/path/to/gallery");
26 gallery.type = MediaGalleryPrefInfo::kAutoDetected;
27 std::string galleryName("/path/to/gallery");
29 galleryName = "gallery";
31 EXPECT_EQ(galleryName, GalleryName(gallery));
    [all...]
media_galleries_preferences.h 56 // The absolute path of the gallery.
59 // The ID that identifies this gallery in this Profile.
62 // The user-visible name of this gallery.
66 // gallery lives on.
69 // The root of the gallery, relative to the root of the device.
72 // The type of gallery.
75 // The volume label of the volume/device on which the gallery
79 // Vendor name for the volume/device on which the gallery is located.
83 // Model name for the volume/device on which the gallery is located.
87 // The capacity in bytes of the volume/device on which the gallery i
    [all...]
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
GalleryTest.java 5 import android.widget.Gallery;
18 private Gallery gallery; field in class:GalleryTest
24 gallery = new Gallery(null);
26 gallery.setOnKeyListener(listener);
32 assertTrue(gallery.onKeyDown(KeyEvent.KEYCODE_DPAD_RIGHT, event));
34 assertThat((Gallery) listener.view, sameInstance(gallery));
40 assertTrue(gallery.onKeyDown(KeyEvent.KEYCODE_DPAD_RIGHT, event))
    [all...]
LayoutParamsTest.java 3 import android.widget.Gallery;
15 Gallery.LayoutParams layoutParams = new Gallery.LayoutParams(123, 456);
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowGallery.java 4 import android.widget.Gallery;
9 @Implements(Gallery.class)
12 @RealObject Gallery gallery; field in class:ShadowGallery
20 onKeyListener.onKey(gallery, keyCode, event);
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/css/
gallery.css 12 .gallery,
13 .gallery .content {
23 .gallery .content {
31 .gallery > .back-button {
42 .gallery > .back-button div {
44 url('../images/gallery/back_to_files.png') 1x,
45 url('../images/gallery/2x/back_to_files.png') 2x);
53 .gallery[tools] > .back-button div {
57 .gallery[tools] > .back-button div:hover {
63 .gallery .image-container
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
GalleryTest.java 47 import android.widget.Gallery;
54 * Test {@link Gallery}.
57 private Gallery mGallery;
73 mGallery = (Gallery) mActivity.findViewById(R.id.gallery_test);
77 new Gallery(mContext);
79 new Gallery(mContext, null);
81 new Gallery(mContext, null, 0);
85 new Gallery(mContext, attrs);
86 new Gallery(mContext, attrs, 0);
89 new Gallery(null)
136 final MyGallery gallery = (MyGallery) mActivity.findViewById(R.id.gallery_test); local
161 MyGallery gallery = new MyGallery(mContext); local
226 MyGallery gallery = new MyGallery(mContext); local
235 MyGallery gallery = new MyGallery(mContext); local
242 MyGallery gallery = new MyGallery(mContext); local
251 MyGallery gallery = new MyGallery(mContext); local
261 final MyGallery gallery = (MyGallery) getActivity().findViewById(R.id.gallery_test); local
274 MyGallery gallery = new MyGallery(mContext); local
283 final MyGallery gallery = (MyGallery) getActivity().findViewById(R.id.gallery_test); local
301 MyGallery gallery = new MyGallery(mContext); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/testdata/
completion10.xml 6 <Gallery xmlns:android="http://schemas.android.com/apk/res/android"
7 android:id="@+id/gallery"
  /external/chromium_org/chrome/browser/extensions/api/media_galleries_private/
gallery_watch_manager.h 5 // Manages all the gallery file watchers for the associated profile. This class
37 // Sets up a gallery watch for the extension specified by the |extension_id|.
39 // |gallery_id| specifies the gallery identifier.
40 // |watch_path| specifies the absolute gallery path.
49 // Cancels the gallery watch for the extension specified by the
51 // |watch_path| specifies the absolute gallery path.
68 // Initiates a gallery watch operation for the extension specified by
69 // the |extension_id|. |gallery_id| specifies the gallery identifier and
70 // |watch_path| specifies the absolute path of the gallery. Returns true,
78 // Cancels the gallery watch operation for the extension specified by th
    [all...]
media_galleries_watch_apitest.cc 5 // MediaGalleriesPrivate gallery watch API browser tests.
148 // Set up gallery watch.
155 // Add gallery watch listener.
159 // Modify gallery contents.
175 // Remove gallery watch listener.
179 // Remove gallery watch request.
196 // Set up gallery watch.
203 // Add a gallery watch listener.
206 // Modify gallery contents.
212 // Remove gallery watch listener
    [all...]
gallery_watch_state_tracker.h 5 // GalleryWatchStateTracker tracks the gallery watchers, updates the
44 // Updates the storage for the given extension on the receipt of gallery
49 // Updates the storage for the given extension on the receipt of gallery
54 // Updates the state of the gallery watchers on the receipt of access
68 // Returns a set of watched gallery identifiers for the extension specified
73 // Removes all the gallery watchers associated with the extension specified
80 // Key: Gallery identifier.
82 // the extension has access permission to the watched gallery and a watcher
87 // Value: Map of watched gallery information.
95 // Syncs media gallery watch data for the given extension to/from the stat
    [all...]
  /external/chromium_org/chrome/browser/resources/file_manager/foreground/js/photo/
gallery_item.js 13 Gallery.Item = function(entry) {
21 Gallery.Item.prototype.getEntry = function() { return this.entry_ };
26 Gallery.Item.prototype.getFileName = function() {
33 Gallery.Item.prototype.isOriginal = function() { return this.original_ };
39 Gallery.Item.COPY_SIGNATURE = ' - Edited';
45 Gallery.Item.REGEXP_COPY_0 =
46 new RegExp('^(.+)' + Gallery.Item.COPY_SIGNATURE + '$');
52 Gallery.Item.REGEXP_COPY_N =
53 new RegExp('^(.+)' + Gallery.Item.COPY_SIGNATURE + ' \\((\\d+)\\)$');
62 Gallery.Item.prototype.createCopyName_ = function(dirEntry, callback)
    [all...]
gallery.js 11 function beforeunload() { return Gallery.instance.onBeforeUnload() }
17 function unload(opt_exiting) { Gallery.instance.onUnload(opt_exiting) }
20 * Gallery for viewing and editing image files.
40 function Gallery(context, volumeManager) {
41 this.container_ = document.querySelector('.gallery');
57 * Gallery extends cr.EventTarget.
59 Gallery.prototype.__proto__ = cr.EventTarget.prototype;
62 * Creates and initializes a Gallery object based on a context.
64 * @param {Object} context Gallery context.
69 Gallery.open = function(context, volumeManager, entries, selectedEntries)
    [all...]
  /packages/apps/Gallery/
Android.mk 8 LOCAL_PACKAGE_NAME := Gallery
  /packages/apps/Gallery2/src/com/android/gallery3d/app/
Gallery.java 24 /** Trampoline activity that launches the Gallery activity defined in IntentHelper. */
25 public class Gallery extends Activity {
29 Intent intent = IntentHelper.getGalleryIntent(Gallery.this);
31 // it's already in a new task. Start Gallery activity and
  /cts/tests/src/android/widget/cts/
GalleryStubActivity.java 27 import android.widget.Gallery;
31 * A minimal application for {@link Gallery} test.
39 Gallery gallery = (Gallery) findViewById(R.id.gallery_test); local
41 gallery.setAdapter(adapter);
67 i.setLayoutParams(new Gallery.LayoutParams(136, 88));
  /development/samples/ApiDemos/src/com/example/android/apis/view/
Gallery1.java 32 import android.widget.Gallery;
45 // Reference the Gallery view
46 Gallery g = (Gallery) findViewById(R.id.gallery);
57 // We also want to show context menu for longpressed items in the gallery
124 imageView.setLayoutParams(new Gallery.LayoutParams(
128 // The preferred Gallery item background
Gallery2.java 23 import android.widget.Gallery;
53 Gallery g = (Gallery) findViewById(R.id.gallery);
  /development/samples/WiFiDirectDemo/res/values/
strings.xml 8 <string name="get_file_button">Launch Gallery</string>
12 <string name="client_text">This device will act as a client. Click on Gallery button to pick a local(stored) file</string>
  /external/chromium_org/chrome/common/extensions/api/
media_galleries_private.idl 24 // A dictionary that describes the modified gallery.
26 // Gallery identifier.
37 // Fired when a media gallery is changed.
41 // A dictionary that describes the add gallery watch request results.
  /packages/apps/Gallery/tests/
Android.mk 15 LOCAL_INSTRUMENTATION_FOR := Gallery
  /frameworks/base/tests/BiDiTests/src/com/android/bidi/
BiDiTestGalleryLtr.java 23 import android.widget.Gallery;
31 Gallery g = (Gallery) v.findViewById(R.id.galleryview);
BiDiTestGalleryRtl.java 23 import android.widget.Gallery;
31 Gallery g = (Gallery) v.findViewById(R.id.galleryview);
  /frameworks/base/tests/Camera2Tests/SmartCamera/SimpleCamera/res/values/
strings.xml 21 <string name="gallery"> Go To Gallery </string>
25 <string name="galleryOpenButton" > Gallery </string>

Completed in 1266 milliseconds

1 2 3 4 5 6 7 8 91011>>