Home
last modified time | relevance | path

Searched refs:getStorage (Results 1 – 13 of 13) sorted by relevance

/external/llvm/include/llvm/Support/
DErrorOr.h111 new (getStorage()) storage_type(moveIfMoveConstructible<storage_type>(Val)); in ErrorOr()
168 getStorage()->~storage_type(); in ~ErrorOr()
176 reference get() { return *getStorage(); } in get()
184 return toPointer(getStorage());
187 const_pointer operator->() const { return toPointer(getStorage()); }
190 return *getStorage();
193 const_reference operator*() const { return *getStorage(); }
201 new (getStorage()) storage_type(*Other.getStorage()); in copyConstruct()
233 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct()
262 storage_type *getStorage() { in getStorage() function
[all …]
/external/clang/include/clang/Basic/
DPartialDiagnostic.h126 Storage *getStorage() const { in getStorage() function
162 DiagStorage = getStorage(); in AddSourceRange()
172 DiagStorage = getStorage(); in AddFixItHint()
191 DiagStorage = getStorage(); in PartialDiagnostic()
234 DiagStorage = getStorage();
269 DiagStorage = getStorage(); in AddTaggedVal()
279 DiagStorage = getStorage(); in AddString()
/external/clang/include/clang/AST/
DTemplateName.h98 NamedDecl **getStorage() { in getStorage() function
101 NamedDecl * const *getStorage() const { in getStorage() function
108 iterator begin() const { return getStorage(); } in begin()
109 iterator end() const { return getStorage() + size(); } in end()
/external/deqp/framework/randomshaders/
DrsgProgramExecutor.cpp78 VaryingStorage* getStorage (const VariableType& type, const char* name);
97 VaryingStorage* VaryingStore::getStorage (const VariableType& type, const char* name) in getStorage() function in rsg::VaryingStore
266 VaryingStorage* dst = varyingStore.getStorage(output->getType(), output->getName()); in execute()
319 const VaryingStorage* src = varyingStore.getStorage(type, input->getVariable()->getName()); in execute()
DrsgShaderGenerator.cpp104 if (outVar->getStorage() != Variable::STORAGE_SHADER_OUT) in genVertexPassthrough()
232 if (variable->getStorage() == Variable::STORAGE_SHADER_OUT) in generate()
285 switch (variable->getStorage()) in generate()
DrsgVariable.hpp58 Storage getStorage (void) const { return m_storage; } in getStorage() function in rsg::Variable
DrsgStatement.cpp231 return variable->getStorage() == Variable::STORAGE_LOCAL; in canDeclareVariable()
275 switch (m_variable->getStorage()) in DeclarationStatement()
303 bool isConst = m_variable->getStorage() == Variable::STORAGE_CONST; in DeclarationStatement()
DrsgVariableManager.hpp304 switch (entry->getVariable()->getStorage()) in operator ()()
327 return entry->getVariable()->getStorage() == Storage; in operator ()()
DrsgShader.cpp88 if (var->getStorage() == Variable::STORAGE_SHADER_OUT) in getOutputs()
DrsgVariableManager.cpp270 if (variable->getStorage() == Variable::STORAGE_SHADER_IN) in setStorage()
275 else if (variable->getStorage() == Variable::STORAGE_UNIFORM) in setStorage()
DrsgExpression.cpp51 if ((m_exprFlags & CONST_EXPR) && (entry->getVariable()->getStorage() != Variable::STORAGE_CONST)) in operator ()()
147 DE_ASSERT(entry->getVariable()->getStorage() == Variable::STORAGE_UNIFORM); in operator ()()
/external/llvm/test/CodeGen/PowerPC/
Dtoc-load-sched-bug.ll154 …e_ptr<llvm::MemoryBuffer, std::default_delete<llvm::MemoryBuffer> > >::getStorage() [T = std::uniq…
/external/clang/lib/AST/
DASTContext.cpp6444 NamedDecl **Storage = OT->getStorage(); in getOverloadedTemplateName()