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

1 2 3

  /external/chromium_org/third_party/libaddressinput/chromium/cpp/include/libaddressinput/
storage.h 30 // class MyStorage : public Storage {
43 class Storage {
47 virtual ~Storage() {}
  /external/chromium_org/third_party/libaddressinput/src/cpp/include/libaddressinput/
storage.h 31 // class MyStorage : public Storage {
45 class Storage {
50 virtual ~Storage() {}
53 // which Storage takes ownership of.
  /external/libcxx/test/utilities/memory/storage.iterator/
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;
  /external/chromium_org/third_party/WebKit/Source/core/storage/
Storage.cpp 27 #include "core/storage/Storage.h"
36 PassRefPtrWillBeRawPtr<Storage> Storage::create(LocalFrame* frame, PassOwnPtrWillBeRawPtr<StorageArea> storageArea)
38 return adoptRefWillBeNoop(new Storage(frame, storageArea));
41 Storage::Storage(LocalFrame* frame, PassOwnPtrWillBeRawPtr<StorageArea> storageArea)
50 Storage::~Storage()
54 String Storage::anonymousIndexedGetter(unsigned index, ExceptionState& exceptionState
    [all...]
  /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/IR/
User.cpp 60 void *Storage = ::operator new(s + sizeof(Use) * Us);
61 Use *Start = static_cast<Use*>(Storage);
76 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands;
79 ::operator delete(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/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/llvm/utils/yaml-bench/
YAMLBench.cpp 91 SmallString<32> Storage;
92 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/chromium_org/third_party/WebKit/Source/devtools/front_end/sdk/
BreakpointManager.js 40 this._storage = new WebInspector.BreakpointManager.Storage(this, breakpointStorage);
822 WebInspector.BreakpointManager.Storage = function(breakpointManager, setting)
827 /** @type {!Object.<string, !WebInspector.BreakpointManager.Storage.Item>} */
830 var breakpoint = /** @type {!WebInspector.BreakpointManager.Storage.Item} */ (breakpoints[i]);
836 WebInspector.BreakpointManager.Storage.prototype = {
849 * @return {!Array.<!WebInspector.BreakpointManager.Storage.Item>}
870 this._breakpoints[breakpoint._breakpointStorageId()] = new WebInspector.BreakpointManager.Storage.Item(breakpoint);
898 WebInspector.BreakpointManager.Storage.Item = function(breakpoint)
    [all...]
  /external/chromium_org/remoting/webapp/js_proto/
chrome_proto.js 101 chrome.storage = {};
103 /** @type {chrome.Storage} */
104 chrome.storage.local;
106 /** @type {chrome.Storage} */
107 chrome.storage.sync;
110 chrome.Storage = function() {};
117 chrome.Storage.prototype.get = function(items, callback) {};
124 chrome.Storage.prototype.set = function(items, opt_callback) {};
131 chrome.Storage.prototype.remove = function(items, opt_callback) {};
137 chrome.Storage.prototype.clear = function(opt_callback) {}
    [all...]
  /external/chromium_org/tools/memory_inspector/memory_inspector/data/
file_storage.py 5 """This module handles file-backed storage of the core classes.
7 The storage is logically organized as follows:
8 Storage -> N Archives -> 1 Symbol index
26 class Storage(object):
31 """Creates a file-backed storage. Files will be placed in |root_path|."""
40 file_path = os.path.join(self._root, Storage._SETTINGS_FILE % name)
49 file_path = os.path.join(self._root, Storage._SETTINGS_FILE % name)
  /external/clang/test/SemaCXX/
flexible-array-test.cpp 71 struct Storage : StorageBase {
  /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 27 import com.android.camera.Storage;
74 Storage.addPlaceholder(placeholder, width, height);
108 Uri resultUri = Storage.updateImage(session.outputUri, mContext.getContentResolver(), session.outputTitle,
125 Storage.replacePlaceholder(session.outputUri,
155 if (name.toLowerCase().endsWith(Storage.JPEG_POSTFIX)) {
156 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
  /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
180 /// the storage inside DynTypedNode. For those nodes, do not
184 return BaseConverter<T>::get(NodeKind, Storage.buffer);
237 static const T *get(ASTNodeKind NodeKind, const char Storage[]) {
239 return dyn_cast<T>(*reinterpret_cast<BaseT *const *>(Storage));
245 new (Result.Storage.buffer) const BaseT * (&Node);
252 static const T *get(ASTNodeKind NodeKind, const char Storage[]) {
254 return *reinterpret_cast<T *const *>(Storage);
260 new (Result.Storage.buffer) const T * (&Node);
267 static const T *get(ASTNodeKind NodeKind, const char Storage[]) {
    [all...]
TemplateName.h 181 StorageType Storage;
184 Storage = StorageType::getFromOpaqueValue(Ptr);
209 TemplateName() : Storage() { }
210 explicit TemplateName(TemplateDecl *Template) : Storage(Template) { }
211 explicit TemplateName(OverloadedTemplateStorage *Storage)
212 : Storage(Storage) { }
213 explicit TemplateName(SubstTemplateTemplateParmStorage *Storage);
214 explicit TemplateName(SubstTemplateTemplateParmPackStorage *Storage)
215 : Storage(Storage) {
    [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) { }
76 /// \brief An allocator for Storage objects, which uses a small cache to
80 Storage Cached[NumCached];
81 Storage *FreeList[NumCached];
88 /// \brief Allocate new storage.
89 Storage *Allocate() {
91 return new Storage;
93 Storage *Result = FreeList[--NumFreeListEntries]
    [all...]

Completed in 1918 milliseconds

1 2 3