D | modernize-avoid-bind.cpp | 141 auto BBB = std::bind(add, x, x); in testCaptureByValue() local 183 auto BBB = std::bind(addThree, 2, 3, 4); in testLiteralParameters() local 195 auto BBB = std::bind(add, std::ref(x), y); in testCaptureByReference() local 232 auto BBB = std::bind(*e, 1, 2); in testFunctionObjects() local 276 auto BBB = std::bind(add, _2, _1); in testPlaceholders() local 302 auto BBB = std::bind(Foo::add, 1, 1); in testGlobalFunctions() local 330 auto BBB = std::bind(add, x, add(y, 5)); in testCapturedSubexpressions() local 351 auto BBB = std::bind(&D::MemberFunction, &dd, 1); in testMemberFunctions() local
|