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

1 2

  /external/webkit/Source/WebCore/storage/
Storage.cpp 27 #include "Storage.h"
40 PassRefPtr<Storage> Storage::create(Frame* frame, PassRefPtr<StorageArea> storageArea)
42 return adoptRef(new Storage(frame, storageArea));
45 Storage::Storage(Frame* frame, PassRefPtr<StorageArea> storageArea)
53 Storage::~Storage()
57 unsigned Storage::length() const
65 String Storage::key(unsigned index) cons
    [all...]
Storage.h 41 class Storage : public RefCounted<Storage> {
43 static PassRefPtr<Storage> create(Frame*, PassRefPtr<StorageArea>);
44 ~Storage();
59 Storage(Frame*, PassRefPtr<StorageArea>);
  /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 */
  /external/clang/include/clang/ASTMatchers/
ASTTypeTraits.h 11 // an AST base node at runtime in the same storage in a type safe way.
55 /// the storage inside DynTypedNode. For those nodes, do not
59 return BaseConverter<T>::get(Tag, Storage.buffer);
83 /// guaranteed to be unique pointers pointing to dedicated storage in the
84 /// AST. \c QualTypes on the other hand do not have storage or unique
86 llvm::AlignedCharArrayUnion<Decl*, Stmt*, QualType> Storage;
90 static const T *get(NodeTypeTag Tag, const char Storage[]) {
92 return dyn_cast<T>(*reinterpret_cast<Decl*const*>(Storage));
98 new (Result.Storage.buffer) const Decl*(&Node);
104 static const T *get(NodeTypeTag Tag, const char Storage[]) {
    [all...]
  /external/llvm/lib/VMCore/
User.cpp 59 void *Storage = ::operator new(s + sizeof(Use) * Us);
60 Use *Start = static_cast<Use*>(Storage);
75 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands;
78 ::operator delete(Storage);
  /frameworks/av/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_QPD.h 43 LVM_INT32 Storage[1];
  /external/llvm/utils/yaml-bench/
YAMLBench.cpp 77 SmallString<32> Storage;
78 StringRef Val = sn->getValue(Storage);
  /external/clang/test/SemaCXX/
flexible-array-test.cpp 65 struct Storage : StorageBase {
  /frameworks/av/libvideoeditor/vss/common/inc/
SSRC.h 89 LVM_INT32 Storage [ SSRC_INSTANCE_SIZE/4 ];
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/devices/
Storage.java 19 public class Storage {
22 public Storage(long amount, Unit unit){
26 public Storage(long amount){
30 /** Returns the amount of storage represented, in Bytes */
35 public Storage deepCopy() {
36 return new Storage(mNoBytes);
40 * Return the amount of storage represented by the instance in the given unit
42 * @return The size of the storage in the given unit.
54 if (!(o instanceof Storage)) {
58 Storage s = (Storage) o
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp 168 // An NodeGroup's storage type is actually very much like a TinyPtrVector:
175 // 2. The group is empty, in which case the storage value is null.
193 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P);
194 assert(Storage.is<ExplodedNode *>());
195 Storage = node;
196 assert(Storage.is<ExplodedNode *>());
202 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P);
203 if (Storage.isNull()) {
204 Storage = N;
205 assert(Storage.is<ExplodedNode *>())
    [all...]
  /external/llvm/unittests/ADT/
StringRefTest.cpp 317 std::string Storage;
318 raw_string_ostream OS(Storage);
  /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
  /external/clang/include/clang/AST/
TemplateName.h 180 StorageType Storage;
183 Storage = StorageType::getFromOpaqueValue(Ptr);
208 TemplateName() : Storage() { }
209 explicit TemplateName(TemplateDecl *Template) : Storage(Template) { }
210 explicit TemplateName(OverloadedTemplateStorage *Storage)
211 : Storage(Storage) { }
212 explicit TemplateName(SubstTemplateTemplateParmStorage *Storage);
213 explicit TemplateName(SubstTemplateTemplateParmPackStorage *Storage)
214 : Storage(Storage) {
    [all...]
  /external/clang/include/clang/Basic/
PartialDiagnostic.h 33 // here so that the nested Storage class below can access them.
37 struct Storage {
38 Storage() : NumDiagArgs(0), NumDiagRanges(0) { }
80 /// \brief An allocator for Storage objects, which uses a small cache to
84 Storage Cached[NumCached];
85 Storage *FreeList[NumCached];
92 /// \brief Allocate new storage.
93 Storage *Allocate() {
95 return new Storage;
97 Storage *Result = FreeList[--NumFreeListEntries]
    [all...]
  /packages/apps/Camera/src/com/android/camera/
Storage.java 37 public class Storage {
225 Log.d(TAG, "External storage state=" + state);
243 Log.i(TAG, "Fail to access external storage", e);
249 * OSX requires plugged-in USB storage to have path /DCIM/NNNAAAAA to be
PanoramaModule.java 693 if(mActivity.getStorageSpace() <= Storage.LOW_STORAGE_THRESHOLD) return;
    [all...]
PhotoModule.java 650 Storage.ensureOSXCompatible();
    [all...]
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 42 llvm::SmallVector<T, InlineCapacity> Storage;
48 bool empty() const { return Storage.empty(); }
52 unsigned Index = Storage.size();
53 Storage.push_back(V);
56 T *data = Storage.data();
69 T tmp = Storage[0];
71 unsigned NewSize = Storage.size() - 1;
75 Storage[0] = Storage[NewSize];
77 std::swap(Storage[0], Storage[NewSize])
    [all...]
  /external/llvm/utils/yaml2obj/
yaml2obj.cpp 44 SmallString<4> Storage;
45 StringRef Value = SN->getValue(Storage);
138 SmallString<32> Storage;
139 StringRef KeyValue = Key->getValue(Storage);
154 StringRef ValueValue = Value->getValue(Storage);
263 SmallString<32> Storage;
264 StringRef Char = CharValue->getValue(Storage);
327 SmallString<32> Storage;
328 StringRef KeyValue = Key->getValue(Storage);
334 StringRef Name = Value->getValue(Storage);
    [all...]
  /external/llvm/include/llvm/ADT/
SmallVector.h 854 /// Storage for the SmallVector elements which aren't contained in
857 /// to avoid allocating unnecessary storage.
875 /// Storage - Inline space for elements which aren't stored in the base class.
876 SmallVectorStorage<T, N> Storage;
  /external/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]
  /tools/build/builder/prebuilts/
sdklib.jar 

Completed in 975 milliseconds

1 2