Searched refs:construct (Results 1 - 25 of 89) sorted by relevance

1234

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/
H A Dctors15.C11 int construct = 0; variable
15 Element() { construct++; if (construct > 6) {printf ("FAIL\n"); exit(1);}}
/openbsd-current/gnu/llvm/libcxx/include/__memory_resource/
H A Dpolymorphic_allocator.h102 construct(__ptr, std::forward<_CtorArgs>(__ctor_args)...);
116 _LIBCPP_HIDE_FROM_ABI void construct(_Tp* __p, _Ts&&... __args) { function in class:pmr::polymorphic_allocator
126 construct(pair<_T1, _T2>* __p, piecewise_construct_t, tuple<_Args1...> __x, tuple<_Args2...> __y) { function in class:pmr::polymorphic_allocator
138 _LIBCPP_HIDE_FROM_ABI void construct(pair<_T1, _T2>* __p) { function in class:pmr::polymorphic_allocator
139 construct(__p, piecewise_construct, tuple<>(), tuple<>());
143 _LIBCPP_HIDE_FROM_ABI void construct(pair<_T1, _T2>* __p, _Up&& __u, _Vp&& __v) { function in class:pmr::polymorphic_allocator
144 construct(__p,
151 _LIBCPP_HIDE_FROM_ABI void construct(pair<_T1, _T2>* __p, const pair<_U1, _U2>& __pr) { function in class:pmr::polymorphic_allocator
152 construct(__p, piecewise_construct, std::forward_as_tuple(__pr.first), std::forward_as_tuple(__pr.second));
156 _LIBCPP_HIDE_FROM_ABI void construct(pai function in class:pmr::polymorphic_allocator
[all...]
/openbsd-current/gnu/lib/libstdc++/libstdc++/testsuite/
H A Dtestsuite_allocator.h56 construct() { constructCount_++; } function in class:__gnu_cxx_test::allocation_tracker
145 construct(pointer p, const T& value) function in class:__gnu_cxx_test::tracker_alloc
148 allocation_tracker::construct();
/openbsd-current/gnu/gcc/gcc/
H A Dc-incpath.c224 && cur->construct == tmp->construct)
233 && cur->construct == tmp->construct)
241 && cur->construct == join->construct))
359 p->construct = 0;
/openbsd-current/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFDebugAranges.cpp73 construct();
90 void DWARFDebugAranges::construct() { function in class:DWARFDebugAranges
/openbsd-current/gnu/gcc/libstdc++-v3/include/ext/
H A Dnew_allocator.h104 // 402. wrong new expression in [some_] allocator::construct
106 construct(pointer __p, const _Tp& __val) function in class:new_allocator
H A Dmalloc_allocator.h108 // 402. wrong new expression in [some_] allocator::construct
110 construct(pointer __p, const _Tp& __val) function in class:malloc_allocator
H A Darray_allocator.h77 // 402. wrong new expression in [some_] allocator::construct
79 construct(pointer __p, const _Tp& __val) function in class:array_allocator_base
H A Dcodecvt_specializations.h88 // Number of external bytes needed to construct one complete
115 { construct(__obj); }
121 construct(__obj);
188 construct(const encoding_state& __obj) function in class:encoding_state
H A Dpool_allocator.h164 // 402. wrong new expression in [some_] allocator::construct
166 construct(pointer __p, const _Tp& __val) function in class:__pool_alloc
/openbsd-current/gnu/usr.bin/perl/dist/if/
H A Dif.pm39 The C<if> module is used to conditionally load another module. The construct:
68 The C<no if> construct is mainly used to deactivate categories of warnings
84 The C<no if> construct assumes that a module or pragma has correctly
86 That explains why the C<no if> construct is of limited applicability.
/openbsd-current/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDebugAranges.h34 /// Call appendRange multiple times and then call construct.
36 void construct();
/openbsd-current/gnu/llvm/libcxx/include/__memory/
H A Dtemp_value.h48 _Traits::construct(__a, __addr(), std::forward<_Args>(__args)...);
H A Dallocator.h167 void construct(_Up* __p, _Args&&... __args) { function in class:allocator
252 void construct(_Up* __p, _Args&&... __args) { function in class:allocator
H A Dallocator_traits.h199 (void)std::declval<_Alloc>().construct(std::declval<_Args>()...)
294 static void construct(allocator_type& __a, _Tp* __p, _Args&&... __args) { function in struct:allocator_traits
296 __a.construct(__p, _VSTD::forward<_Args>(__args)...);
302 static void construct(allocator_type&, _Tp* __p, _Args&&... __args) { function in struct:allocator_traits
/openbsd-current/gnu/gcc/libstdc++-v3/include/backward/
H A Diterator.h165 construct(_T1* __p, const _T2& __value) function
170 construct(_T1* __p) function
/openbsd-current/gnu/lib/libstdc++/libstdc++/include/backward/
H A Diterator.h165 construct(_T1* __p, const _T2& __value) function
170 construct(_T1* __p) function
/openbsd-current/gnu/llvm/llvm/include/llvm/Frontend/OpenMP/
H A DOMPContext.h32 /// IDs for all OpenMP context selector trait sets (construct/device/...).
122 /// recorded as well. If \p Property is in the `construct` set it is recorded
131 /// \p Score is not null, it recorded as well. If \p Set is the `construct`
144 if (Set == TraitSet::construct)
166 if (Set == TraitSet::construct)
/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/opt/
H A Dunroll1.C159 static void construct(double* addr) function in struct:ElementProperties
164 static void construct(double* addr, const double& model) function in struct:ElementProperties
198 ElementProperties::construct(pt);
255 ElementProperties::construct(pNew++,*pOld++);
/openbsd-current/gnu/gcc/libstdc++-v3/include/bits/
H A Dstl_uninitialized.h239 __alloc.construct(&*__cur, *__first);
265 __alloc.construct(&*__cur, __x);
291 __alloc.construct(&*__cur, __x);
/openbsd-current/gnu/gcc/libcpp/
H A Dmakedepend.c64 dir->construct = 0;
/openbsd-current/gnu/llvm/llvm/lib/Frontend/OpenMP/
H A DOMPContext.cpp132 // the construct traits, we say it is a strict subset. Note that the latter
225 TraitSet::construct &&
286 case TraitSet::construct:
287 // We handle the construct traits later via the VMI.ConstructTraits
324 "Mismatch in the construct traits!");
327 TraitSet::construct &&
489 AllowsTraitScore = Set != TraitSet::construct && Set != TraitSet::device;
/openbsd-current/gnu/usr.bin/perl/t/porting/
H A Ddeprecation.t106 qr/Use of "goto" to jump into a construct is deprecated/,
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/EventFacet/Info/
H A DTable.pm107 This returns the arguments that should be used to construct the proper
/openbsd-current/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/EventFacet/
H A DPlan.pm57 plan>, a construct that predates the much better C<done_testing()>.

Completed in 303 milliseconds

1234