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/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);
  /cts/tests/tests/widget/src/android/widget/cts/
GalleryTest.java 48 import android.widget.Gallery;
55 * Test {@link Gallery}.
58 private Gallery mGallery;
74 mGallery = (Gallery) mActivity.findViewById(R.id.gallery_test);
79 new Gallery(mContext);
81 new Gallery(mContext, null);
83 new Gallery(mContext, null, 0);
87 new Gallery(mContext, attrs);
88 new Gallery(mContext, attrs, 0);
91 new Gallery(null)
138 final MyGallery gallery = (MyGallery) mActivity.findViewById(R.id.gallery_test); local
164 MyGallery gallery = new MyGallery(mContext); local
231 MyGallery gallery = new MyGallery(mContext); local
241 MyGallery gallery = new MyGallery(mContext); local
249 MyGallery gallery = new MyGallery(mContext); local
259 MyGallery gallery = new MyGallery(mContext); local
269 final MyGallery gallery = (MyGallery) getActivity().findViewById(R.id.gallery_test); local
283 MyGallery gallery = new MyGallery(mContext); local
292 final MyGallery gallery = (MyGallery) getActivity().findViewById(R.id.gallery_test); local
311 MyGallery gallery = new MyGallery(mContext); local
    [all...]
GalleryCtsActivity.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));
  /external/chromium_org/chrome/common/extensions/api/
media_galleries_private.idl 5 // This is a private API since M23. Gallery watching needs to be implemented
9 // A dictionary that describes the modified gallery.
11 // Gallery identifier.
16 // Fired when a media gallery is changed.
20 // A dictionary that describes the add gallery watch request results.
media_galleries.idl 10 // The contents of the gallery have changed.
13 // the gallery permission has been removed, or any other reason.
52 // Identifies the modified gallery.
61 // media gallery configuration dialog will be displayed.
84 // A unique and persistent id for the media gallery.
87 // If the media gallery is on a removable device, a unique id for the
91 // True if the media gallery is on a removable device.
94 // True if the device the media gallery is on was detected as a media
176 // A dictionary that describes the add gallery watch request results.
192 // as a gallery. If the user cancels the picker, selectedFileSystemNam
    [all...]
  /external/chromium_org/ui/file_manager/gallery/css/
