OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsNegInf
(Results
1 - 3
of
3
) sorted by null
/external/protobuf/src/google/protobuf/stubs/
mathlimits.h
124
static bool
IsNegInf
(const Type x);
163
static bool
IsNegInf
(const Type /*x*/) { return false; }
230
static bool
IsNegInf
(const Type x) { return _fpclass(x) == _FPCLASS_NINF; }
237
static bool
IsNegInf
(const Type x) { return isinf(x) && x < 0; }
/external/protobuf/src/google/protobuf/util/internal/
utility.cc
327
if (MathLimits<double>::
IsNegInf
(value)) return "-Infinity";
/external/protobuf/python/google/protobuf/internal/
message_test.py
87
def
IsNegInf
(val):
178
self.assertTrue(
IsNegInf
(golden_message.optional_float))
179
self.assertTrue(
IsNegInf
(golden_message.optional_double))
180
self.assertTrue(
IsNegInf
(golden_message.repeated_float[0]))
181
self.assertTrue(
IsNegInf
(golden_message.repeated_double[0]))
222
self.assertTrue(
IsNegInf
(golden_message.packed_float[0]))
223
self.assertTrue(
IsNegInf
(golden_message.packed_double[0]))
[
all
...]
Completed in 211 milliseconds