Home
last modified time | relevance | path

Searched refs:cref (Results 1 – 18 of 18) sorted by relevance

/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.elem/
Dget_const_rv.fail.cpp22 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/libdrm/radeon/
Dradeon_bo.c44 op, bo, bo->handle, boi->size, boi->cref); in radeon_bo_debug()
59 boi->cref++; in radeon_bo_ref()
69 boi->cref--; in radeon_bo_unref()
127 return boi->cref > 1; in radeon_bo_is_referenced_by_cs()
Dradeon_bo_int.h17 unsigned cref; member
Dradeon_bo_gem.c133 if (boi->cref) { in bo_unref()
/external/libcxx/test/std/utilities/function.objects/refwrap/refwrap.helpers/
Dcref_2.pass.cpp22 std::reference_wrapper<const int> r1 = std::cref(i); in main()
23 std::reference_wrapper<const int> r2 = std::cref(r1); in main()
Dcref_1.pass.cpp22 std::reference_wrapper<const int> r = std::cref(i); in main()
/external/libcxx/test/libcxx/utilities/tuple/tuple.tuple/
Ddiagnose_reference_binding.pass.cpp52 std::tuple<int const&> t2(std::cref(x)); in main()
56 std::tuple<int const&> t4(std::allocator_arg, alloc, std::cref(x)); in main()
61 auto cr = std::cref(x); in main()
/external/skia/bench/
DShapesBench.cpp179 fShapes[i].fDraw = bind(&SkCanvas::drawRect, _1, cref(fRect.rect()), _2); in onDelayedSetup()
182 fShapes[i].fDraw = bind(&SkCanvas::drawOval, _1, cref(fOval.rect()), _2); in onDelayedSetup()
185 fShapes[i].fDraw = bind(&SkCanvas::drawRRect, _1, cref(fRRect), _2); in onDelayedSetup()
202 std::cref(*outer), std::cref(*inner), in onDelayedSetup()
/external/iproute2/doc/
DPlan4 1.1 IP Command reference (ip-cref.tex, published)
5 1.2 TC Command reference (tc-cref.tex)
DMakefile1 PSFILES=ip-cref.ps ip-tunnels.ps api-ip6-flowlabels.ps ss.ps nstat.ps arpd.ps rtstat.ps
/external/curl/src/
Dmakefile.amiga22 $(CC) $(CFLAGS) -o curl $(OBJS) $(LIBS) -Wl,-Map,curl.map,--cref
/external/icu/icu4j/tools/build/src/com/ibm/icu/dev/tool/docs/
DICUJDKCompare.java332 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/clang/test/CXX/temp/temp.decls/temp.variadic/
Dexample-tuple.cpp50 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()
Dexample-bind.cpp50 template<typename T> reference_wrapper<const T> cref(const T& t) { in cref() function
/external/python/cpython2/Lib/bsddb/
D__init__.py246 for cref in self._cursor_refs.values():
247 c = cref()
/external/libcxx/include/
D__functional_base536 cref(const _Tp& __t) _NOEXCEPT
544 cref(reference_wrapper<_Tp> __t) _NOEXCEPT
546 return cref(__t.get());
551 template <class _Tp> void cref(const _Tp&&) = delete;
Dfunctional67 template <class T> reference_wrapper<const T> cref(const T& t) noexcept;
68 template <class T> void cref(const T&& t) = delete;
69 template <class T> reference_wrapper<const T> cref(reference_wrapper<T> t) noexcept;
/external/libbrillo/brillo/
Dany_unittest.cc201 Any val2(std::cref(a)); // const int& in TEST()