/packages/apps/Gallery/src/com/android/camera/gallery/ |
IImageList.java | 17 package com.android.camera.gallery; 44 * The interface of all image collections used in gallery.
|
IImage.java | 17 package com.android.camera.gallery; 25 * The interface of all images used in gallery.
|
/external/chromium_org/chrome/browser/media_galleries/ |
media_scan_manager.cc | 160 const MediaGalleryPrefInfo& gallery = it->second; local 161 if (!gallery.IsBlackListedType()) { 163 SumFilesUnderPath(gallery.AbsolutePath(), child_folders); 164 if (gallery.audio_count != file_counts.audio_count || 165 gallery.image_count != file_counts.image_count || 166 gallery.video_count != file_counts.video_count) { 176 const MediaGalleryPrefInfo& gallery = local 178 preferences->AddGallery(gallery.device_id, gallery.path, gallery.type 199 MediaGalleryPrefInfo gallery; local [all...] |
media_galleries_preferences.cc | 53 // Pref key for the list of media gallery permissions. 55 // Pref key for Media Gallery ID. 57 // Pref key for Media Gallery Permission Value. 291 const MediaGalleryPrefInfo& gallery) { 294 base::Uint64ToString(gallery.pref_id)); 295 dict->SetString(kMediaGalleriesDeviceIdKey, gallery.device_id); 296 dict->SetString(kMediaGalleriesPathKey, gallery.path.value()); 297 dict->SetString(kMediaGalleriesTypeKey, TypeToStringValue(gallery.type)); 299 if (gallery.default_gallery_type != MediaGalleryPrefInfo::kNotDefault) { 302 gallery.default_gallery_type)) 789 const MediaGalleryPrefInfo& gallery = known_galleries_.find(*it)->second; local 1239 MediaGalleriesPrefInfoMap::const_iterator gallery = local [all...] |
media_galleries_preferences_unittest.cc | 392 // Add a new auto detected gallery. 418 // Add a new user added gallery. 445 // Add a new scan result gallery. 481 // Check that we always get the gallery info. 505 // Remove an auto added gallery (i.e. make it blacklisted). 516 // Remove a user added gallery and it should go away. 610 // Add a new auto detected gallery. 648 // Add an auto detected gallery in the prefs version 0 format. 675 // Whenever an "AutoDetected" gallery is removed, it is moved to a black listed 676 // state. When the gallery is added again, the black listed state is update [all...] |
media_galleries_permission_controller.h | 149 // NOTE: possible states for a gallery: 161 // possible changes includes a gallery getting blacklisted, or a new 162 // auto detected gallery becoming available. 204 // This is the authoritative source for gallery information.
|
/external/chromium_org/chrome/browser/ui/views/extensions/ |
media_galleries_dialog_views_unittest.cc | 24 MediaGalleryPrefInfo gallery; local 25 gallery.pref_id = id; 26 gallery.device_id = storage_monitor::StorageInfo::MakeDeviceId( 29 gallery.display_name = base::ASCIIToUTF16("Display Name"); 30 return gallery; 109 // a gallery that the dialog hasn't seen before.
|
media_galleries_dialog_views.cc | 185 const MediaGalleriesDialogController::Entry& gallery, 188 bool show_folder_viewer = controller_->ShouldShowFolderViewer(gallery); 190 CheckboxMap::iterator iter = checkbox_map_.find(gallery.pref_info.pref_id); 193 checkbox->SetChecked(gallery.selected); 194 checkbox->SetText(gallery.pref_info.GetGalleryDisplayName()); 195 checkbox->SetTooltipText(gallery.pref_info.GetGalleryTooltip()); 196 base::string16 details = gallery.pref_info.GetGalleryAdditionalDetails(); 204 new MediaGalleryCheckboxView(gallery.pref_info, show_folder_viewer, 206 gallery_view->checkbox()->SetChecked(gallery.selected); 208 checkbox_map_[gallery.pref_info.pref_id] = gallery_view [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
WallpaperChooserDialogFragment.java | 41 import android.widget.Gallery; 143 final Gallery gallery = (Gallery) view.findViewById(R.id.gallery); local 144 gallery.setCallbackDuringFling(false); 145 gallery.setOnItemSelectedListener(this); 146 gallery.setAdapter(new ImageAdapter(getActivity())); 152 selectWallpaper(gallery.getSelectedItemPosition()); 179 // Selection handler for the embedded Gallery vie [all...] |
/frameworks/base/core/java/android/widget/ |
Gallery.java | 45 * The default values for the Gallery assume you will be using 47 * each View given to the Gallery from the Adapter. If you are not doing this, 48 * you may need to adjust some Gallery properties, such as the spacing. 50 * Views given to the Gallery should use {@link Gallery.LayoutParams} as their 63 public class Gallery extends AbsSpinner implements GestureDetector.OnGestureListener { 65 private static final String TAG = "Gallery"; 186 * Offset between the center of the selected child view and the center of the Gallery. 191 public Gallery(Context context) { 195 public Gallery(Context context, AttributeSet attrs) [all...] |
/cts/tests/tests/text/src/android/text/method/cts/ |
CharacterPickerDialogTest.java | 30 import android.widget.Gallery; 68 final Gallery parent = new Gallery(mActivity);
|
/external/chromium_org/ui/file_manager/gallery/js/ |
gallery_scripts.js | 61 //<include src="gallery.js"> 70 window.Gallery = Gallery;
|
/external/neven/FaceRecEm/common/src/b_FDSDK/ |
Types.h | 77 /** gallery type */ 80 /** album gallery */ 83 /** reference gallery */
|
/frameworks/base/docs/html/training/system-ui/ |
dim.jd | 70 <p>Figure 1 shows a gallery image in which the navigation bar is dimmed (note that the Gallery app 79 <p>Figure 2 shows the same gallery image, but with the system bars displayed:</p>
|
/cts/tests/tests/widget/src/android/widget/cts/ |
AbsSpinnerTest.java | 37 import android.widget.Gallery; 63 new Gallery(mContext); 64 new Gallery(mContext, null); 65 new Gallery(mContext, null, 0); 69 new Gallery(mContext, attrs); 70 new Gallery(mContext, attrs, 0); 182 AbsSpinner absSpinner = new Gallery(mContext); 217 AbsSpinner absSpinner = new Gallery(mContext);
|
Gallery_LayoutParamsTest.java | 27 import android.widget.Gallery.LayoutParams;
|
/external/chromium_org/native_client_sdk/doc_generated/ |
quick-start.html | 10 <li>Play with some of the applications in the <a class="reference external" href="community/application-gallery">Application Gallery</a> to see what others have done so far.</li>
|
/external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/ |
AbsSpinnerTest.java | 11 import android.widget.Gallery; 37 adapterView = new Gallery(context);
|
/packages/apps/Gallery/tests/src/com/android/camera/ |
BitmapManagerUnitTests.java | 19 import com.android.camera.gallery.IImage; 20 import com.android.camera.gallery.IImageList;
|
/packages/screensavers/PhotoTable/res/values/ |
strings.xml | 26 <!-- Name of the album that contains all g+ post photos, copy from Gallery. --> 35 <!-- Name for photos that are stored on this device, copy from Gallery. -->
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
Buttons1.java | 27 * A gallery of the different styles of buttons.
|
/development/samples/HoneycombGallery/res/values/ |
strings.xml | 18 <string name="app_name">Honeycomb Gallery</string>
|
/device/google/accessory/demokit/app/src/com/google/android/DemoKit/ |
UsbAccessoryActivity.java | 26 * USB service and springboards to the main Gallery activity
|
/external/chromium_org/chrome/common/extensions/manifest_tests/ |
extension_manifests_homepage_unittest.cc | 39 // The Google Gallery URL ends with the id, which depends on the path, which
|
/external/chromium_org/content/public/browser/ |
download_danger_type.h | 17 // places other than gallery).
|