Lines Matching refs:tr1
108 // tr1::function/tr1::bind, and by the "Google Callback" system used inside
162 // ConstRef() is similar to tr1::cref. Unretained() is specific to Chromium.
167 // Direct use of tr1::function and tr1::bind was considered, but ultimately
175 // tr1::bind call itself will invoke a non-trivial copy constructor three times
176 // for each bound parameter. Also, each when passing a tr1::function, each
180 // tr1::function causes a copy to be made of all the bound parameters and
185 // is not supported by tr1.
187 // Lastly, tr1::function and tr1::bind has a more general and flexible API.
189 // tr1::bind::placeholder, support for non-const reference parameters, and some
190 // limited amount of subtyping of the tr1::function object (eg.,
191 // tr1::function<int(int)> is convertible to tr1::function<void(int)>).