Home
last modified time | relevance | path

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

/external/eigen/test/
Dexceptions.cpp25 class ScalarWithExceptions class
28 ScalarWithExceptions() { init(); } in ScalarWithExceptions() function in ScalarWithExceptions
29 ScalarWithExceptions(const float& _v) { init(); *v = _v; } in ScalarWithExceptions() function in ScalarWithExceptions
30 ScalarWithExceptions(const ScalarWithExceptions& other) { init(); *v = *(other.v); } in ScalarWithExceptions() function in ScalarWithExceptions
31 ~ScalarWithExceptions() { in ~ScalarWithExceptions()
41 ScalarWithExceptions operator+(const ScalarWithExceptions& other) const in operator +()
46 return ScalarWithExceptions(*v+*other.v); in operator +()
49 ScalarWithExceptions operator-(const ScalarWithExceptions& other) const in operator -()
50 { return ScalarWithExceptions(*v-*other.v); } in operator -()
52 ScalarWithExceptions operator*(const ScalarWithExceptions& other) const in operator *()
[all …]