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

1 2 3 4 5 6 7 8 91011>>

  /external/lldb/test/lang/objc/real-definition/
Bar.h 7 InternalClass *storage; variable
  /external/llvm/unittests/ADT/
TwineTest.cpp 85 SmallString<8> storage; local
86 EXPECT_EQ(0, *Twine("hello").toNullTerminatedStringRef(storage).end());
88 *Twine(StringRef("hello")).toNullTerminatedStringRef(storage).end());
90 .toNullTerminatedStringRef(storage)
  /external/libcxx/test/std/atomics/atomics.flag/
default.pass.cpp 28 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
29 A& zero = *new (storage) A();
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.flag/
default.pass.cpp 26 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
27 A& zero = *new (storage) A();
  /external/libcxx/test/std/atomics/atomics.types.generic/
bool.pass.cpp 232 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
233 A& zero = *new (storage) A();
address.pass.cpp 123 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {23}; local
124 A& zero = *new (storage) A();
integral.pass.cpp 153 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {23}; local
154 A& zero = *new (storage) A();
  /external/skia/src/core/
SkRasterizer.cpp 18 SkIRect storage; local
30 storage = clipBounds->makeOutset(margin.fX, margin.fY);
31 clipBounds = &storage;
  /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.
MountServiceInternal.java 17 package android.os.storage;
27 * Policy that influences how external storage is mounted and reported.
31 * Gets the external storage mount mode for the given uid.
45 * Gets whether external storage should be reported to the given UID.
47 * @param uid The UID for which to determine whether it has external storage.
49 * @return Weather to report external storage.
50 * @return True to report the state of external storage, false to
57 * Adds a policy for determining how external storage is mounted and reported.
OnObbStateChangeListener.java 17 package android.os.storage;
StorageEventListener.java 17 package android.os.storage;
26 * Called when the detection state of a USB Mass Storage host has changed.
27 * @param connected true if the USB mass storage is connected.
33 * Called when storage has changed state
34 * @param path the filesystem path for the storage
StorageResultCode.java 17 package android.os.storage;
29 * @see android.os.storage.StorageManager
35 * @see android.os.storage.StorageManager
41 * @see android.os.storage.StorageManager
47 * @see android.os.storage.StorageManager
53 * @see android.os.storage.StorageManager
58 * Operation failed: Storage not mounted.
59 * @see android.os.storage.StorageManager
64 * Operation failed: Storage is mounted.
65 * @see android.os.storage.StorageManage
    [all...]
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/atomics/atomics.types.generic/
bool.pass.cpp 225 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {1}; local
226 A& zero = *new (storage) A();
address.pass.cpp 118 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {23}; local
119 A& zero = *new (storage) A();
integral.pass.cpp 149 _ALIGNAS_TYPE(A) char storage[sizeof(A)] = {23}; local
150 A& zero = *new (storage) A();
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/source/
h264bsd_container.h 58 storage_t storage; member in struct:__anon22277
  /frameworks/base/services/core/java/com/android/server/storage/
DeviceStorageMonitorInternal.java 17 package com.android.server.storage;
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/device/storage/
StorageGuidedStepFragment.java 17 package com.android.tv.settings.device.storage;
  /prebuilts/eclipse/mavenplugins/tycho/tycho-dependencies-m2repo/org/eclipse/tycho/tycho-bundles-external/0.20.0/eclipse/plugins/
org.eclipse.tycho.noopsecurity_0.20.0.jar 
  /prebuilts/tools/common/m2/repository/org/eclipse/tycho/tycho-bundles-external/0.18.1/eclipse/plugins/
org.eclipse.tycho.noopsecurity_0.18.1.jar 
  /external/boringssl/src/crypto/bn/
rsaz_exp.c 81 unsigned char storage[320*3+32*9*16+64]; /* 5.5KB */ local
82 unsigned char *p_str = storage + (64-((size_t)storage%64));
259 OPENSSL_cleanse(storage,sizeof(storage));
277 unsigned char storage[16*8*8+64*2+64]; /* 1.2KB */ local
278 unsigned char *table = storage + (64-((size_t)storage%64));
323 OPENSSL_cleanse(storage,sizeof(storage));
    [all...]
  /external/mesa3d/src/glsl/tests/
copy_constant_to_storage_tests.cpp 32 copy_constant_to_storage(union gl_constant_value *storage,
49 gl_constant_value storage[17]; member in class:copy_constant_to_storage
72 const unsigned red_zone_size = Elements(storage) - val->type->components();
73 fill_storage_array_with_sentinels(storage,
77 linker::copy_constant_to_storage(storage,
82 verify_data(storage, 0, val, red_zone_size);
91 const unsigned red_zone_size = Elements(storage) - val->type->components();
92 fill_storage_array_with_sentinels(storage,
96 linker::copy_constant_to_storage(storage,
101 verify_data(storage, 0, val, red_zone_size)
    [all...]
  /external/skia/tests/
BitmapGetColorTest.cpp 39 uint32_t storage[4]; local
40 bm.installPixels(info, storage, info.minRowBytes());
ImageIsOpaqueTest.cpp 20 // just need a safe amount of storage, but ensure that it is 4-byte aligned.
21 int32_t storage[(sizeof(SkImageInfo)*2) / sizeof(int32_t)]; local
22 SkWriteBuffer wb(storage, sizeof(storage));
24 SkASSERT(wb.bytesWritten() < sizeof(storage));
26 SkReadBuffer rb(storage, wb.bytesWritten());

Completed in 2655 milliseconds

1 2 3 4 5 6 7 8 91011>>