/external/eigen/doc/ |
I15_StorageOrders.dox | 3 /** \page TopicStorageOrders Storage orders 5 There are two different storage orders for matrices and two-dimensional arrays: column-major and row-major. 6 This page explains these storage orders and how to specify which one should be used. 14 \section TopicStorageOrdersIntro Column-major and row-major storage 53 \section TopicStorageOrdersInEigen Storage orders in Eigen 55 The storage order of a matrix or a two-dimensional array can be set by specifying the \c Options template 61 specify the storage order. 63 If the storage order is not specified, then Eigen defaults to storing the entry in column-major. This is also 66 Matrices and arrays using one storage order can be assigned to matrices and arrays using the other storage [all...] |
/external/skia/src/core/ |
SkRasterizer.cpp | 18 SkIRect storage; local 30 storage = *clipBounds; 31 storage.inset(-margin.fX, -margin.fY); 32 clipBounds = &storage;
|
/frameworks/base/core/res/res/xml/ |
storage_list.xml | 20 <!-- See storage config details at http://source.android.com/tech/storage/ --> 24 <storage 25 android:mountPoint="/storage/sdcard"
|
/frameworks/base/docs/html/shareables/ |
README.txt | 7 but we've moved them all to Google Cloud Storage to reduce the size
|
/frameworks/base/media/java/android/mtp/ |
package.html | 6 storage on those devices, and transfer files and metadata from the devices.</p>
|
/frameworks/base/packages/ExternalStorageProvider/res/values/ |
strings.xml | 18 <!-- Title of the external storage application [CHAR LIMIT=32] --> 19 <string name="app_label">External Storage</string> 21 <!-- Title for documents backend that offers internal storage. [CHAR LIMIT=24] --> 22 <string name="root_internal_storage">Internal storage</string>
|
/system/core/rootdir/ |
init.environ.rc.in | 9 export ANDROID_STORAGE /storage
|
/external/chromium_org/chrome/browser/extensions/api/storage/ |
settings_frontend.h | 13 #include "chrome/browser/extensions/api/storage/settings_namespace.h" 14 #include "chrome/browser/extensions/api/storage/settings_observer.h" 15 #include "chrome/browser/extensions/api/storage/settings_storage_factory.h" 16 #include "chrome/browser/extensions/api/storage/settings_storage_quota_enforcer.h" 17 #include "chrome/browser/extensions/api/storage/value_store_cache.h" 47 // Runs |callback| with the storage area of the given |settings_namespace| 71 // the schema in chrome/common/extensions/api/storage.json.
|
/external/chromium_org/chrome/browser/storage_monitor/ |
media_transfer_protocol_device_observer_linux.h | 28 // Helper class to send MTP storage attachment and detachment events to 38 // Finds the storage that contains |path| and populates |storage_info|. 39 // Returns false if unable to find the storage. 59 // Mapping of storage location and mtp storage info object. 62 // Enumerate existing mtp storage devices. 77 // Function handler to get storage information. This is useful to set a mock
|
/external/chromium_org/chrome/common/extensions/docs/server2/ |
path_canonicalizer_test.py | 20 self._AssertIdentity('extensions/storage.html') 24 self._AssertIdentity('apps/storage.html') 28 self._AssertIdentity('static/storage.html') 46 self._AssertTemporaryRedirect('extensions/storage.html', 47 'storage.html') 67 assert_channel_redirect(channel, 'extensions/storage.html') 69 assert_channel_redirect(channel, 'apps/storage.html')
|
/external/chromium_org/third_party/libaddressinput/chromium/cpp/test/ |
validating_storage_test.cc | 18 #include <libaddressinput/storage.h> 31 using i18n::addressinput::Storage; 46 Storage::Callback* BuildCallback() { 70 scoped_ptr<Storage::Callback> callback(BuildCallback()); 81 scoped_ptr<Storage::Callback> callback(BuildCallback()); 90 scoped_ptr<Storage::Callback> callback(BuildCallback()); 102 scoped_ptr<Storage::Callback> callback(BuildCallback());
|
fake_storage.h | 15 // A fake storage object to use in tests. Stores data in memory instead of 21 #include <libaddressinput/storage.h> 53 // scoped_ptr<Storage::Callback> callback_; 57 class FakeStorage : public Storage { 62 // Storage implementation.
|
/frameworks/base/docs/html/training/basics/data-storage/ |
files.jd | 13 <li><a href="#InternalVsExternalStorage">Choose Internal or External Storage</a></li> 14 <li><a href="#GetWritePermission">Obtain Permissions for External Storage</a></li> 15 <li><a href="#WriteInternalStorage">Save a File on Internal Storage</a></li> 16 <li><a href="#WriteExternalStorage">Save a File on External Storage</a></li> 23 <li><a href="{@docRoot}guide/topics/data/data-storage.html#filesInternal">Using the Internal 24 Storage</a></li> 25 <li><a href="{@docRoot}guide/topics/data/data-storage.html#filesExternal">Using the External 26 Storage</a></li> 46 <h2 id="InternalVsExternalStorage">Choose Internal or External Storage</h2> 48 <p>All Android devices have two file storage areas: "internal" and "external" storage. These name [all...] |
/device/generic/mini-emulator-armv7-a-neon/ |
init.mini-emulator.rc | 2 # See storage config details at http://source.android.com/tech/storage/ 4 mkdir /storage/emulated 0555 root root 6 export EXTERNAL_STORAGE /storage/emulated/legacy 8 export EMULATED_STORAGE_TARGET /storage/emulated 11 symlink /storage/emulated/legacy /sdcard 12 symlink /storage/emulated/legacy /mnt/sdcard 13 symlink /storage/emulated/legacy /storage/sdcard0 14 symlink /mnt/shell/emulated/0 /storage/emulated/legac [all...] |
/external/chromium_org/content/public/browser/ |
dom_storage_context.h | 22 // Represents the per-BrowserContext Local Storage data. 33 // Returns a collection of origins using local storage to the given callback. 37 // Returns a collection of origins using session storage to the given 42 // Deletes the local storage data for the given origin. 45 // Deletes the session storage data identified by |usage_info|.
|
/art/runtime/jdwp/ |
jdwp_expand_buf.cc | 38 uint8_t* storage; member in struct:art::JDWP::ExpandBuf 46 * Allocate a JdwpBuf and some initial storage. 50 newBuf->storage = reinterpret_cast<uint8_t*>(malloc(kInitialStorage)); 57 * Free a JdwpBuf and associated storage. 64 free(pBuf->storage); 72 return pBuf->storage; 95 uint8_t* newPtr = reinterpret_cast<uint8_t*>(realloc(pBuf->storage, pBuf->maxLen)); 100 pBuf->storage = newPtr; 110 gapStart = pBuf->storage + pBuf->curLen; 122 *(pBuf->storage + pBuf->curLen) = val [all...] |
/external/chromium_org/net/disk_cache/flash/ |
segment.h | 16 class Storage; 18 // The underlying storage represented by Storage class, is divided into fixed 20 // fixed, the storage size should be a multiple of segment size. The picture 21 // below describes the relation between storage and segments: 28 // | storage | 31 // A segment is constructed by taking its index within the storage, a flag 32 // indicating whether it is a read-only segment and a pointer to the storage on 61 // |index| is the index of this segment on |storage|. If the storage size i [all...] |
segment.cc | 10 #include "net/disk_cache/flash/storage.h" 14 Segment::Segment(int32 index, bool read_only, Storage* storage) 19 storage_(storage), 23 DCHECK(storage); 24 DCHECK(storage->size() % kFlashSegmentSize == 0);
|
/external/chromium_org/third_party/WebKit/Source/web/ |
StorageAreaProxy.cpp | 40 #include "core/storage/Storage.h" 41 #include "core/storage/StorageEvent.h" 163 Storage* storage = frame->domWindow()->optionalLocalStorage(); local 164 if (storage && frame->document()->securityOrigin()->equal(securityOrigin) && !isEventSource(storage, sourceAreaInstance)) 165 frame->domWindow()->enqueueWindowEvent(StorageEvent::create(EventTypeNames::storage, key, oldValue, newValue, pageURL, storage)); 193 Storage* storage = frame->domWindow()->optionalSessionStorage() local [all...] |
/external/chromium_org/v8/src/ |
lazy-instance.h | 125 static T* MutableInstance(StorageType* storage) { 126 return reinterpret_cast<T*>(storage); 130 static void InitStorageUsingTrait(StorageType* storage) { 131 ConstructTrait::Construct(MutableInstance(storage)); 140 static T* MutableInstance(StorageType* storage) { 141 return *storage; 145 static void InitStorageUsingTrait(StorageType* storage) { 146 *storage = CreateTrait::Create(); 169 template <typename Function, typename Storage> 170 static void Init(OnceType* once, Function function, Storage storage) [all...] |
/external/v8/src/ |
lazy-instance.h | 122 static T* MutableInstance(StorageType* storage) { 123 return reinterpret_cast<T*>(storage); 127 static void InitStorageUsingTrait(StorageType* storage) { 128 ConstructTrait::Construct(MutableInstance(storage)); 139 static T* MutableInstance(StorageType* storage) { 140 return *storage; 144 static void InitStorageUsingTrait(StorageType* storage) { 145 *storage = CreateTrait::Create(); 168 template <typename Function, typename Storage> 169 static void Init(OnceType* once, Function function, Storage storage) [all...] |
/frameworks/base/core/java/android/os/ |
Environment.java | 20 import android.os.storage.IMountService; 21 import android.os.storage.StorageManager; 22 import android.os.storage.StorageVolume; 114 /** External storage dirs, as visible to vold */ 116 /** External storage dirs, as visible to apps */ 118 /** Primary emulated storage dir for direct access */ 122 // See storage config details at http://source.android.com/tech/storage/ 136 // Device has emulated storage; external storage paths should hav [all...] |
/external/chromium_org/chrome/browser/browsing_data/ |
browsing_data_local_storage_helper.h | 24 // This class fetches local storage information and provides a 29 // Contains detailed information about local storage. 49 // Deletes the local storage for the |origin|. 71 // not fetch its information from the local storage tracker, but gets them 78 // Return a copy of the local storage helper. Only one consumer can use the 83 // Add a local storage to the set of canned local storages that is returned 96 // Returns the set of origins that use local storage. 107 // Convert the pending local storage info to local storage info objects.
|
/packages/providers/MediaProvider/src/com/android/providers/media/ |
MtpService.java | 33 import android.os.storage.StorageEventListener; 34 import android.os.storage.StorageManager; 35 import android.os.storage.StorageVolume; 53 // In PTP mode we support only primary storage 84 // Unhide the storage units when the user has unlocked the lockscreen 237 // In PTP mode we support only primary storage 248 MtpStorage storage = new MtpStorage(volume, getApplicationContext()); local 249 String path = storage.getPath(); 250 mStorageMap.put(path, storage); 252 Log.d(TAG, "addStorageLocked " + storage.getStorageId() + " " + path) 262 MtpStorage storage = mStorageMap.remove(volume.getPath()); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/storage/ |
Storage.h | 31 #include "core/storage/StorageArea.h" 41 class Storage : public ScriptWrappable, public RefCounted<Storage>, public DOMWindowProperty { 43 static PassRefPtr<Storage> create(Frame*, PassOwnPtr<StorageArea>); 44 ~Storage(); 66 Storage(Frame*, PassOwnPtr<StorageArea>);
|