HomeSort by relevance Sort by last modified time
    Searched refs:functor (Results 1 - 5 of 5) sorted by null

  /external/webkit/WebCore/css/
CSSSelectorList.cpp 93 template <typename Functor>
94 static bool forEachTagSelector(Functor& functor, CSSSelector* selector)
99 if (functor(selector))
102 if (forEachTagSelector(functor, simpleSelector))
110 template <typename Functor>
111 static bool forEachSelector(Functor& functor, const CSSSelectorList* selectorList)
114 if (forEachTagSelector(functor, selector))
135 SelectorNeedsNamespaceResolutionFunctor functor; local
    [all...]
  /external/webkit/JavaScriptCore/wrec/
WRECParser.cpp 88 GeneratePatternCharacterFunctor functor(m_sequence.last());
89 m_generator.generateGreedyQuantifier(m_failures, functor, quantifier.min, quantifier.max);
94 GeneratePatternCharacterFunctor functor(m_sequence.last());
95 m_generator.generateNonGreedyQuantifier(m_failures, functor, quantifier.min, quantifier.max);
187 GenerateCharacterClassFunctor functor(&charClass, invert);
188 m_generator.generateGreedyQuantifier(failures, functor, q.min, q.max);
193 GenerateCharacterClassFunctor functor(&charClass, invert);
194 m_generator.generateNonGreedyQuantifier(failures, functor, q.min, q.max);
WRECGenerator.cpp 133 GenerateBackreferenceFunctor functor(subpatternId);
140 generateGreedyQuantifier(failures, functor, min, max);
142 generateNonGreedyQuantifier(failures, functor, min, max);
147 void Generator::generateNonGreedyQuantifier(JumpList& failures, GenerateAtomFunctor& functor, unsigned min, unsigned max)
172 functor.generateAtom(this, atomFailedList);
191 void Generator::generateGreedyQuantifier(JumpList& failures, GenerateAtomFunctor& functor, unsigned min, unsigned max)
205 functor.generateAtom(this, doneReadingAtomsList);
224 functor.backtrack(this);
WRECGenerator.h 96 void generateGreedyQuantifier(JumpList& failures, GenerateAtomFunctor& functor, unsigned min, unsigned max);
97 void generateNonGreedyQuantifier(JumpList& failures, GenerateAtomFunctor& functor, unsigned min, unsigned max);
  /external/gtest/src/
gtest-internal-inl.h 372 // The parameter 'predicate' is a Boolean function or functor that
374 template <typename P> // P is the type of the predicate function/functor
388 // Applies a function/functor to each element in the list. The
389 // parameter 'functor' is a function/functor that accepts a 'const
392 template <typename F> // F is the type of the function/functor
393 void ForEach(F functor) const {
397 functor(node->element());
403 // function/functor that accepts a 'const E &', where E is the
405 template <typename P> // P is the type of the predicate function/functor
    [all...]

Completed in 644 milliseconds