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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/chrome/common/extensions/docs/templates/public/apps/
storage.html 1 {{+partials.standard_apps_api api:apis.storage intro:intros.storage/}}
  /external/chromium_org/chrome/common/extensions/docs/templates/public/extensions/
storage.html 1 {{+partials.standard_extensions_api api:apis.storage intro:intros.storage/}}
  /external/chromium_org/chrome/common/extensions/docs/templates/public/apps/manifest/
storage.html 1 {{+partials.standard_apps_article article:intros.manifest/storage/}}
  /external/chromium_org/chrome/common/extensions/docs/templates/public/extensions/manifest/
storage.html 1 {{+partials.standard_extensions_article article:intros.manifest/storage/}}
  /external/chromium_org/content/test/data/dom_storage/
sanity_check.js 21 function sanityCheck(storage) {
22 storage.clear();
24 checkEqual(0, storage.length,
25 "storage.length != 0 at start");
26 checkEqual(null, storage.getItem("foo"),
28 checkEqual(null, storage.key(0),
31 storage.setItem("foo", "bar");
33 checkEqual(1, storage.length,
34 "storage.length != 1 after addition");
35 checkEqual("bar", storage.getItem("foo")
    [all...]
  /external/expat/tests/
chardata.c 35 CharData_Init(CharData *storage)
37 assert(storage != NULL);
38 storage->count = -1;
42 CharData_AppendString(CharData *storage, const char *s)
44 int maxchars = sizeof(storage->data) / sizeof(storage->data[0]);
49 if (storage->count < 0)
50 storage->count = 0;
51 if ((len + storage->count) > maxchars) {
52 len = (maxchars - storage->count)
    [all...]
chardata.h 25 void CharData_Init(CharData *storage);
27 void CharData_AppendString(CharData *storage, const char *s);
29 void CharData_AppendXMLChars(CharData *storage, const XML_Char *s, int len);
31 int CharData_CheckString(CharData *storage, const char *s);
33 int CharData_CheckXMLChars(CharData *storage, const XML_Char *s);
  /external/chromium_org/chrome/common/extensions/docs/templates/articles/
experimental_storage.html 1 <h1>experimental.storage</h1>
4 The <code>Storage</code> API is no longer experimental;
9 <a href="storage.html">chrome.storage</a>
  /external/chromium_org/chrome/browser/invalidation/
invalidator_storage_unittest.cc 28 // Clearing the storage should erase all version map entries, bootstrap data,
31 InvalidatorStorage storage(&pref_service_);
32 EXPECT_TRUE(storage.GetBootstrapData().empty());
33 EXPECT_TRUE(storage.GetInvalidatorClientId().empty());
35 storage.SetInvalidatorClientId("fake_id");
36 EXPECT_EQ("fake_id", storage.GetInvalidatorClientId());
38 storage.SetBootstrapData("test");
39 EXPECT_EQ("test", storage.GetBootstrapData());
41 storage.Clear();
43 EXPECT_TRUE(storage.GetBootstrapData().empty())
    [all...]
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/buildbot/
prefs.js 16 chrome.storage.sync.get(this.defaults_,
17 function (storage) {
18 callback(storage.prefs[key]);
23 chrome.storage.sync.get(this.defaults_,
24 function (storage) {
25 storage.prefs[key] = value;
26 chrome.storage.sync.set(storage);
  /device/generic/armv7-a-neon/overlay/frameworks/base/core/res/res/xml/
storage_list.xml 20 <!-- The <device> element should contain one or more <storage> elements.
22 This storage will be the primary external storage and should have path="/mnt/sdcard".
23 Each storage should have both a path and description attribute set.
26 primary: this storage is the primary external storage
27 removable: this is removable storage (for example, a real SD card)
28 emulated: the storage is emulated via the FUSE sdcard daemon
29 mtp-reserve: number of megabytes of storage MTP should reserve for free storage
    [all...]
  /device/generic/mips/overlay/frameworks/base/core/res/res/xml/
storage_list.xml 20 <!-- The <device> element should contain one or more <storage> elements.
22 This storage will be the primary external storage and should have path="/mnt/sdcard".
23 Each storage should have both a path and description attribute set.
26 primary: this storage is the primary external storage
27 removable: this is removable storage (for example, a real SD card)
28 emulated: the storage is emulated via the FUSE sdcard daemon
29 mtp-reserve: number of megabytes of storage MTP should reserve for free storage
    [all...]
  /device/generic/x86/overlay/frameworks/base/core/res/res/xml/
storage_list.xml 20 <!-- The <device> element should contain one or more <storage> elements.
22 This storage will be the primary external storage and should have path="/mnt/sdcard".
23 Each storage should have both a path and description attribute set.
26 primary: this storage is the primary external storage
27 removable: this is removable storage (for example, a real SD card)
28 emulated: the storage is emulated via the FUSE sdcard daemon
29 mtp-reserve: number of megabytes of storage MTP should reserve for free storage
    [all...]
  /external/chromium_org/third_party/libaddressinput/chromium/cpp/src/
validating_storage.h 15 // A wrapper object for Storage that stores data with a checksum and a
22 #include <libaddressinput/storage.h>
31 // Wraps Storage to add checksum and timestamp to stored data. Sample usage:
32 // Storage file_storage = ...;
33 // scoped_ptr<Storage> storage(new ValidatingStorage(file_storage));
34 // storage->Put("key", "data");
35 // scoped_ptr<Storage::Callback> data_ready(BuildCallback(
37 // storage->Get("key", *data_ready);
38 class ValidatingStorage : public Storage {
    [all...]
  /external/chromium_org/mojo/shell/
storage.h 13 // A object that represents the persistent storage used by the shell.
14 class Storage {
16 Storage();
17 ~Storage();
26 DISALLOW_COPY_AND_ASSIGN(Storage);
  /frameworks/base/media/java/android/mtp/
MtpStorage.java 20 import android.os.storage.StorageVolume;
23 * This class represents a storage unit on an MTP device.
48 * Returns the storage ID for the storage unit
50 * @return the storage ID
57 * Generates a storage ID for storage of given index.
58 * Index 0 is for primary external storage
60 * @return the storage ID
63 // storage ID is 0x00010001 for primary storage
    [all...]
MtpStorageInfo.java 20 * This class encapsulates information about a storage unit on an MTP device.
37 * Returns the storage ID for the storage unit.
38 * The storage ID uniquely identifies the storage unit on the MTP device.
40 * @return the storage ID
47 * Returns the maximum storage capacity for the storage unit in bytes
56 * Returns the amount of free space in the storage unit in bytes
65 * Returns the description string for the storage unit
    [all...]
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
replace_storage.hpp 24 // storage handling routines -----------------------------------------------//
28 StorageT& Storage,
34 while( !Storage.empty() && OutputIt!=DestEnd )
36 *OutputIt=Storage.front();
37 Storage.pop_front();
46 StorageT& Storage,
49 Storage.insert( Storage.end(), ::boost::begin(What), ::boost::end(What) );
64 StorageT& Storage,
70 // Copy data from the storage until the beginning of the segmen
    [all...]
  /device/samsung/manta/
init.smdk5250.rc 4 # See storage config details at http://source.android.com/tech/storage/
6 mkdir /storage/emulated 0555 root root
8 export EXTERNAL_STORAGE /storage/emulated/legacy
10 export EMULATED_STORAGE_TARGET /storage/emulated
13 symlink /storage/emulated/legacy /sdcard
14 symlink /storage/emulated/legacy /mnt/sdcard
15 symlink /storage/emulated/legacy /storage/sdcard0
16 symlink /mnt/shell/emulated/0 /storage/emulated/legac
    [all...]
  /external/clang/test/CXX/dcl.dcl/dcl.spec/dcl.stc/
p2.cpp 6 auto int ao; // expected-error {{illegal storage class on file-scoped variable}}
7 auto void af(); // expected-error {{illegal storage class on function}}
9 register int ro; // expected-error {{illegal storage class on file-scoped variable}}
10 register void rf(); // expected-error {{illegal storage class on function}}
13 auto int ao; // expected-error {{storage class specified for a member declaration}}
14 auto void af(); // expected-error {{storage class specified for a member declaration}}
16 register int ro; // expected-error {{storage class specified for a member declaration}}
17 register void rf(); // expected-error {{storage class specified for a member declaration}}
22 auto void abf(); // expected-error {{illegal storage class on function}}
25 register void rbf(); // expected-error {{illegal storage class on function}
    [all...]
  /external/chromium_org/net/disk_cache/flash/
segment_unittest.cc 8 #include "net/disk_cache/flash/storage.h"
40 disk_cache::Storage storage(path_, kStorageSize);
41 ASSERT_TRUE(storage.Init());
44 new disk_cache::Segment(0, false, &storage));
61 disk_cache::Storage storage(path_, kStorageSize);
62 ASSERT_TRUE(storage.Init());
66 new disk_cache::Segment(index, false, &storage));
71 segment.reset(new disk_cache::Segment(index, false, &storage));
    [all...]
  /external/chromium_org/chrome/common/extensions/api/
system_storage.idl 5 // Use the <code>chrome.system.storage</code> API to query storage device
6 // information and be notified when a removable storage device is attached and
8 namespace system.storage {
11 // The storage has fixed media, e.g. hard disk or SSD.
13 // The storage is removable, e.g. USB flash drive.
15 // The storage type is unknown.
20 // The transient ID that uniquely identifies the storage device.
25 // The name of the storage unit.
27 // The media type of the storage unit
    [all...]
  /external/chromium_org/third_party/skia/src/images/
SkStreamHelpers.h 15 * Copy the provided stream to memory allocated by storage.
17 * @param storage Allocator to hold the memory. Will be reset to be large
19 * storage->get() will point to data holding the SkStream's entire
21 * @param stream SkStream to be copied into storage.
23 * number of bytes pointed to by storage->get(). Returns 0 on failure.
25 size_t CopyStreamToStorage(SkAutoMalloc* storage, SkStream* stream);
  /external/skia/src/images/
SkStreamHelpers.h 15 * Copy the provided stream to memory allocated by storage.
17 * @param storage Allocator to hold the memory. Will be reset to be large
19 * storage->get() will point to data holding the SkStream's entire
21 * @param stream SkStream to be copied into storage.
23 * number of bytes pointed to by storage->get(). Returns 0 on failure.
25 size_t CopyStreamToStorage(SkAutoMalloc* storage, SkStream* stream);
  /external/chromium_org/webkit/browser/appcache/
appcache_storage_unittest.cc 29 scoped_refptr<AppCache> cache(new AppCache(service.storage(), 111));
32 service.storage()->working_set()->GetCache(111));
34 service.storage()->working_set()->RemoveCache(cache.get());
36 EXPECT_TRUE(!service.storage()->working_set()->GetCache(111));
40 dummy.storage()->working_set()->RemoveCache(cache.get());
46 new AppCacheGroup(service.storage(), GURL(), 111));
48 EXPECT_EQ(group.get(), service.storage()->working_set()->GetGroup(GURL()));
50 service.storage()->working_set()->RemoveGroup(group.get());
52 EXPECT_TRUE(!service.storage()->working_set()->GetGroup(GURL()));
56 dummy.storage()->working_set()->RemoveGroup(group.get())
    [all...]

Completed in 799 milliseconds

1 2 3 4 5 6 7 8 91011>>