OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:indefinite
(Results
1 - 2
of
2
) sorted by null
/external/chromium_org/third_party/WebKit/Source/core/svg/animation/
SVGSMILElement.cpp
389
DEFINE_STATIC_LOCAL(const AtomicString, indefiniteValue, ("
indefinite
", AtomicString::ConstructFromLiteral));
391
return SMILTime::
indefinite
();
772
DEFINE_STATIC_LOCAL(const AtomicString, indefiniteValue, ("
indefinite
", AtomicString::ConstructFromLiteral));
774
computedRepeatCount = SMILTime::
indefinite
();
792
return m_cachedMax = (result.isUnresolved() || result <= 0) ? SMILTime::
indefinite
() : result;
806
return std::min(dur(), SMILTime::
indefinite
());
834
return beginOrEnd == Begin ? SMILTime::unresolved() : SMILTime::
indefinite
();
843
// The special value "
indefinite
" does not yield an instance time in the begin list.
863
return beginOrEnd == Begin ? SMILTime::unresolved() : SMILTime::
indefinite
();
875
repeatDur = std::min(repeatDur, SMILTime::
indefinite
());
[
all
...]
SMILTime.h
41
static SMILTime
indefinite
() { return std::numeric_limits<double>::infinity(); }
function in class:blink::SMILTime
91
// Ordering of SMILTimes has to follow: finite <
indefinite
(Inf) < unresolved (NaN). The first comparison is handled by IEEE754 but
Completed in 158 milliseconds