Searched refs:Ref (Results 1 - 25 of 288) sorted by relevance

1234567891011>>

/external/eigen/failtest/
H A Dref_3.cpp6 void call_ref(Ref<VectorXf> a) { }
8 void call_ref(const Ref<const VectorXf> &a) { }
H A Dsparse_ref_3.cpp6 void call_ref(Ref<SparseMatrix<float> > a) { }
8 void call_ref(const Ref<const SparseMatrix<float> > &a) { }
H A Dsparse_ref_4.cpp5 void call_ref(Ref<SparseMatrix<float> > a) {}
H A Dref_1.cpp11 void call_ref(Ref<VectorXf> a) { }
H A Dref_2.cpp5 void call_ref(Ref<VectorXf> a) { }
H A Dref_4.cpp5 void call_ref(Ref<MatrixXf,0,OuterStride<> > a) {}
H A Dref_5.cpp5 void call_ref(Ref<VectorXf> a) { }
H A Dsparse_ref_1.cpp11 void call_ref(Ref<SparseMatrix<float> > a) { }
H A Dsparse_ref_2.cpp5 void call_ref(Ref<SparseMatrix<float> > a) { }
H A Dsparse_ref_5.cpp5 void call_ref(Ref<SparseMatrix<float> > a) { }
/external/llvm/lib/DebugInfo/CodeView/
H A DStreamWriter.cpp54 Error StreamWriter::writeStreamRef(StreamRef Ref) { argument
55 if (auto EC = writeStreamRef(Ref, Ref.getLength()))
57 Offset += Ref.getLength();
61 Error StreamWriter::writeStreamRef(StreamRef Ref, uint32_t Length) { argument
62 Ref = Ref.slice(0, Length);
64 StreamReader SrcReader(Ref);
/external/robolectric-shadows/resources/src/main/java/org/robolectric/res/android/
H A DRef.java3 public class Ref<T> { class
7 public Ref(T t) { method in class:Ref
21 return "Ref<" + t + '>';
/external/llvm/include/llvm/IR/
H A DTrackingMDRef.h101 TrackingMDRef Ref; member in class:llvm::TypedTrackingMDRef
105 explicit TypedTrackingMDRef(T *MD) : Ref(static_cast<Metadata *>(MD)) {}
107 TypedTrackingMDRef(TypedTrackingMDRef &&X) : Ref(std::move(X.Ref)) {}
108 TypedTrackingMDRef(const TypedTrackingMDRef &X) : Ref(X.Ref) {}
110 Ref = std::move(X.Ref);
114 Ref = X.Ref;
[all...]
/external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
H A DTrackingMDRef.h101 TrackingMDRef Ref; member in class:llvm::TypedTrackingMDRef
105 explicit TypedTrackingMDRef(T *MD) : Ref(static_cast<Metadata *>(MD)) {}
107 TypedTrackingMDRef(TypedTrackingMDRef &&X) : Ref(std::move(X.Ref)) {}
108 TypedTrackingMDRef(const TypedTrackingMDRef &X) : Ref(X.Ref) {}
110 Ref = std::move(X.Ref);
114 Ref = X.Ref;
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DSparseRef.h16 StandardCompressedFormat = 2 /**< used by Ref<SparseMatrix> to specify whether the input storage must be in standard compressed form */
24 struct traits<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
44 struct traits<Ref<const SparseMatrix<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
45 : public traits<Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
53 struct traits<Ref<SparseVector<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
72 struct traits<Ref<const SparseVector<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
73 : public traits<Ref<SparseVector<MatScalar,MatOptions,MatIndex>, _Options, _StrideType> >
119 * \sa class Ref
123 class Ref<SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType > class in namespace:Eigen
124 : public internal::SparseRefBase<Ref<SparseMatri
145 inline Ref(SparseMatrix<MatScalar,OtherOptions,MatIndex>& expr) function in class:Eigen::Ref
153 inline Ref(MappedSparseMatrix<MatScalar,OtherOptions,MatIndex>& expr) function in class:Eigen::Ref
161 inline Ref(const SparseCompressedBase<Derived>& expr) function in class:Eigen::Ref
177 class Ref<const SparseMatrix<MatScalar,MatOptions,MatIndex>, Options, StrideType> class in namespace:Eigen
188 inline Ref(const SparseMatrixBase<Derived>& expr) : m_hasCopy(false) function in class:Eigen::Ref
193 inline Ref(const Ref& other) : Base(other), m_hasCopy(false) { function in class:Eigen::Ref
198 inline Ref(const RefBase<OtherRef>& other) : m_hasCopy(false) { function in class:Eigen::Ref
254 class Ref<SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType > class in namespace:Eigen
273 inline Ref(SparseVector<MatScalar,OtherOptions,MatIndex>& expr) function in class:Eigen::Ref
280 inline Ref(const SparseCompressedBase<Derived>& expr) function in class:Eigen::Ref
295 class Ref<const SparseVector<MatScalar,MatOptions,MatIndex>, Options, StrideType> class in namespace:Eigen
306 inline Ref(const SparseMatrixBase<Derived>& expr) : m_hasCopy(false) function in class:Eigen::Ref
311 inline Ref(const Ref& other) : Base(other), m_hasCopy(false) { function in class:Eigen::Ref
316 inline Ref(const RefBase<OtherRef>& other) : m_hasCopy(false) { function in class:Eigen::Ref
[all...]
/external/eigen/test/
H A Dinplace_decomposition.cpp15 // This file test inplace decomposition through Ref<>, as supported by Cholesky, LU, and QR decompositions.
86 CALL_SUBTEST_1(( inplace<LLT<Ref<MatrixXd> >, MatrixXd>(true,true) ));
87 CALL_SUBTEST_1(( inplace<LLT<Ref<Matrix4d> >, Matrix4d>(true,true) ));
89 CALL_SUBTEST_2(( inplace<LDLT<Ref<MatrixXd> >, MatrixXd>(true,true) ));
90 CALL_SUBTEST_2(( inplace<LDLT<Ref<Matrix4d> >, Matrix4d>(true,true) ));
92 CALL_SUBTEST_3(( inplace<PartialPivLU<Ref<MatrixXd> >, MatrixXd>(true,false) ));
93 CALL_SUBTEST_3(( inplace<PartialPivLU<Ref<Matrix4d> >, Matrix4d>(true,false) ));
95 CALL_SUBTEST_4(( inplace<FullPivLU<Ref<MatrixXd> >, MatrixXd>(true,false) ));
96 CALL_SUBTEST_4(( inplace<FullPivLU<Ref<Matrix4d> >, Matrix4d>(true,false) ));
98 CALL_SUBTEST_5(( inplace<HouseholderQR<Ref<MatrixX
[all...]
H A Dis_same_dense.cpp18 Ref<ColMatrixXd> ref_m1(m1);
19 Ref<const ColMatrixXd> const_ref_m1(m1);
28 Ref<const ColMatrixXd> const_ref_m1_row(m1.row(1));
31 Ref<const ColMatrixXd> const_ref_m1_col(m1.col(1));
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/path.modifiers/
H A Dreplace_extension.pass.cpp62 path& Ref = (p.replace_extension(TC.extension)); local
64 assert(&Ref == &p);
69 path& Ref = (p.replace_extension()); local
71 assert(&Ref == &p);
H A Dmake_preferred.pass.cpp51 path& Ref = (p.make_preferred()); local
53 assert(&Ref == &p);
H A Dremove_filename.pass.cpp67 path& Ref = (p.remove_filename()); local
69 assert(&Ref == &p);
H A Dreplace_filename.pass.cpp57 path& Ref = (p.replace_filename(TC.filename)); local
59 assert(&Ref == &p);
/external/tensorflow/tensorflow/core/framework/
H A Dtensor_reference.cc22 if (buf_) buf_->Ref();
/external/libcxx/test/std/containers/sequences/vector.bool/
H A Demplace_back.pass.cpp28 typedef C::reference Ref; typedef
29 Ref r1 = c.emplace_back();
35 Ref r2 = c.emplace_back(true);
62 typedef C::reference Ref; typedef
63 Ref r1 = c.emplace_back();
69 Ref r2 = c.emplace_back(true);
/external/libcxx/test/std/experimental/filesystem/class.path/path.member/
H A Dpath.concat.pass.cpp178 path& Ref = (LHS += RHS); local
180 assert(&Ref == &LHS);
185 path& Ref = LHS.concat(RHS); local
187 assert(&Ref == &LHS);
193 path& Ref = (LHS += RHS); local
195 assert(&Ref == &LHS);
200 path& Ref = LHS.concat(RHS); local
202 assert(&Ref == &LHS);
208 path& Ref = (LHS += RHS); local
210 assert(&Ref
215 path& Ref = LHS.concat(RHS); local
222 path& Ref = LHS.concat(RHS, StrEnd(RHS)); local
230 path& Ref = (LHS += RHS); local
236 path& Ref = LHS.concat(RHS); local
244 path& Ref = LHS.concat(RHS, REnd); local
262 path& Ref = (LHS += R); local
337 path& Ref = (LHS += RHS); local
344 path& Ref = (LHS += RHS); local
362 path& Ref = (LHS += RHS); local
374 path& Ref = (LHS += RHS); local
[all...]
H A Dpath.append.pass.cpp177 path& Ref = (LHS /= RHS); local
179 assert(&Ref == &LHS);
184 path& Ref = LHS.append(RHS); local
186 assert(&Ref == &LHS);
192 path& Ref = (LHS /= RHS); local
194 assert(&Ref == &LHS);
199 path& Ref = LHS.append(RHS); local
201 assert(&Ref == &LHS);
207 path& Ref = (LHS /= RHS); local
209 assert(&Ref
214 path& Ref = LHS.append(RHS); local
221 path& Ref = LHS.append(RHS, StrEnd(RHS)); local
229 path& Ref = (LHS /= RHS); local
235 path& Ref = LHS.append(RHS); local
243 path& Ref = LHS.append(RHS, REnd); local
310 path& Ref = (LHS /= RHS); local
[all...]

Completed in 3122 milliseconds

1234567891011>>