Lines Matching refs:object

671      * @return The storage object at the given index.
683 * @return A const pointer to the storage object at the given index.
716 * Increment the stat by 1. This calls the associated storage object inc
721 * Decrement the stat by 1. This calls the associated storage object dec
733 * object set function.
741 * storage object inc function.
749 * storage object dec function.
814 * object, instead of a global free-standing function.
820 T *object;
825 MethodProxy(T *obj, MethodPointer meth) : object(obj), method(meth) {}
826 Counter value() const { return (object->*method)(); }
827 Result result() const { return (object->*method)(); }
828 Result total() const { return (object->*method)(); }
865 * Extended functor that calls the specified method of the provided object.
867 * @param obj Pointer to the object whose method should be called.
868 * @param method Pointer of the function / method of the object.
959 * Increment the stat by 1. This calls the associated storage object inc
964 * Decrement the stat by 1. This calls the associated storage object dec
976 * object set function.
988 * storage object inc function.
1000 * storage object dec function.
1049 * @return The storage object at the given index.
1056 * @return A const pointer to the storage object at the given index.
1863 * @return The storage object for this stat.
1873 * @return A const pointer to the storage object for this stat.
2841 * @return The storage object for this stat.
2851 * @return A const pointer to the storage object for this stat.
3123 * Pointer to a Node object.
3130 * @param n A pointer to a Node object to copy.