/external/clang/test/Parser/ |
cxx-throw.cpp | 17 void f() throw(static); // expected-error {{expected a type}} expected-error {{does not allow storage class}}
|
/external/compiler-rt/lib/lsan/lit_tests/TestCases/SharedLibs/ |
huge_tls_lib_so.cc | 2 // allocation of a new TLS storage chunk when loaded with dlopen(). We use it
|
/external/smack/asmack-master/patch/ |
34-pin-jbosh-http-sender.patch | 11 * Storage for test hook implementation.
|
/frameworks/base/core/java/android/webkit/ |
WebStorage.java | 22 * This class is used to manage the JavaScript storage APIs provided by the 24 * API and the HTML5 Web Storage API. 32 * The Web SQL Database API provides storage which is private to a given origin. 40 * for a JavaScript storage API. 57 * This class encapsulates information about the amount of storage 58 * currently used by an origin for the JavaScript storage APIs. 111 * Gets the total amount of storage currently being used by this origin, 112 * for all JavaScript storage APIs, in bytes. 114 * @return the total amount of storage, in bytes 145 * Gets the amount of storage currently being used by both the Applicatio [all...] |
/frameworks/base/docs/downloads/ |
README | 9 Google Cloud Storage
|
/frameworks/base/docs/html/training/basics/data-storage/ |
index.jd | 2 page.tags="data storage","files","sql","database","preferences" 22 <li><a href="{@docRoot}guide/topics/data/data-storage.html">Storage Options</a></li> 32 principal data storage options in Android, including:</p>
|
/external/chromium/chrome/browser/chromeos/login/ |
signed_settings_temp_storage.h | 18 // (that are normally go into SignedSettings storage) 20 // This class serves as a transient storage in that case. 34 // into SignedSettings storage.
|
/external/chromium_org/chrome/browser/chromeos/drive/ |
resource_metadata_storage.h | 34 // Storage for ResourceMetadata which is responsible to manage resource 42 // Object to iterate over entries stored in this storage. 74 // Object to iterate over cache entries stored in this storage. 147 // Puts the entry to this storage. 150 // Gets an entry stored in this storage. 153 // Removes an entry from this storage. 156 // Returns an object to iterate over entries stored in this storage. 167 // Puts the cache entry to this storage. 170 // Gets a cache entry stored in this storage. 173 // Removes a cache entry from this storage [all...] |
/external/chromium_org/chrome/browser/chromeos/settings/ |
device_settings_cache.h | 18 // go into DeviceSettings storage) before owner has been assigned (hence no key 19 // is available). This set of functions serves as a transient storage in that 34 // DeviceSettings storage.
|
/external/chromium_org/chrome/browser/extensions/api/storage/ |
sync_or_local_value_store_cache.h | 12 #include "chrome/browser/extensions/api/storage/settings_observer.h" 13 #include "chrome/browser/extensions/api/storage/settings_storage_quota_enforcer.h" 14 #include "chrome/browser/extensions/api/storage/value_store_cache.h"
|
settings_backend.cc | 5 #include "chrome/browser/extensions/api/storage/settings_backend.h" 9 #include "chrome/browser/extensions/api/storage/settings_sync_processor.h" 10 #include "chrome/browser/extensions/api/storage/settings_sync_util.h" 11 #include "chrome/browser/extensions/api/storage/syncable_settings_storage.h" 58 ValueStore* storage = storage_factory_->Create(base_path_, extension_id); local 59 CHECK(storage); 62 // sync will only go ahead if each underlying storage operation succeeds. 63 storage = new SettingsStorageQuotaEnforcer(quota_, storage); 69 storage)); 254 SyncableSettingsStorage* storage = local [all...] |
/external/chromium_org/chrome/browser/storage_monitor/ |
portable_device_watcher_win.h | 38 // Storage object temporary identifier, e.g. "s10001". This string ID 44 // Storage object persistent identifier, 58 // Device storage details. A device can have multiple data partitions. 76 // Gets the information of the MTP storage specified by |storage_device_id|. 78 // interface details and |storage_object_id| with storage object temporary 85 // Constructs and returns a storage path from storage unique identifier. 99 // Key: MTP device storage unique id. 100 // Value: Metadata for the given storage. 104 // Value: Vector of device storage objects [all...] |
/external/chromium_org/chrome/renderer/resources/extensions/ |
storage_area.js | 17 // storage.sync.get('foo') -> (binds to) -> 18 // storage.get('sync', 'foo'). 30 'storage.' + functionName,
|
/external/chromium_org/net/base/ |
ip_endpoint_unittest.cc | 81 SockaddrStorage storage; local 82 EXPECT_TRUE(ip_endpoint.ToSockAddr(storage.addr, &storage.addr_len)); 87 EXPECT_EQ(expected_size, storage.addr_len); 88 EXPECT_EQ(ip_endpoint.port(), GetPortFromSockaddr(storage.addr, 89 storage.addr_len)); 93 EXPECT_TRUE(ip_endpoint2.FromSockAddr(storage.addr, storage.addr_len)); 103 SockaddrStorage storage; local 104 storage.addr_len = index; // size is too small [all...] |
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
u_double_list.h | 125 #define LIST_FOR_EACH_ENTRY_SAFE(pos, storage, head, member) \ 127 storage = container_of(pos->member.next, pos, member); \ 129 pos = storage, storage = container_of(storage->member.next, storage, member)) 131 #define LIST_FOR_EACH_ENTRY_SAFE_REV(pos, storage, head, member) \ 133 storage = container_of(pos->member.prev, pos, member); \ 135 pos = storage, storage = container_of(storage->member.prev, storage, member) [all...] |
/external/chromium_org/third_party/mesa/src/src/mesa/math/ |
m_vector.c | 76 * \param storage pointer to storage for the vector's data 79 _mesa_vector4f_init( GLvector4f *v, GLbitfield flags, GLfloat (*storage)[4] ) 83 v->data = storage; 84 v->start = (GLfloat *) storage; 91 * Initialize GLvector objects and allocate storage. 103 v->storage = _mesa_align_malloc( count * 4 * sizeof(GLfloat), alignment ); 105 v->start = (GLfloat *) v->storage; 106 v->data = (GLfloat (*)[4]) v->storage; 114 * vector's storage field if the VEC_MALLOC flag is set [all...] |
/external/chromium_org/tools/gn/bin/ |
README.txt | 2 Google Storage by gclient runhooks for the current platform. 11 List the contents of GN's Google Storage bucket: 26 https://developers.google.com/storage/docs/gsutil
|
/external/mesa3d/src/gallium/auxiliary/util/ |
u_double_list.h | 125 #define LIST_FOR_EACH_ENTRY_SAFE(pos, storage, head, member) \ 127 storage = container_of(pos->member.next, pos, member); \ 129 pos = storage, storage = container_of(storage->member.next, storage, member)) 131 #define LIST_FOR_EACH_ENTRY_SAFE_REV(pos, storage, head, member) \ 133 storage = container_of(pos->member.prev, pos, member); \ 135 pos = storage, storage = container_of(storage->member.prev, storage, member) [all...] |
/external/mesa3d/src/mesa/math/ |
m_vector.c | 76 * \param storage pointer to storage for the vector's data 79 _mesa_vector4f_init( GLvector4f *v, GLbitfield flags, GLfloat (*storage)[4] ) 83 v->data = storage; 84 v->start = (GLfloat *) storage; 91 * Initialize GLvector objects and allocate storage. 103 v->storage = _mesa_align_malloc( count * 4 * sizeof(GLfloat), alignment ); 105 v->start = (GLfloat *) v->storage; 106 v->data = (GLfloat (*)[4]) v->storage; 114 * vector's storage field if the VEC_MALLOC flag is set [all...] |
/frameworks/base/core/java/android/os/storage/ |
MountServiceListener.java | 17 package android.os.storage; 26 * USB Mass storage connection state has changed. 34 * Storage state has changed.
|
/frameworks/base/core/java/com/android/internal/os/storage/ |
ExternalStorageFormatter.java | 1 package com.android.internal.os.storage; 14 import android.os.storage.IMountService; 15 import android.os.storage.StorageEventListener; 16 import android.os.storage.StorageManager; 17 import android.os.storage.StorageVolume; 25 * Takes care of unmounting and formatting external storage. 31 public static final String FORMAT_ONLY = "com.android.internal.os.storage.FORMAT_ONLY"; 32 public static final String FORMAT_AND_FACTORY_RESET = "com.android.internal.os.storage.FORMAT_AND_FACTORY_RESET"; 36 // If non-null, the volume to format. Otherwise, will use the default external storage directory 57 Log.i(TAG, "Received storage state changed notification that " [all...] |
/frameworks/base/core/jni/android/graphics/ |
CreateJavaOutputStreamAdaptor.cpp | 129 jbyteArray storage) { 130 return new JavaInputStreamAdaptor(env, stream, storage); 157 jbyteArray storage) { 158 SkAutoTUnref<SkStream> adaptor(CreateJavaInputStreamAdaptor(env, stream, storage)); 172 SkJavaOutputStream(JNIEnv* env, jobject stream, jbyteArray storage) 173 : fEnv(env), fJavaOutputStream(stream), fJavaByteArray(storage) { 174 fCapacity = env->GetArrayLength(storage); 179 jbyteArray storage = fJavaByteArray; local 187 env->SetByteArrayRegion(storage, 0, requested, 197 storage, 0, requested) [all...] |
/external/clang/include/clang/Basic/ |
PartialDiagnostic.h | 34 // here so that the nested Storage class below can access them. 38 struct Storage { 39 Storage() : NumDiagArgs(0), NumDiagRanges(0) { } 81 /// \brief An allocator for Storage objects, which uses a small cache to 85 Storage Cached[NumCached]; 86 Storage *FreeList[NumCached]; 93 /// \brief Allocate new storage. 94 Storage *Allocate() { 96 return new Storage; 98 Storage *Result = FreeList[--NumFreeListEntries] [all...] |
/external/chromium_org/net/url_request/ |
url_request_context_builder.cc | 135 URLRequestContextStorage* storage() { function in class:net::__anon9582::BasicURLRequestContext 210 URLRequestContextStorage* storage = context->storage(); local 212 storage->set_http_user_agent_settings(new StaticHttpUserAgentSettings( 218 storage->set_network_delegate(network_delegate); 222 storage->set_host_resolver(host_resolver_.Pass()); 241 storage->set_proxy_service( 246 storage->set_ssl_config_service(new net::SSLConfigServiceDefaults); 247 storage->set_http_auth_handler_factory( 250 storage->set_cookie_store(new CookieMonster(NULL, NULL)) [all...] |
/external/chromium/base/threading/ |
thread_local_storage.h | 18 // Wrapper for thread local storage. This class doesn't do much except provide 24 // cleanup thread local storage on thread exit. 'value' is the data that is 25 // stored in thread local storage. 77 // Function to lazily initialize our thread local storage. 81 // The maximum number of 'slots' in our thread local storage stack.
|