Home
last modified time | relevance | path

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

/external/libcxx/test/std/containers/views/span.cons/
Dcontainer.pass.cpp43 constexpr T const *getV() const {return &v_;} // for checking in getV() function
87 s1.data() == val.getV() && s1.size() == 1 in testConstexprSpan()
88 && s2.data() == val.getV() && s2.size() == 1; in testConstexprSpan()
98 assert(s1.data() == val.getV() && s1.size() == 1); in testRuntimeSpan()
99 assert(s2.data() == val.getV() && s2.size() == 1); in testRuntimeSpan()
Dcontainer.fail.cpp44 constexpr const T *getV() const {return &v_;} // for checking in getV() function
/external/apache-commons-math/src/main/java/org/apache/commons/math/linear/
DSingularValueDecompositionImpl.java122 cachedV = eigenDecomposition.getV(); in SingularValueDecompositionImpl()
126 cachedU = eigenDecomposition.getV().getSubMatrix(0, m - 1, 0, p - 1); in SingularValueDecompositionImpl()
133 cachedU = eigenDecomposition.getV(); in SingularValueDecompositionImpl()
138 cachedV = eigenDecomposition.getV().getSubMatrix(0,n-1,0,p-1); in SingularValueDecompositionImpl()
193 public RealMatrix getV() throws InvalidMatrixException { in getV() method in SingularValueDecompositionImpl
203 cachedVt = getV().transpose(); in getVT()
268 return new Solver(singularValues, getUT(), getV(), getRank() == Math in getSolver()
DEigenDecomposition.java55 RealMatrix getV(); in getV() method
DSingularValueDecomposition.java93 RealMatrix getV(); in getV() method
DBiDiagonalTransformer.java169 public RealMatrix getV() { in getV() method in BiDiagonalTransformer
DEigenDecompositionImpl.java159 public RealMatrix getV() throws InvalidMatrixException { in getV() method in EigenDecompositionImpl
/external/snakeyaml/src/test/java/org/yaml/snakeyaml/issues/issue115/
DParameterizedJavaBeanTest.java37 assertEquals("ID47", beanParsed.getV()); in testAsStandalone()
53 assertEquals("Val432", issueParsed.getBean().getV()); in testAsJavaBeanProperty()
DParameterizedBean.java30 public V getV() { in getV() method in ParameterizedBean
/external/clang/test/CodeGenCXX/
Dcatch-undef-behavior.cpp437 V getV();
448 const S& s = getV(); in upcast_to_vbase()
/external/clang/include/clang/AST/
DStmtOpenMP.h1993 Expr *getV() { return cast_or_null<Expr>(*std::next(child_begin(), 3)); } in getV() function
1994 const Expr *getV() const { in getV() function
/external/clang/lib/Serialization/
DASTWriterStmt.cpp2315 Record.AddStmt(D->getV()); in VisitOMPAtomicDirective()
/external/clang/lib/CodeGen/
DCGStmtOpenMP.cpp3236 S.getV(), S.getExpr(), S.getUpdateExpr(), in EmitOMPAtomicDirective()