/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/ |
D | get_const_rv.fail.cpp | 22 template <class T> void cref(T const&) {} in cref() function 23 template <class T> void cref(T const&&) = delete; 32 cref(std::get<0>(tup4())); // expected-error {{call to deleted function 'cref'}} in main()
|
/external/tensorflow/tensorflow/core/lib/core/ |
D | refcount_test.cc | 77 const MyRef* cref = new MyRef; in TEST_F() local 80 cref->Ref(); in TEST_F() 82 cref->Unref(); in TEST_F() 84 cref->Unref(); in TEST_F()
|
/external/libdrm/radeon/ |
D | radeon_bo.c | 41 op, bo, bo->handle, boi->size, boi->cref); in radeon_bo_debug() 56 boi->cref++; in radeon_bo_ref() 66 boi->cref--; in radeon_bo_unref() 124 return boi->cref > 1; in radeon_bo_is_referenced_by_cs()
|
D | radeon_bo_int.h | 17 unsigned cref; member
|
D | radeon_bo_gem.c | 130 if (boi->cref) { in bo_unref()
|
/external/libcxx/test/std/utilities/function.objects/refwrap/refwrap.helpers/ |
D | cref_2.pass.cpp | 22 std::reference_wrapper<const int> r1 = std::cref(i); in main() 23 std::reference_wrapper<const int> r2 = std::cref(r1); in main()
|
D | cref_1.pass.cpp | 22 std::reference_wrapper<const int> r = std::cref(i); in main()
|
/external/skia/bench/ |
D | ShapesBench.cpp | 178 fShapes[i].fDraw = bind(&SkCanvas::drawRect, _1, cref(fRect.rect()), _2); in onDelayedSetup() 181 fShapes[i].fDraw = bind(&SkCanvas::drawOval, _1, cref(fOval.rect()), _2); in onDelayedSetup() 184 fShapes[i].fDraw = bind(&SkCanvas::drawRRect, _1, cref(fRRect), _2); in onDelayedSetup() 201 std::cref(*outer), std::cref(*inner), in onDelayedSetup()
|
/external/skqp/bench/ |
D | ShapesBench.cpp | 178 fShapes[i].fDraw = bind(&SkCanvas::drawRect, _1, cref(fRect.rect()), _2); in onDelayedSetup() 181 fShapes[i].fDraw = bind(&SkCanvas::drawOval, _1, cref(fOval.rect()), _2); in onDelayedSetup() 184 fShapes[i].fDraw = bind(&SkCanvas::drawRRect, _1, cref(fRRect), _2); in onDelayedSetup() 201 std::cref(*outer), std::cref(*inner), in onDelayedSetup()
|
/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/ |
D | PR20855_tuple_ref_binding_diagnostics.pass.cpp | 113 std::tuple<int const&> t2(std::cref(x)); in allocator_tests() 117 std::tuple<int const&> t4(std::allocator_arg, alloc, std::cref(x)); in allocator_tests() 122 auto cr = std::cref(x); in allocator_tests()
|
/external/tensorflow/tensorflow/stream_executor/ |
D | device_memory.h | 232 const DeviceMemory<ElemT> &cref() const { return wrapped_; } in cref() function 243 const DeviceMemory<ElemT> &operator*() const { return cref(); }
|
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/ |
D | ICUJDKCompare.java | 332 private Constructor cref; field in ICUJDKCompare.MorC 339 cref = c; in MorC() 343 return mref == null ? cref.getModifiers() : mref.getModifiers(); in getModifiers() 351 return mref == null ? cref.getParameterTypes() : mref.getParameterTypes(); in getParameterTypes() 359 return mref == null ? cref.toString() : mref.toString(); in getSignature()
|
/external/curl/src/ |
D | makefile.amiga | 22 $(CC) $(CFLAGS) -o curl $(OBJS) $(LIBS) -Wl,-Map,curl.map,--cref
|
/external/libcxx/test/std/containers/sequences/list/list.ops/ |
D | sort_comp.pass.cpp | 61 c1.sort(std::cref(comp)); in main()
|
/external/clang/test/CXX/temp/temp.decls/temp.variadic/ |
D | example-tuple.cpp | 50 template<typename T> reference_wrapper<const T> cref(const T& t) { in cref() function 139 const tuple<int, float&, const double&> *t3p = addr(make_tuple(i, ref(f), cref(d))); in test_creation_functions()
|
D | example-bind.cpp | 50 template<typename T> reference_wrapper<const T> cref(const T& t) { in cref() function
|
/external/tensorflow/tensorflow/core/util/ |
D | work_sharder_test.cc | 96 auto work = std::cref(lambda); in BM_Sharding()
|
/external/python/cpython2/Lib/bsddb/ |
D | __init__.py | 246 for cref in self._cursor_refs.values(): 247 c = cref()
|
/external/tensorflow/tensorflow/lite/experimental/micro/tools/make/targets/ |
D | bluepill_makefile.inc | 39 -Wl,-Map=$(MAKEFILE_DIR)/gen/$(TARGET).map,--cref \
|
D | ecm3531_makefile.inc | 67 -Wl,-Map=$(MAKEFILE_DIR)/targets/ecm3531/ecm3531.map,--cref
|
D | apollo3evb_makefile.inc | 62 -Wl,-Map=$(MAKEFILE_DIR)/gen/$(TARGET).map,--cref
|
/external/libcxx/include/ |
D | __functional_base | 532 cref(const _Tp& __t) _NOEXCEPT 540 cref(reference_wrapper<_Tp> __t) _NOEXCEPT 542 return cref(__t.get()); 547 template <class _Tp> void cref(const _Tp&&) = delete;
|
/external/tensorflow/tensorflow/core/lib/gtl/ |
D | cleanup_test.cc | 256 auto c = gtl::MakeCleanup(std::cref(f_)); in TEST_F()
|
/external/libbrillo/brillo/ |
D | any_unittest.cc | 201 Any val2(std::cref(a)); // const int& in TEST()
|
/external/googletest/googletest/test/ |
D | googletest-printers-test.cc | 1027 EXPECT_EQ("@" + PrintPointer(&x) + " 5", Print(std::cref(x))); in TEST() 1039 Print(std::cref(up))); in TEST()
|