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

  /external/llvm/unittests/ADT/
StringRefTest.cpp 276 std::string Storage;
277 raw_string_ostream OS(Storage);
  /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/base/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/AST/
UsuallyTinyPtrVector.h 26 /// \brief Storage for the vector.
30 mutable uintptr_t Storage;
35 UsuallyTinyPtrVector() : Storage(0) { }
37 : Storage(reinterpret_cast<uintptr_t>(Element)) { }
39 bool empty() const { return !Storage; }
53 if ((Storage & 0x01) == 0)
54 return reinterpret_cast<iterator>(&Storage);
56 vector_type *Vec = reinterpret_cast<vector_type *>(Storage & ~0x01);
63 if ((Storage & 0x01) == 0) {
64 if (Storage == 0
    [all...]
TemplateName.h 183 StorageType Storage;
186 Storage = StorageType::getFromOpaqueValue(Ptr);
211 TemplateName() : Storage() { }
212 explicit TemplateName(TemplateDecl *Template) : Storage(Template) { }
213 explicit TemplateName(OverloadedTemplateStorage *Storage)
214 : Storage(Storage) { }
215 explicit TemplateName(SubstTemplateTemplateParmStorage *Storage);
216 explicit TemplateName(SubstTemplateTemplateParmPackStorage *Storage)
217 : Storage(Storage) {
    [all...]
  /external/llvm/lib/VMCore/
User.cpp 57 void *Storage = ::operator new(s + sizeof(Use) * Us);
58 Use *Start = static_cast<Use*>(Storage);
73 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands;
76 ::operator delete(Storage);
  /frameworks/base/media/libeffects/lvm/lib/SpectrumAnalyzer/src/
LVPSA_QPD.h 43 LVM_INT32 Storage[1];
  /external/clang/test/SemaCXX/
flexible-array-test.cpp 65 struct Storage : StorageBase {
  /frameworks/media/libvideoeditor/vss/common/inc/
SSRC.h 89 LVM_INT32 Storage [ SSRC_INSTANCE_SIZE/4 ];
  /external/clang/include/clang/Basic/
PartialDiagnostic.h 28 struct Storage {
29 Storage() : NumDiagArgs(0), NumDiagRanges(0), NumFixItHints(0) { }
75 /// \brief An allocator for Storage objects, which uses a small cache to
79 Storage Cached[NumCached];
80 Storage *FreeList[NumCached];
87 /// \brief Allocate new storage.
88 Storage *Allocate() {
90 return new Storage;
92 Storage *Result = FreeList[--NumFreeListEntries];
99 /// \brief Free the given storage object
    [all...]
  /packages/apps/Camera/src/com/android/camera/
Storage.java 32 public class Storage {
97 Log.d(TAG, "External storage state=" + state);
115 Log.i(TAG, "Fail to access external storage", e);
121 * OSX requires plugged-in USB storage to have path /DCIM/NNNAAAAA to be
  /external/webkit/Source/WebKit/android/nav/
FindCanvas.h 89 // mLowerGlyphs points to all of our storage space: the lower set followed
98 // Arbitrarily chose the maximum storage to use in the GlyphSet. This is
103 enum Storage {
106 // In order to eliminate new/deletes, create storage that will be enough
  /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/clang/lib/AST/
ASTContext.cpp     [all...]
  /external/clang/tools/libclang/
CIndex.cpp     [all...]
  /prebuilt/common/netbeans-visual/
org-openide-util.jar 

Completed in 908 milliseconds