Home | History | Annotate | Download | only in base

Lines Matching full:parameters

32 // parameters have been bound (usually via currying).  Closures are well
121 // and all its bound parameters. Each Callback specialization has a templated
125 // parameters, and a DoInvoke() that is capable of invoking the target.
129 // parameters. It does this by storing a pointer to the specific DoInvoke()
137 // - Unwrapping the function signature into return type, and parameters
138 // - Determining the number of parameters that are bound
139 // - Creating the storage for the bound parameters
142 // matching the number of unbound parameters, and knows the correct
149 // By default Bind() will store copies of all bound parameters, and attempt
180 // tr1::function causes a copy to be made of all the bound parameters and
189 // tr1::bind::placeholder, support for non-const reference parameters, and some
194 // allowing for reference parameters, and subtyping of functions, may actually
223 // After this, create template specializations for 0-$(MAX_ARITY) parameters. Note that