Searched refs:foo (Results 1 – 9 of 9) sorted by relevance
180 Foo( const Foo& foo ) : state_trackable_type(foo) { in Foo() argument181 my_bar = foo.my_bar; in Foo()183 my_serial = foo.my_serial; in Foo()184 my_thread_id = foo.my_thread_id; in Foo()187 Foo( Foo&& foo ) : state_trackable_type(std::move(foo)) { in Foo() argument188 my_bar = foo.my_bar; in Foo()189 my_serial = foo.my_serial; in Foo()190 my_thread_id = foo.my_thread_id; in Foo()323 FooWithAssign foo; variable324 foo.bar() = x_bar;[all …]
131 auto foo = [] (int) { in __anoncd5487920202() variable134 using cache_type = tbb::concurrent_lru_cache<int, utils::LifeTrackableObject, decltype(foo)>;135 cache_type cache{foo, 0};
73 ClassWithVectorType foo(i); in TestVectorTypes() local74 Array1[i] = foo; in TestVectorTypes()78 ClassWithVectorType foo(i); in TestVectorTypes() local79 CHECK( Array2[i]==foo ) ; in TestVectorTypes()
89 ClassWithVectorType foo = *ci; in TestVectorTypes() local
124 ClassWithVectorType foo(i); in TestVectorTypes() local125 v.push_back(foo); in TestVectorTypes()
64 - \ ``icl /Qstd=c++11 foo.cpp`` 65 - \ ``icx /Qstd=c++11 foo.cpp`` 67 - \ ``icc -std=c++11 foo.cpp`` 68 - \ ``icx -std=c++11 foo.cpp``
73 g++ foo.o bar.o -ltbbmalloc_proxy -o a.out
87 preset1::handle_type foo = cache["bar"]; variable
236 add_executable(foo foo.cpp)238 target_link_libraries(foo TBB::tbb)