/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Support/ |
D | ErrorOr.h | 92 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError() 149 getStorage()->~storage_type(); in ~ErrorOr() 157 reference get() { return *getStorage(); } in get() 165 return toPointer(getStorage()); 168 const_pointer operator->() const { return toPointer(getStorage()); } 171 return *getStorage(); 174 const_reference operator*() const { return *getStorage(); } 182 new (getStorage()) storage_type(*Other.getStorage()); in copyConstruct() 214 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct() 243 storage_type *getStorage() { in getStorage() function [all …]
|
D | Error.h | 477 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError() 512 getStorage()->~storage_type(); in ~Expected() 528 return *getStorage(); in get() 556 return toPointer(getStorage()); 562 return toPointer(getStorage()); 568 return *getStorage(); 574 return *getStorage(); 596 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct() 619 storage_type *getStorage() { in getStorage() function 624 const storage_type *getStorage() const { in getStorage() function
|
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/ |
D | ErrorOr.h | 101 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError() 158 getStorage()->~storage_type(); in ~ErrorOr() 166 reference get() { return *getStorage(); } in get() 174 return toPointer(getStorage()); 177 const_pointer operator->() const { return toPointer(getStorage()); } 180 return *getStorage(); 183 const_reference operator*() const { return *getStorage(); } 191 new (getStorage()) storage_type(*Other.getStorage()); in copyConstruct() 223 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct() 252 storage_type *getStorage() { in getStorage() function [all …]
|
D | Error.h | 678 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError() 713 getStorage()->~storage_type(); in ~Expected() 729 return *getStorage(); in get() 757 return toPointer(getStorage()); 763 return toPointer(getStorage()); 769 return *getStorage(); 775 return *getStorage(); 797 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct() 820 storage_type *getStorage() { in getStorage() function 825 const storage_type *getStorage() const { in getStorage() function
|
/external/llvm/include/llvm/Support/ |
D | ErrorOr.h | 101 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError() 158 getStorage()->~storage_type(); in ~ErrorOr() 166 reference get() { return *getStorage(); } in get() 174 return toPointer(getStorage()); 177 const_pointer operator->() const { return toPointer(getStorage()); } 180 return *getStorage(); 183 const_reference operator*() const { return *getStorage(); } 191 new (getStorage()) storage_type(*Other.getStorage()); in copyConstruct() 223 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct() 252 storage_type *getStorage() { in getStorage() function [all …]
|
D | Error.h | 642 new (getStorage()) storage_type(std::forward<OtherT>(Val)); in HasError() 677 getStorage()->~storage_type(); in ~Expected() 693 return *getStorage(); in get() 721 return toPointer(getStorage()); 727 return toPointer(getStorage()); 733 return *getStorage(); 739 return *getStorage(); 762 new (getStorage()) storage_type(std::move(*Other.getStorage())); in moveConstruct() 785 storage_type *getStorage() { in getStorage() function 790 const storage_type *getStorage() const { in getStorage() function
|
/external/clang/include/clang/Basic/ |
D | PartialDiagnostic.h | 126 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/javaparser/javaparser-testing/src/test/java/com/github/javaparser/ast/ |
D | CompilationUnitTest.java | 52 Path sourceRoot1 = cu.getStorage().get().getSourceRoot(); in testGetSourceRoot() 62 cu.getStorage().get().getSourceRoot(); in testGetSourceRootWithBadPackageDeclaration() 71 Path sourceRoot1 = cu.getStorage().get().getSourceRoot(); in testGetSourceRootInDefaultPackage()
|
/external/clang/include/clang/AST/ |
D | TemplateName.h | 99 NamedDecl **getStorage() { in getStorage() function 102 NamedDecl * const *getStorage() const { in getStorage() function 109 iterator begin() const { return getStorage(); } in begin() 110 iterator end() const { return getStorage() + size(); } in end()
|
/external/deqp/framework/randomshaders/ |
D | rsgProgramExecutor.cpp | 78 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()
|
D | rsgShaderGenerator.cpp | 104 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()
|
D | rsgVariable.hpp | 58 Storage getStorage (void) const { return m_storage; } in getStorage() function in rsg::Variable
|
D | rsgStatement.cpp | 231 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()
|
D | rsgVariableManager.hpp | 304 switch (entry->getVariable()->getStorage()) in operator ()() 327 return entry->getVariable()->getStorage() == Storage; in operator ()()
|
D | rsgShader.cpp | 88 if (var->getStorage() == Variable::STORAGE_SHADER_OUT) in getOutputs()
|
D | rsgVariableManager.cpp | 270 if (variable->getStorage() == Variable::STORAGE_SHADER_IN) in setStorage() 275 else if (variable->getStorage() == Variable::STORAGE_UNIFORM) in setStorage()
|
D | rsgExpression.cpp | 51 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/javaparser/javaparser-testing/src/test/java/com/github/javaparser/utils/ |
D | SourceRootTest.java | 27 …assertTrue(parseResults.stream().anyMatch(cu -> cu.getResult().get().getStorage().get().getPath().… in parseTestDirectory()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/utils/ |
D | SourceRoot.java | 399 if (compilationUnit.getStorage().isPresent()) { in add() 400 final Path path = compilationUnit.getStorage().get().getPath(); in add() 421 cu.getStorage().get().save(printer); in save()
|
/external/javaparser/javaparser-symbol-solver-core/src/main/java/com/github/javaparser/symbolsolver/utils/ |
D | SymbolSolverQuickSetup.java | 112 Optional<Path> root = JavaParser.parse(file.toFile()).getStorage() in visitFile()
|
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/ |
D | CompilationUnit.java | 475 return getStorage().map(Storage::getFileName).map(Utils::removeFileExtension); in getPrimaryTypeName() 562 public Optional<Storage> getStorage() { in getStorage() method in CompilationUnit
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/CodeGen/PowerPC/ |
D | toc-load-sched-bug.ll | 154 …e_ptr<llvm::MemoryBuffer, std::default_delete<llvm::MemoryBuffer> > >::getStorage() [T = std::uniq…
|
/external/llvm/test/CodeGen/PowerPC/ |
D | toc-load-sched-bug.ll | 154 …e_ptr<llvm::MemoryBuffer, std::default_delete<llvm::MemoryBuffer> > >::getStorage() [T = std::uniq…
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 6542 NamedDecl **Storage = OT->getStorage(); in getOverloadedTemplateName()
|