OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:IsPosInf
(Results
1 - 3
of
3
) sorted by null
/external/protobuf/src/google/protobuf/stubs/
mathlimits.h
123
static bool
IsPosInf
(const Type x);
162
static bool
IsPosInf
(const Type /*x*/) { return false; } \
229
static bool
IsPosInf
(const Type x) { return _fpclass(x) == _FPCLASS_PINF; } \
236
static bool
IsPosInf
(const Type x) { return isinf(x) && x > 0; } \
/external/protobuf/src/google/protobuf/util/internal/
utility.cc
326
if (MathLimits<double>::
IsPosInf
(value)) return "Infinity";
/external/protobuf/python/google/protobuf/internal/
message_test.py
85
def
IsPosInf
(val):
158
self.assertTrue(
IsPosInf
(golden_message.optional_float))
159
self.assertTrue(
IsPosInf
(golden_message.optional_double))
160
self.assertTrue(
IsPosInf
(golden_message.repeated_float[0]))
161
self.assertTrue(
IsPosInf
(golden_message.repeated_double[0]))
213
self.assertTrue(
IsPosInf
(golden_message.packed_float[0]))
214
self.assertTrue(
IsPosInf
(golden_message.packed_double[0]))
[
all
...]
Completed in 329 milliseconds