Lines Matching defs:from
15 // contributors may be used to endorse or promote products derived from
125 // An IgnoredValue object can be implicitly constructed from ANY value.
150 4275 /* an exported class was derived from a class that was not exported */)
154 // are enabled). We derive it from std::runtime_error, which is for
156 // std::runtime_error inherits from std::exception, many testing
168 // Returns the optimal edits to go from 'left' to 'right'.
287 // Constructs a FloatingPoint from a raw floating-point number.
331 // from rhs. In particular, this function:
352 // Converts an integer from the sign-and-magnitude representation to
496 // Note that SuiteApiResolver inherits from T because
830 // Helper for suppressing false warning from Clang on a const char*
862 // Generates a random number from [0, range). Crashes if 'range' is
1045 void CopyArray(const T* from, size_t size, U* to);
1049 inline void CopyArray(const T& from, U* to) {
1050 *to = from;
1055 inline void CopyArray(const T (&from)[N], U (*to)[N]) {
1056 internal::CopyArray(from, N, *to);
1063 void CopyArray(const T* from, size_t size, U* to) {
1065 internal::CopyArray(from[i], to + i);
1092 // Constructs from a native array. References the source.
1097 // Constructs from a native array. Copies the source.
1350 // "else" from attaching to our "if".