OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:VERIFY
(Results
51 - 75
of
173
) sorted by null
1
2
3
4
5
6
7
/external/eigen/test/
qr_fullpivoting.cpp
32
VERIFY
(!qr.isInjective());
33
VERIFY
(!qr.isInvertible());
34
VERIFY
(!qr.isSurjective());
93
VERIFY
(qr.isInjective());
94
VERIFY
(qr.isInvertible());
95
VERIFY
(qr.isSurjective());
qtvector.cpp
47
VERIFY
((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(MatrixType));
56
VERIFY
(v[i]==w[(i-23)%w.size()]);
82
VERIFY
((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(TransformType));
91
VERIFY
(v[i].matrix()==w[(i-23)%w.size()].matrix());
117
VERIFY
((size_t)&(v[22]) == (size_t)&(v[21]) + sizeof(QuaternionType));
126
VERIFY
(v[i].coeffs()==w[(i-23)%w.size()].coeffs());
stdvector.cpp
37
VERIFY
((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(MatrixType));
46
VERIFY
(v[i]==w[(i-23)%w.size()]);
72
VERIFY
((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(TransformType));
81
VERIFY
(v[i].matrix()==w[(i-23)%w.size()].matrix());
107
VERIFY
((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(QuaternionType));
116
VERIFY
(v[i].coeffs()==w[(i-23)%w.size()].coeffs());
stdvector_overload.cpp
51
VERIFY
((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(MatrixType));
60
VERIFY
(v[i]==w[(i-23)%w.size()]);
86
VERIFY
((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(TransformType));
95
VERIFY
(v[i].matrix()==w[(i-23)%w.size()].matrix());
121
VERIFY
((internal::UIntPtr)&(v[22]) == (internal::UIntPtr)&(v[21]) + sizeof(QuaternionType));
130
VERIFY
(v[i].coeffs()==w[(i-23)%w.size()].coeffs());
sparse_solver.h
57
VERIFY
(solver.info() == Success);
65
VERIFY
(oldb.isApprox(b) && "sparse solver testing: the rhs should not be modified!");
66
VERIFY
(x.isApprox(refX,test_precision<Scalar>()));
70
VERIFY
(solver.info() == Success && "solving failed when using analyzePattern/factorize API");
71
VERIFY
(oldb.isApprox(b) && "sparse solver testing: the rhs should not be modified!");
72
VERIFY
(x.isApprox(refX,test_precision<Scalar>()));
78
VERIFY
(solver.info() == Success && "factorization failed when using analyzePattern/factorize API");
80
VERIFY
(solver.info() == Success && "solving failed when using analyzePattern/factorize API");
81
VERIFY
(oldb.isApprox(b) && "sparse solver testing: the rhs should not be modified!");
82
VERIFY
(x.isApprox(refX,test_precision<Scalar>()))
[
all
...]
qr_colpivoting.cpp
31
VERIFY
(rank == cod.rank());
32
VERIFY
(cols - cod.rank() == cod.dimensionOfKernel());
33
VERIFY
(!cod.isInjective());
34
VERIFY
(!cod.isInvertible());
35
VERIFY
(!cod.isSurjective());
56
//
Verify
that we get the same minimum-norm solution as the SVD.
76
VERIFY
(rank == cod.rank());
77
VERIFY
(Cols - cod.rank() == cod.dimensionOfKernel());
78
VERIFY
(cod.isInjective() == (rank == Rows));
79
VERIFY
(cod.isSurjective() == (rank == Cols))
[
all
...]
ref.cpp
144
//
verify
that ref-to-const don't have LvalueBit
146
VERIFY
( !(internal::traits<Ref<ConstPlainObjectType> >::Flags & LvalueBit) );
147
VERIFY
( !(internal::traits<Ref<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) );
148
VERIFY
( !(Ref<ConstPlainObjectType>::Flags & LvalueBit) );
149
VERIFY
( !(Ref<ConstPlainObjectType, Aligned>::Flags & LvalueBit) );
246
VERIFY
( test_ref_overload_fun1(Ad)==1 );
247
VERIFY
( test_ref_overload_fun1(rAd)==2 );
250
VERIFY
( test_ref_overload_fun2(Ad)==4 );
251
VERIFY
( test_ref_overload_fun2(Ad+Bd)==4 );
252
VERIFY
( test_ref_overload_fun2(Af+Bf)==5 )
[
all
...]
schur_real.cpp
24
VERIFY
(T(row,col) == Scalar(0));
32
VERIFY
(row == size-1 || T(row+1,row) == 0);
35
VERIFY
(4 * det > tr * tr);
geo_quaternion.cpp
39
VERIFY
(abs(q.norm() - 1) < largeEps);
40
if(theta_tot==0)
VERIFY
(theta_tot==0);
41
else
VERIFY
(abs(theta - t * theta_tot) < largeEps);
98
VERIFY
( (q2*q1).isApprox(q1*q2, largeEps)
267
//
verify
that map-to-const don't have LvalueBit
269
VERIFY
( !(internal::traits<Map<ConstPlainObjectType> >::Flags & LvalueBit) );
270
VERIFY
( !(internal::traits<Map<ConstPlainObjectType, Aligned> >::Flags & LvalueBit) );
271
VERIFY
( !(Map<ConstPlainObjectType>::Flags & LvalueBit) );
272
VERIFY
( !(Map<ConstPlainObjectType, Aligned>::Flags & LvalueBit) );
swap.cpp
50
VERIFY
(m1.data()==d2);
51
VERIFY
(m2.data()==d1);
conservative_resize.cpp
55
VERIFY
( rows<=50 || m.block(50,0,rows-50,cols).sum() == Scalar(0) );
56
VERIFY
( cols<=50 || m.block(0,50,rows,cols-50).sum() == Scalar(0) );
104
VERIFY
( size<=50 || m.segment(50,size-50).sum() == Scalar(0) );
109
VERIFY
( size<=50 || m.segment(50,size-50).sum() == Scalar(0) );
sparse_vector.cpp
45
VERIFY
(int(nonzerocoords.size()) == v1.nonZeros());
49
VERIFY
(nonzerocoords[j]==it.index());
50
VERIFY
(it.value()==v1.coeff(it.index()));
51
VERIFY
(it.value()==refV1.coeff(it.index()));
spqr_support.cpp
58
VERIFY
(x.isApprox(refX,test_precision<Scalar>()));
adjoint.cpp
19
VERIFY
(test_isApproxWithRef((s1 * v1 + s2 * v2).dot(v3), numext::conj(s1) * v1.dot(v3) + numext::conj(s2) * v2.dot(v3), 0));
20
VERIFY
(test_isApproxWithRef(v3.dot(s1 * v1 + s2 * v2), s1*v3.dot(v1)+s2*v3.dot(v2), 0));
23
VERIFY
(test_isApproxWithRef(v1.dot(square * v2), (square.adjoint() * v1).dot(v2), 0));
34
VERIFY
(test_isApproxWithRef((s1 * v1 + s2 * v2).dot(v3), numext::conj(s1) * v1.dot(v3) + numext::conj(s2) * v2.dot(v3), ref));
35
VERIFY
(test_isApproxWithRef(v3.dot(s1 * v1 + s2 * v2), s1*v3.dot(v1)+s2*v3.dot(v2), ref));
50
VERIFY
( (v1*very_small).norm() == 0 );
59
VERIFY
(internal::isMuchSmallerThan(abs(v1.dot(square * v2) - (square.adjoint() * v1).dot(v2)), ref, test_precision<Scalar>()));
/external/eigen/unsupported/test/
cxx11_runqueue.cpp
32
VERIFY
(q.Empty());
101
VERIFY
(q.Empty());
109
VERIFY
(q.Empty());
148
VERIFY
(!q.Empty());
226
VERIFY
(q.Empty());
227
VERIFY
(total.load() == 0);
EulerAngles.cpp
82
VERIFY
(alphaRangeStart <= eabis[0] && eabis[0] <= alphaRangeEnd);
83
VERIFY
(betaRangeStart <= eabis[1] && eabis[1] <= betaRangeEnd);
84
VERIFY
(gammaRangeStart <= eabis[2] && eabis[2] <= gammaRangeEnd);
101
VERIFY_IS_APPROX(eabis, eabis2);//
Verify
that our estimation is the same as m.eulerAngles() is
112
VERIFY
((ea-eabis).norm() <= test_precision<Scalar>());
115
VERIFY
(0 < eabis[0] || test_isMuchSmallerThan(eabis[0], Scalar(1)));
121
VERIFY_IS_APPROX(eabis, eabis2);//
Verify
that the euler angles are still the same
mpreal_support.cpp
36
VERIFY
(Eigen::internal::isApprox(A.array().abs2().sum(), A.squaredNorm()));
56
VERIFY
( (S.selfadjointView<Lower>() * eig.eigenvectors()).isApprox(eig.eigenvectors() * eig.eigenvalues().asDiagonal(), NumTraits<mpreal>::dummy_precision()*1e3) );
polynomialutils.cpp
46
VERIFY
( evalToZero );
87
VERIFY
( eval );
/external/Reactive-Extensions/RxCpp/Ix/CPP/unittest/
testbench.cpp
296
VERIFY
((std::is_same<decltype(q[0]), bool>::value));
303
VERIFY
(q.contains(4));
304
VERIFY
(!q.contains(5));
319
VERIFY
(thrown);
336
VERIFY
(!dc.empty());
341
VERIFY
(dc.empty());
359
VERIFY
(!cur.empty());
363
VERIFY
(!cur.empty());
367
VERIFY
(!cur.empty());
371
VERIFY
(!cur.empty())
[
all
...]
/external/webrtc/webrtc/base/
macsocketserver.cc
61
VERIFY
(1 == sockets_.erase(s)); // found 1
237
VERIFY
(noErr == CreateEvent(NULL, kEventClassSocketServer, kEventWakeUp, 0,
316
VERIFY
(noErr == InstallApplicationEventHandler(
321
VERIFY
(noErr == InstallEventLoopTimer(GetMainEventLoop(),
375
VERIFY
(noErr == CreateEvent(NULL, kEventClassSocketServer, kEventWakeUp, 0,
/external/autotest/scheduler/
monitor_db_cleanup_test.py
46
self.assertEquals(tasks[0].task, models.SpecialTask.Task.
VERIFY
)
74
self.assertEquals(tasks[0].task, models.SpecialTask.Task.
VERIFY
)
75
self.assertEquals(tasks[1].task, models.SpecialTask.Task.
VERIFY
)
/external/webrtc/talk/media/webrtc/
webrtcvoe.h
50
//
VERIFY
, to ensure that there are no leaks at shutdown
51
~scoped_voe_engine() { if (ptr)
VERIFY
(webrtc::VoiceEngine::Delete(ptr)); }
55
VERIFY
(webrtc::VoiceEngine::Delete(ptr));
/external/clang/test/Preprocessor/
feature_tests.c
1
// RUN: %clang_cc1 %s -triple=i686-apple-darwin9 -
verify
-DVERIFY
57
#ifdef
VERIFY
/external/jacoco/jacoco-maven-plugin/src/org/jacoco/maven/
ReportITMojo.java
34
@Mojo(name = "report-integration", defaultPhase = LifecyclePhase.
VERIFY
, threadSafe = true)
ReportMojo.java
29
@Mojo(name = "report", defaultPhase = LifecyclePhase.
VERIFY
, threadSafe = true)
Completed in 1111 milliseconds
1
2
3
4
5
6
7