/external/clang/include/clang/AST/ |
D | TemplateName.h | 181 StorageType Storage; variable 184 Storage = StorageType::getFromOpaqueValue(Ptr); in TemplateName() 209 TemplateName() : Storage() { } in TemplateName() 210 explicit TemplateName(TemplateDecl *Template) : Storage(Template) { } in TemplateName() 211 explicit TemplateName(OverloadedTemplateStorage *Storage) in TemplateName() argument 212 : Storage(Storage) { } in TemplateName() 213 explicit TemplateName(SubstTemplateTemplateParmStorage *Storage); 214 explicit TemplateName(SubstTemplateTemplateParmPackStorage *Storage) in TemplateName() argument 215 : Storage(Storage) { } in TemplateName() 216 explicit TemplateName(QualifiedTemplateName *Qual) : Storage(Qual) { } in TemplateName() [all …]
|
D | ASTTypeTraits.h | 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); 392 static const T *get(ASTNodeKind NodeKind, const char Storage[]) { 394 return &getUnchecked(NodeKind, Storage); [all …]
|
/external/clang/lib/StaticAnalyzer/Core/ |
D | ExplodedGraph.cpp | 230 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P); in replaceNode() local 231 assert(Storage.is<ExplodedNode *>()); in replaceNode() 232 Storage = node; in replaceNode() 233 assert(Storage.is<ExplodedNode *>()); in replaceNode() 239 GroupStorage &Storage = reinterpret_cast<GroupStorage&>(P); in addNode() local 240 if (Storage.isNull()) { in addNode() 241 Storage = N; in addNode() 242 assert(Storage.is<ExplodedNode *>()); in addNode() 246 ExplodedNodeVector *V = Storage.dyn_cast<ExplodedNodeVector *>(); in addNode() 250 ExplodedNode *Old = Storage.get<ExplodedNode *>(); in addNode() [all …]
|
/external/llvm/lib/IR/ |
D | DebugInfoMetadata.cpp | 22 DILocation::DILocation(LLVMContext &C, StorageType Storage, unsigned Line, in DILocation() argument 24 : MDNode(C, DILocationKind, Storage, MDs) { in DILocation() 43 Metadata *InlinedAt, StorageType Storage, in getImpl() argument 49 if (Storage == Uniqued) { in getImpl() 65 DILocation(Context, Storage, Line, Column, Ops), in getImpl() 66 Storage, Context.pImpl->DILocations); in getImpl() 179 StorageType Storage, bool ShouldCreate) { in getImpl() argument 181 if (Storage == Uniqued) { in getImpl() 196 Context, Storage, Hash, Tag, PreOps, DwarfOps), in getImpl() 197 Storage, Context.pImpl->GenericDINodes); in getImpl() [all …]
|
D | User.cpp | 128 uint8_t *Storage = static_cast<uint8_t *>( in allocateFixedOperandUser() local 130 Use *Start = reinterpret_cast<Use *>(Storage + DescBytesToAllocate); in allocateFixedOperandUser() 139 auto *DescInfo = reinterpret_cast<DescriptorInfo *>(Storage + DescBytes); in allocateFixedOperandUser() 156 void *Storage = ::operator new(Size + sizeof(Use *)); in operator new() local 157 Use **HungOffOperandList = static_cast<Use **>(Storage); in operator new() 187 uint8_t *Storage = reinterpret_cast<uint8_t *>(DI) - DI->SizeInBytes; in operator delete() local 188 ::operator delete(Storage); in operator delete() 190 Use *Storage = static_cast<Use *>(Usr) - Obj->NumUserOperands; in operator delete() local 191 Use::zap(Storage, Storage + Obj->NumUserOperands, in operator delete() 193 ::operator delete(Storage); in operator delete()
|
D | MetadataImpl.h | 29 template <class T> T *MDNode::storeImpl(T *N, StorageType Storage) { in storeImpl() argument 30 switch (Storage) { in storeImpl() 43 T *MDNode::storeImpl(T *N, StorageType Storage, StoreT &Store) { in storeImpl() argument 44 switch (Storage) { in storeImpl()
|
/external/llvm/include/llvm/IR/ |
D | DebugInfoMetadata.h | 152 DINode(LLVMContext &C, unsigned ID, StorageType Storage, unsigned Tag, 154 : MDNode(C, ID, Storage, Ops1, Ops2) { in MDNode() argument 251 GenericDINode(LLVMContext &C, StorageType Storage, unsigned Hash, 254 : DINode(C, GenericDINodeKind, Storage, Tag, Ops1, Ops2) { 264 StorageType Storage, bool ShouldCreate = true) { 266 DwarfOps, Storage, ShouldCreate); 271 StorageType Storage, bool ShouldCreate = true); 325 DISubrange(LLVMContext &C, StorageType Storage, int64_t Count, 327 : DINode(C, DISubrangeKind, Storage, dwarf::DW_TAG_subrange_type, None), 332 int64_t LowerBound, StorageType Storage, [all …]
|
/external/clang/include/clang/Basic/ |
D | PartialDiagnostic.h | 38 struct Storage { struct 39 Storage() : NumDiagArgs(0) { } in Storage() argument 80 Storage Cached[NumCached]; 81 Storage *FreeList[NumCached]; 89 Storage *Allocate() { in Allocate() 91 return new Storage; in Allocate() 93 Storage *Result = FreeList[--NumFreeListEntries]; in Allocate() 101 void Deallocate(Storage *S) { in Deallocate() 120 mutable Storage *DiagStorage; 126 Storage *getStorage() const { in getStorage() [all …]
|
/external/deqp/framework/randomshaders/ |
D | rsgVariable.hpp | 40 enum Storage enum in rsg::Variable 54 Variable (const VariableType& type, Storage storage, const char* name); 58 Storage getStorage (void) const { return m_storage; } in getStorage() 63 void setStorage (Storage storage) { m_storage = storage; } in setStorage() 72 Storage m_storage;
|
D | rsgVariableManager.hpp | 66 …Variable* allocate (const VariableType& type, Variable::Storage storage, const char* name… 208 …Variable* allocate (const VariableType& type, Variable::Storage storage, const char* nam… 210 void setStorage (Variable* variable, Variable::Storage storage); 319 template <Variable::Storage Storage> 323 typedef ValueEntryIterator<EntryStorageFilter<Storage> > Iterator; 327 return entry->getVariable()->getStorage() == Storage; in operator ()()
|
/external/clang/include/clang/Lex/ |
D | ModuleLoader.h | 34 llvm::PointerIntPair<Module *, 1, bool> Storage; variable 37 ModuleLoadResult() : Storage() { } in ModuleLoadResult() 40 : Storage(module, missingExpected) { } in ModuleLoadResult() 42 operator Module *() const { return Storage.getPointer(); } 48 bool isMissingExpected() const { return Storage.getInt(); } in isMissingExpected()
|
D | ModuleMap.h | 109 llvm::PointerIntPair<Module *, 2, ModuleHeaderRole> Storage; variable 112 KnownHeader() : Storage(nullptr, NormalHeader) { } in KnownHeader() 113 KnownHeader(Module *M, ModuleHeaderRole Role) : Storage(M, Role) { } in KnownHeader() 116 return A.Storage == B.Storage; 119 return A.Storage != B.Storage; 123 Module *getModule() const { return Storage.getPointer(); } in getModule() 126 ModuleHeaderRole getRole() const { return Storage.getInt(); } in getRole() 136 return Storage.getPointer() != nullptr;
|
/external/llvm/tools/llvm-diff/ |
D | DifferenceEngine.cpp | 40 llvm::SmallVector<T, InlineCapacity> Storage; member in __anone57e3fde0111::PriorityQueue 46 bool empty() const { return Storage.empty(); } in empty() 50 unsigned Index = Storage.size(); in insert() 51 Storage.push_back(V); in insert() 54 T *data = Storage.data(); in insert() 67 T tmp = Storage[0]; in remove_min() 69 unsigned NewSize = Storage.size() - 1; in remove_min() 73 Storage[0] = Storage[NewSize]; in remove_min() 75 std::swap(Storage[0], Storage[NewSize]); in remove_min() 90 if (Precedes(Storage[L], Storage[Index])) in remove_min() [all …]
|
/external/clang/lib/AST/ |
D | TemplateName.cpp | 55 if (Storage.is<TemplateDecl *>()) in getKind() 57 if (Storage.is<DependentTemplateName *>()) in getKind() 59 if (Storage.is<QualifiedTemplateName *>()) in getKind() 63 = Storage.get<UncommonTemplateNameStorage*>(); in getKind() 72 if (TemplateDecl *Template = Storage.dyn_cast<TemplateDecl *>()) in getAsTemplateDecl() 130 if (TemplateDecl *Template = Storage.dyn_cast<TemplateDecl *>()) in print()
|
/external/llvm/lib/Support/ |
D | YAMLParser.cpp | 1886 StringRef ScalarNode::getValue(SmallVectorImpl<char> &Storage) const { in getValue() 1894 return unescapeDoubleQuoted(UnquotedValue, i, Storage); in getValue() 1902 Storage.clear(); in getValue() 1903 Storage.reserve(UnquotedValue.size()); in getValue() 1906 Storage.insert(Storage.end(), Valid.begin(), Valid.end()); in getValue() 1907 Storage.push_back('\''); in getValue() 1910 Storage.insert(Storage.end(), UnquotedValue.begin(), UnquotedValue.end()); in getValue() 1911 return StringRef(Storage.begin(), Storage.size()); in getValue() 1921 , SmallVectorImpl<char> &Storage) in unescapeDoubleQuoted() 1924 Storage.clear(); in unescapeDoubleQuoted() [all …]
|
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/tests/ |
D | 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')
|
D | test_file.py | 84 s = file.Storage(FILENAME) 92 s = file.Storage(SYMFILENAME) 111 s = file.Storage(FILENAME) 128 s = file.Storage(FILENAME) 150 s = file.Storage(FILENAME) 176 s = file.Storage(FILENAME) 190 s = file.Storage(FILENAME) 217 s = file.Storage(FILENAME) 231 s = file.Storage(FILENAME)
|
/external/llvm/include/llvm/Support/ |
D | CommandLine.h | 1297 std::vector<DataType> Storage; 1302 iterator begin() { return Storage.begin(); } 1303 iterator end() { return Storage.end(); } 1306 const_iterator begin() const { return Storage.begin(); } 1307 const_iterator end() const { return Storage.end(); } 1310 size_type size() const { return Storage.size(); } 1312 bool empty() const { return Storage.empty(); } 1314 void push_back(const DataType &value) { Storage.push_back(value); } 1315 void push_back(DataType &&value) { Storage.push_back(value); } 1319 reference operator[](size_type pos) { return Storage[pos]; } [all …]
|
/external/deqp/modules/glshared/ |
D | glsDrawTest.hpp | 116 enum Storage enum 180 static std::string storageToString (Storage storage); 189 …static AttributeSpec createAttributeArray (InputType inputType, OutputType outputType, Storage sto… 194 Storage storage; 225 Storage indexStorage; //!< used only if drawMethod = DrawElements*
|
/external/libgdx/backends/gdx-backends-gwt/src/com/badlogic/gdx/backends/gwt/ |
D | GwtFiles.java | 23 import com.google.gwt.storage.client.Storage; 27 public static final Storage LocalStorage = Storage.getLocalStorageIfSupported();
|
/external/v8/src/base/ |
D | lazy-instance.h | 146 template <typename Function, typename Storage> 147 static void Init(OnceType* once, Function function, Storage storage) { in Init() 155 template <typename Function, typename Storage> 156 static void Init(OnceType* once, Function function, Storage storage) { in Init()
|
/external/llvm/lib/Support/Windows/ |
D | TimeValue.inc | 46 struct tm Storage; 48 int Error = ::_localtime64_s(&Storage, &OurTime); 51 LT = &Storage;
|
/external/chromium-trace/catapult/trace_processor/third_party/cloudstorage/ |
D | README.chromium | 1 Name: Google Cloud Storage Client Library 6 The Google Cloud Storage client library is a client-side library that is not
|
/external/deqp/framework/opengl/ |
D | gluVarType.hpp | 170 enum Storage enum 182 const char* getStorageName (Storage storage); 258 …VariableDeclaration (const VarType& varType_, const std::string& name_, Storage storage_ = STORAGE… 265 Storage storage; 276 Storage storage;
|
/external/libcxx/test/std/utilities/memory/storage.iterator/ |
D | raw_storag_iterator.pass.cpp | 33 Storage; in main() typedef 34 Storage buffer; in main()
|