HomeSort by relevance Sort by last modified time
    Searched defs:Storage (Results 1 - 25 of 181) sorted by null

1 2 3 4 5 6 7 8

  /external/libcxx/test/std/utilities/memory/storage.iterator/
raw_storag_iterator.base.pass.cpp 34 Storage;
35 Storage buffer;
raw_storag_iterator.pass.cpp 33 Storage;
34 Storage buffer;
  /frameworks/av/media/libeffects/lvm/lib/Common/lib/
LVM_Timer.h 47 LVM_INT32 Storage[6];
BIQUAD.h 33 LVM_INT32 Storage[6];
126 LVM_INT32 Storage[ (1*2) ]; /* One channel, two taps of size LVM_INT32 */
131 LVM_INT32 Storage[ (2*2) ]; /* Two channels, two taps of size LVM_INT32 */
139 LVM_INT32 Storage[ (1*4) ]; /* One channel, four taps of size LVM_INT32 */
144 LVM_INT32 Storage[ (2*4) ]; /* Two channels, four taps of size LVM_INT32 */
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/storage.iterator/
raw_storag_iterator.pass.cpp 33 Storage;
34 Storage buffer;
  /bionic/tools/bionicbb/
gmail.py 33 from oauth2client.file import Storage
37 STORAGE = Storage('oauth.storage')
44 # Try to retrieve credentials from storage or run the flow to generate them
45 credentials = STORAGE.get()
47 credentials = run(flow, STORAGE, http=http)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
file.py 27 from oauth2client.client import Storage as BaseStorage
34 class Storage(BaseStorage):
47 """Acquires any lock necessary to access this Storage.
53 """Release the Storage lock.
keyring_storage.py 15 """A keyring based Storage.
17 A Storage for Credentials that uses the keyring module.
27 from oauth2client.client import Storage as BaseStorage
30 class Storage(BaseStorage):
44 from oauth2client.keyring_storage import Storage
46 s = Storage('name_of_application', 'user1')
64 """Acquires any lock necessary to access this Storage.
70 """Release the Storage lock.
django_orm.py 28 from oauth2client.client import Storage as BaseStorage
80 class Storage(BaseStorage):
84 This Storage helper presumes the Credentials
90 """Constructor for Storage.
  /external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/
test_keyring.py 31 from oauth2client.keyring_storage import Storage
40 s = Storage('my_unit_test', 'me')
49 s = Storage('my_unit_test', 'me')
76 s = Storage('my_unit_test', 'me')
test_jwt.py 41 from oauth2client.file import Storage
272 store = Storage(filename)
  /external/clang/include/clang/Lex/
ModuleLoader.h 34 llvm::PointerIntPair<Module *, 1, bool> Storage;
37 ModuleLoadResult() : Storage() { }
40 : Storage(module, missingExpected) { }
42 operator Module *() const { return Storage.getPointer(); }
48 bool isMissingExpected() const { return Storage.getInt(); }
  /external/llvm/lib/MC/
MCSymbol.cpp 26 // space for the storage type and not the name pointer.
35 void *Storage = Ctx.allocate(Size, alignOf<NameEntryStorageTy>());
36 NameEntryStorageTy *Start = static_cast<NameEntryStorageTy*>(Storage);
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_QPD.h 43 LVM_INT32 Storage[1];
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/algorithm/string/detail/
find_format_all.hpp 200 // Instantiate replacement storage
202 BOOST_STRING_TYPENAME range_value<InputT>::type> Storage;
212 Storage,
221 // Copy formated replace to the storage
222 ::boost::algorithm::detail::copy_to_storage( Storage, M.format_result() );
230 Storage,
236 if ( Storage.empty() )
244 ::boost::algorithm::detail::insert( Input, ::boost::end(Input), Storage.begin(), Storage.end() );
  /external/deqp/framework/randomshaders/
rsgVariable.hpp 40 enum Storage
54 Variable (const VariableType& type, Storage storage, const char* name);
58 Storage getStorage (void) const { return m_storage; }
63 void setStorage (Storage storage) { m_storage = storage; }
72 Storage m_storage;
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 96 SmallString<32> Storage;
97 StringRef Val = sn->getValue(Storage);
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/algorithms/alg.modifying.operations/alg.fill/
fill_n.pass.cpp 119 struct Storage
130 Storage foo[5];
131 std::fill_n(&foo[0], 5, Storage());
  /external/clang/test/SemaCXX/
flexible-array-test.cpp 77 struct Storage : StorageBase {
  /external/libcxx/test/std/algorithms/alg.modifying.operations/alg.fill/
fill_n.pass.cpp 122 struct Storage
133 Storage foo[5];
134 std::fill_n(&foo[0], UDI(5), Storage());
  /external/llvm/include/llvm/Support/
ErrorOr.h 43 T *Storage;
46 ReferenceStorage(T &Ref) : Storage(&Ref) {}
48 operator T &() const { return *Storage; }
49 T &get() const { return *Storage; }
  /packages/apps/Camera2/src/com/android/camera/session/
PlaceholderManager.java 28 import com.android.camera.Storage;
72 Uri uri = Storage.addEmptyPlaceholder(size);
94 Uri uri = Storage.addPlaceholder(placeholder);
137 Uri resultUri = Storage.updateImage(placeholder.outputUri, mContext.getContentResolver(),
151 Storage.replacePlaceholder(session.outputUri, placeholder);
161 return Storage.getPlaceholderForSession(placeholder.outputUri);
171 Storage.removePlaceholder(placeholder.outputUri);
199 if (name.toLowerCase().endsWith(Storage.JPEG_POSTFIX)) {
200 name = name.substring(0, name.length() - Storage.JPEG_POSTFIX.length());
  /packages/apps/LegacyCamera/src/com/android/camera/
Storage.java 32 public class Storage {
107 Log.d(TAG, "External storage state=" + state);
125 Log.i(TAG, "Fail to access external storage", e);
131 * OSX requires plugged-in USB storage to have path /DCIM/NNNAAAAA to be
  /prebuilts/tools/common/m2/repository/com/google/apis/google-api-services-storage/v1-rev82-1.22.0/
google-api-services-storage-v1-rev82-1.22.0.jar 
  /external/clang/include/clang/AST/
ASTTypeTraits.h 11 // that can be used to store an AST base node at runtime in the same storage in
226 /// the storage inside DynTypedNode. For those nodes, do not
230 return BaseConverter<T>::get(NodeKind, Storage.buffer);
238 return BaseConverter<T>::getUnchecked(NodeKind, Storage.buffer);
250 ? *reinterpret_cast<void *const *>(Storage.buffer)
372 static const T *get(ASTNodeKind NodeKind, const char Storage[]) {
374 return &getUnchecked(NodeKind, Storage);
377 static const T &getUnchecked(ASTNodeKind NodeKind, const char Storage[]) {
380 *reinterpret_cast<const void *const *>(Storage)));
385 new (Result.Storage.buffer) const void *(&Node)
    [all...]

Completed in 631 milliseconds

1 2 3 4 5 6 7 8