gallery.css 36 .gallery,
37 .gallery .content {
47 .gallery .content {
53 .gallery .image-container {
60 .gallery[tools] .image-container[cursor='default'] {
64 .gallery[tools] .image-container[cursor='move'] {
70 .gallery[tools] .image-container[cursor='crop'] {
76 .gallery[tools] .image-container[cursor='n-resize'],
77 .gallery[tools] .image-container[cursor='s-resize'] {
83 .gallery[tools] .image-container[cursor='e-resize']
    [all...]
  /external/chromium_org/chrome/browser/media_galleries/
media_galleries_permission_controller_unittest.cc 35 std::string GalleryName(const MediaGalleryPrefInfo& gallery) {
36 base::string16 name = gallery.GetGalleryDisplayName();
255 MediaGalleryPrefInfo gallery; local
256 gallery.pref_id = 1;
257 gallery.device_id = StorageInfo::MakeDeviceId(
258 StorageInfo::FIXED_MASS_STORAGE, "/path/to/gallery");
259 gallery.type = MediaGalleryPrefInfo::kAutoDetected;
260 std::string galleryName("/path/to/gallery");
262 galleryName = "gallery";
264 EXPECT_EQ(galleryName, GalleryName(gallery));
    [all...]
gallery_watch_manager_observer.h 15 // Called when the gallery contents change.
19 // Called when the gallery watch is dropped without the caller requesting it,
media_galleries_preferences.h 60 kNotDefault, // Normal gallery
69 // The absolute path of the gallery.
72 // True if the gallery should not be displayed to the user
76 // The ID that identifies this gallery in this Profile.
79 // The user-visible name of this gallery.
83 // gallery lives on.
86 // The root of the gallery, relative to the root of the device.
89 // The type of gallery.
92 // The volume label of the volume/device on which the gallery
96 // Vendor name for the volume/device on which the gallery is located
    [all...]
media_galleries_permission_controller.cc 37 // Comparator for sorting gallery entries. Sort Removable entries above
301 MediaGalleryPrefInfo gallery; local
303 bool gallery_exists = preferences_->LookUpGalleryByPath(path, &gallery);
304 if (gallery_exists && !gallery.IsBlackListedType()) {
306 // |known_galleries_| as well. User selecting a known gallery effectively
307 // just sets the gallery to permitted.
308 GalleryDialogId gallery_id = GetDialogId(gallery.pref_id);
320 if (iter->second.pref_info.path == gallery.path &&
321 iter->second.pref_info.device_id == gallery.device_id) {
328 // Lastly, if not found, add a new gallery to |new_galleries_|
397 const MediaGalleryPrefInfo& gallery = iter->second; local
454 const MediaGalleryPrefInfo& gallery = iter->second.pref_info; local
475 Entry& gallery = it->second; 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...]
gallery_watch_state_tracker.h 5 // GalleryWatchStateTracker tracks the gallery watchers, updates the
46 // Updates the storage for the given extension on the receipt of gallery
51 // Updates the storage for the given extension on the receipt of gallery
56 // Updates the state of the gallery watchers on the receipt of access
70 // Returns a set of watched gallery identifiers for the extension specified
75 // Removes all the gallery watchers associated with the extension specified
82 // Key: Gallery identifier.
84 // the extension has access permission to the watched gallery and a watcher
89 // Value: Map of watched gallery information.
100 // Syncs media gallery watch data for the given extension to/from the stat
    [all...]
media_galleries_watch_apitest.cc 5 // MediaGalleriesPrivate gallery watch API browser tests.
199 // Add gallery watch listener.
203 // Modify gallery contents.
210 // Remove gallery watch listener.
214 // Remove gallery watch request.
227 // Add a gallery watch listener.
230 // Modify gallery contents.
236 // Remove gallery watch listener.
240 // No listener, modify gallery contents.
243 // Remove gallery watch
    [all...]
  /external/chromium_org/chrome/browser/extensions/api/media_galleries/
media_galleries_watch_apitest.cc 5 // MediaGalleries gallery watch API browser tests.
196 // Add gallery watch listener.
202 // Modify gallery contents.
210 // Remove gallery watch listener.
214 // Remove gallery watch request.
224 // Add gallery watch listener.
230 // Modify gallery contents; expect correct details.
242 // Add a gallery watch listener.
247 // Modify gallery contents.
253 // Remove gallery watch listener
    [all...]
  /external/chromium_org/ui/file_manager/
file_manager_resources.grd 34 <!-- Scripts referred by the gallery app. -->
58 <include name="IDR_FILE_MANAGER_GALLERY_ICON_16" file="gallery/images/icon16.png" type="BINDATA" />
59 <include name="IDR_FILE_MANAGER_GALLERY_ICON_32" file="gallery/images/icon32.png" type="BINDATA" />
60 <include name="IDR_FILE_MANAGER_GALLERY_ICON_48" file="gallery/images/icon48.png" type="BINDATA" />
61 <include name="IDR_FILE_MANAGER_GALLERY_ICON_64" file="gallery/images/icon64.png" type="BINDATA" />
62 <include name="IDR_FILE_MANAGER_GALLERY_ICON_96" file="gallery/images/icon96.png" type="BINDATA" />
63 <include name="IDR_FILE_MANAGER_GALLERY_ICON_128" file="gallery/images/icon128.png" type="BINDATA" />
64 <include name="IDR_FILE_MANAGER_GALLERY_ICON_256" file="gallery/images/icon256.png" type="BINDATA" />
92 <!-- Gallery.app pages and scripts. -->
93 <include name="IDR_GALLERY_MANIFEST" file="gallery/manifest.json" type="BINDATA" /
    [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
  /external/chromium_org/ui/file_manager/gallery/js/
gallery_item.js 17 Gallery.Item = function(
79 Gallery.Item.prototype.getEntry = function() { return this.entry_; };
84 Gallery.Item.prototype.getLocationInfo = function() {
91 Gallery.Item.prototype.getMetadata = function() { return this.metadata_; };
100 Gallery.Item.prototype.getFetchedMedia = function() {
118 Gallery.Item.prototype.setMetadata = function(metadata) {
125 Gallery.Item.prototype.getFileName = function() {
132 Gallery.Item.prototype.isOriginal = function() { return this.original_; };
138 Gallery.Item.prototype.getLastAccessedDate = function() {
145 Gallery.Item.prototype.touch = function()
    [all...]
gallery.js 11 function unload(opt_exiting) { Gallery.instance.onUnload(opt_exiting); }
21 * Data model for gallery.
69 * @param {Gallery.Item} item Original gallery item.
117 Gallery.METADATA_TYPE,
122 var anotherItem = new Gallery.Item(
142 * @param {Gallery.Item} currentSelectedItem Current selected item.
182 * Gallery for viewing and editing image files.
188 function Gallery(volumeManager) {
206 this.container_ = document.querySelector('.gallery');
1019 var gallery = null; variable
    [all...]
  /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/third_party/d3/src/
README.md 9 For examples, [see the gallery](https://github.com/mbostock/d3/wiki/Gallery) and [mbostock?s bl.ocks](http://bl.ocks.org/mbostock).
  /packages/apps/Gallery/tests/
Android.mk 15 LOCAL_INSTRUMENTATION_FOR := Gallery

Completed in 777 milliseconds

1 2 3 4 5 6 7 8 91011>>