Searched refs:functor (Results 1 - 10 of 10) sorted by relevance

/external/webkit/Source/WebCore/css/
H A DCSSSelectorList.cpp118 static bool forEachTagSelector(Functor& functor, CSSSelector* selector) argument
123 if (functor(selector))
127 if (forEachTagSelector(functor, subSelector))
137 static bool forEachSelector(Functor& functor, const CSSSelectorList* selectorList) argument
140 if (forEachTagSelector(functor, selector))
161 SelectorNeedsNamespaceResolutionFunctor functor; local
162 return forEachSelector(functor, this);
175 SelectorHasUnknownPseudoElementFunctor functor; local
176 return forEachSelector(functor, this);
/external/webkit/Source/JavaScriptCore/heap/
H A DHeap.h171 template <typename Functor> inline void Heap::forEach(Functor& functor) argument
173 m_markedSpace.forEach(functor);
H A DMarkedBlock.h213 template <typename Functor> inline void MarkedBlock::forEach(Functor& functor) argument
218 functor(reinterpret_cast<JSCell*>(&atoms()[i]));
H A DMarkedSpace.h152 template <typename Functor> inline void MarkedSpace::forEach(Functor& functor) argument
156 (*it)->forEach(functor);
/external/webkit/Source/WebKit/android/nav/
H A DWebView.cpp354 // Call through JNI to ask Java side to update the rectangles for GL functor.
550 void setFunctor(Functor* functor) { argument
552 m_glDrawFunctor = functor;
818 // return 1 if invalidation needed, 2 to request non-drawing functor callback, 0 otherwise
894 GLDrawFunctor* functor = (GLDrawFunctor*) wvInstance->getFunctor(); local
895 if (!functor) {
896 functor = new GLDrawFunctor(wvInstance, &android::WebView::drawGL,
898 wvInstance->setFunctor((Functor*) functor);
900 functor->updateInvScreenRect(invScreenRect);
901 functor
924 GLDrawFunctor* functor = (GLDrawFunctor*) wvInstance->getFunctor(); local
[all...]
/external/chromium/sdch/open-vcdiff/src/gtest/src/
H A Dgtest-internal-inl.h310 // The parameter 'predicate' is a Boolean function or functor that
312 template <typename P> // P is the type of the predicate function/functor
326 // Applies a function/functor to each element in the list. The
327 // parameter 'functor' is a function/functor that accepts a 'const
330 template <typename F> // F is the type of the function/functor
331 void ForEach(F functor) const {
335 functor(node->element());
341 // function/functor that accepts a 'const E &', where E is the
343 template <typename P> // P is the type of the predicate function/functor
[all...]
/external/chromium/testing/gtest/src/
H A Dgtest-internal-inl.h277 // Applies a function/functor to each element in the container.
279 void ForEach(const Container& c, Functor functor) { argument
280 std::for_each(c.begin(), c.end(), functor);
321 // functor.
/external/gtest/src/
H A Dgtest-internal-inl.h284 // Applies a function/functor to each element in the container.
286 void ForEach(const Container& c, Functor functor) { argument
287 std::for_each(c.begin(), c.end(), functor);
328 // functor.
/external/llvm/utils/unittest/googletest/include/gtest/internal/
H A Dgtest-internal-inl.h284 // Applies a function/functor to each element in the container.
286 void ForEach(const Container& c, Functor functor) { argument
287 std::for_each(c.begin(), c.end(), functor);
328 // functor.
/external/protobuf/gtest/src/
H A Dgtest-internal-inl.h323 // The parameter 'predicate' is a Boolean function or functor that
325 template <typename P> // P is the type of the predicate function/functor
337 // Applies a function/functor to each element in the Vector. The
338 // parameter 'functor' is a function/functor that accepts a 'const
341 template <typename F> // F is the type of the function/functor
342 void ForEach(F functor) const {
344 functor(*(elements_[i]));
350 // function/functor that accepts a 'const E &', where E is the
352 template <typename P> // P is the type of the predicate function/functor
[all...]

Completed in 200 milliseconds