HomeSort by relevance Sort by last modified time
    Searched defs:Begin (Results 1 - 7 of 7) sorted by null

  /external/webkit/WebCore/svg/animation/
SVGSMILElement.h 108 enum BeginOrEnd { Begin, End };
120 // This represents conditions on elements begin or end list that need to be resolved on runtime
121 // for example <animate begin="otherElement.begin + 8s; button.click" ... />
SVGSMILElement.cpp 183 // "If no attribute is present, the default begin value (an offset-value of 0) must be evaluated."
251 std::sort(timeList.begin(), timeList.end());
303 } else if (nameString == "begin" || nameString == "end") {
331 Vector<SMILTime>& timeList = beginOrEnd == Begin ? m_beginTimes : m_endTimes;
357 parseBeginOrEnd(attr->value().string(), Begin);
364 parseBeginOrEnd(getAttribute(SVGNames::beginAttr), Begin);
582 const Vector<SMILTime>& list = beginOrEnd == Begin ? m_beginTimes : m_endTimes;
586 if (time.isIndefinite() && beginOrEnd == Begin) {
587 // "The special value "indefinite" does not yield an instance time in the begin list."
642 SMILTime tempBegin = findInstanceTime(Begin, beginAfter, true)
674 SMILTime begin; local
691 SMILTime begin; local
    [all...]
  /external/gtest/include/gtest/internal/
gtest-param-util.h 168 virtual ParamIteratorInterface<T>* Begin() const = 0;
190 iterator begin() const { return iterator(impl_->Begin()); } function in class:testing::internal::ParamGenerator
204 RangeGenerator(T begin, T end, IncrementT step)
205 : begin_(begin), end_(end),
206 step_(step), end_index_(CalculateEndIndex(begin, end, step)) {}
209 virtual ParamIteratorInterface<T>* Begin() const {
257 static int CalculateEndIndex(const T& begin,
261 for (T i = begin; i < end; i = i + step)
283 ValuesInIteratorRangeGenerator(ForwardIterator begin, ForwardIterator end
    [all...]
gtest-param-util-generated.h     [all...]
  /external/protobuf/gtest/include/gtest/internal/
gtest-param-util.h 168 virtual ParamIteratorInterface<T>* Begin() const = 0;
190 iterator begin() const { return iterator(impl_->Begin()); } function in class:testing::internal::ParamGenerator
204 RangeGenerator(T begin, T end, IncrementT step)
205 : begin_(begin), end_(end),
206 step_(step), end_index_(CalculateEndIndex(begin, end, step)) {}
209 virtual ParamIteratorInterface<T>* Begin() const {
260 static int CalculateEndIndex(const T& begin,
264 for (T i = begin; i < end; i = i + step)
289 ValuesInIteratorRangeGenerator(ForwardIterator begin, ForwardIterator end
    [all...]
gtest-param-util-generated.h     [all...]
  /external/webkit/WebCore/css/
CSSSelector.h 88 Begin, // css3: E[foo^="bar"]

Completed in 177 milliseconds