Home
last modified time | relevance | path

Searched refs:reference (Results 1 – 25 of 1297) sorted by relevance

12345678910>>...52

/openbsd-src/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/
H A Dbasic_types.hpp73 typedef typename mapped_type_allocator::reference mapped_reference;
80 typedef typename value_type_allocator::reference reference; typedef
100 typedef typename mapped_type_allocator::reference mapped_reference;
107 typedef typename value_type_allocator::reference reference; typedef
134 typedef typename mapped_type_allocator::reference mapped_reference;
142 typedef typename value_type_allocator::reference reference; typedef
176 typedef typename mapped_type_allocator::reference mapped_reference;
184 typedef typename value_type_allocator::reference reference; typedef
/openbsd-src/gnu/usr.bin/perl/t/lib/croak/
H A Dpp6 Can't use an undefined value as a HASH reference at - line 2.
8 # NAME [perl #119809] Attempt to bless into a reference (tied)
14 Attempt to bless into a reference at - line 4.
16 # NAME [perl #119809] Attempt to bless into a reference (magical)
20 Attempt to bless into a reference at - line 2.
22 # NAME Attempt to bless into a reference after method changes
25 Attempt to bless into a reference at - line 1.
H A Dpp_hot6 Can't localize through a reference at - line 1.
12 Can't localize through a reference at - line 1.
18 Can't localize through a reference at - line 1.
24 Can't localize through a reference at - line 1.
29 Can't localize through a reference at - line 1.
34 Can't localize through a reference at - line 1.
52 Can't use an undefined value as a subroutine reference at - line 1.
60 Can't use an undefined value as a subroutine reference at - line 4.
/openbsd-src/gnu/usr.bin/perl/pod/
H A Dperlref.pod2 X<reference> X<pointer> X<data structure> X<structure> X<struct>
19 Any scalar may hold a hard reference. Because arrays and hashes contain
23 Hard references are smart--they keep track of reference counts for you,
24 automatically freeing the thing referred to when its reference count goes
35 The C<*glob> notation is something of a symbolic reference. (Symbolic
38 X<reference, symbolic> X<reference, soft>
39 X<symbolic reference> X<soft reference>
43 what its (other) name is. When the word "reference" i
[all...]
H A Dperlreftut.pod64 A reference is a scalar value that I<refers to> an entire array or an
66 reference that you're already familiar with. Each human being is a
74 unambiguous. Unlike a human name, a reference only refers to one
75 thing, and you always know what it refers to. If you have a reference
77 reference to a hash, you can recover the entire hash. But the
78 reference is still an easy, compact scalar value.
81 scalars. We're stuck with that. But a single reference can refer to
92 There are just two ways to make a reference, and just two ways to use
100 reference to that variable.
102 $aref = \@array; # $aref now holds a reference to @array
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dtypename25.C11 typedef int reference; typedef
23 typedef int reference; typedef
31 typedef typename Base::reference reference; typedef
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dstl_iterator_base_types.h115 typedef _Reference reference; typedef
130 typedef typename _Iterator::reference reference; typedef
139 typedef _Tp& reference;
148 typedef const _Tp& reference;
/openbsd-src/gnu/gcc/libstdc++-v3/include/bits/
H A Dstl_iterator_base_types.h117 typedef _Reference reference; typedef
133 typedef typename _Iterator::reference reference; typedef
143 typedef _Tp& reference;
153 typedef const _Tp& reference;
/openbsd-src/gnu/usr.bin/perl/ext/B/
H A Dtypemap51 croak(\"$var is not a reference\")
59 croak(\"$var is not a reference\")
67 croak(\"$var is not a reference\")
75 croak(\"$var is not a reference\")
83 croak(\"$var is not a reference\")
91 croak(\"$var is not a reference\")
99 croak(\"$var is not a reference\")
107 croak(\"$var is not a reference\")
/openbsd-src/regress/usr.bin/mandoc/mdoc/Rs/
H A Dbreak.out_markdown5 **Rs-break** - line break before reference start
9 reference on the same line:
16 reference after a blank line:
24 reference on the same line:
H A Dbreak.out_utf84 RRss--bbrreeaakk – line break before reference start
7 reference on the same line: author, _j_o_u_r_n_a_l, 42.
10 reference after a blank line:
15 reference on the same line: author, _j_o_u_r_n_a_l, 42.
H A Dbreak.out_ascii4 RRss--bbrreeaakk - line break before reference start
7 reference on the same line: author, _j_o_u_r_n_a_l, 42.
10 reference after a blank line:
15 reference on the same line: author, _j_o_u_r_n_a_l, 42.
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Dp8018.C12 int reference() { in reference() function
41 RefA(A* a) : p(a) { if (p) p->reference(); } in RefA()
42 RefA(const RefA& a) : p(a.p) { if (p) p->reference(); } in RefA()
51 p->reference();
59 p->reference();
/openbsd-src/gnu/gcc/libstdc++-v3/include/ext/pb_ds/detail/bin_search_tree_/
H A Dtraits.hpp89 typename type_traits::reference,
102 typename type_traits::reference,
115 typename type_traits::reference,
128 typename type_traits::reference,
203 typename type_traits::reference,
218 typename type_traits::reference,
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A Dsimple_ilist.h92 using reference = typename OptionsT::reference; variable
136 reference front() { return *begin(); } in front()
138 reference back() { return *rbegin(); } in back()
142 void push_front(reference Node) { insert(begin(), Node); } in push_front()
145 void push_back(reference Node) { insert(end(), Node); } in push_back()
157 iterator insert(iterator I, reference Node) { in insert()
181 void remove(reference N) { list_base_type::remove(*this->getNodePtr(&N)); } in remove()
185 void removeAndDispose(reference N, Disposer dispose) { in removeAndDispose()
277 RI = std::find_if(RI, RE, [&](reference RV) { return !comp(RV, *LI); }); in merge()
H A DPackedVector.h83 class reference {
88 reference() = delete;
89 reference(PackedVector &vec, unsigned idx) : Vec(vec), Idx(idx) {} in reference() function
91 reference &operator=(T val) {
124 reference operator[](unsigned Idx) {
125 return reference(*this, Idx);
/openbsd-src/gnu/gcc/libstdc++-v3/include/debug/
H A Dbitset55 // bit reference:
56 class reference
57 : private _Base::reference, public __gnu_debug::_Safe_iterator_base
59 typedef typename _Base::reference _Base_ref;
62 reference();
64 reference(const _Base_ref& __base, bitset* __seq)
69 reference(const reference& __x)
73 reference&
83 reference&
84 operator=(const reference& __x)
[all …]
/openbsd-src/gnu/usr.bin/perl/t/base/
H A Drs.t237 if ($msg!~m!Setting \$\/ to a reference to zero is forbidden!) {
248 if ($msg!~m!Setting \$\/ to a reference to a negative integer is forbidden!) {
259 if ($msg!~m!Setting \$\/ to an ARRAY reference is forbidden!) {
270 if ($msg!~m!Setting \$\/ to a HASH reference is forbidden!) {print "not ";}
279 if ($msg!~m!Setting \$\/ to a REF reference is forbidden!) {print "not ";}
288 if ($msg!~m!Setting \$\/ to a REGEXP reference is forbidden!) {print "not ";}
297 if ($msg!~m!Setting \$\/ to a GLOB reference is forbidden!) {print "not ";}
/openbsd-src/usr.sbin/snmpd/
H A Dmib.y91 char *reference; member
100 char *reference; member
109 char *reference; member
116 char *reference; member
547 const char *reference; variable
549 reference = $7[0] == '\0' ? NULL : $7;
551 if (mib_objectidentity($1, $4, $6, reference,
559 const char *units, *reference; variable
562 reference = $12[0] == '\0' ? NULL : $12;
565 reference, NULL, NULL, &$16) == -1)
[all …]
/openbsd-src/gnu/gcc/gcc/config/s390/
H A Dconstraints.md57 ;; Q -- Memory reference without index register and with short displacement.
58 ;; R -- Memory reference with index register and short displacement.
59 ;; S -- Memory reference without index register but with long displacement.
60 ;; T -- Memory reference with index register and long displacement.
62 ;; Offsettable memory reference of type specified by second letter.
64 ;; Memory reference of the type specified by second letter that
355 "Memory reference without index register and with short displacement"
361 "Memory reference with index register and short displacement"
366 "Memory reference without index register but with long displacement"
371 "Memory reference with index register and long displacement"
[all …]
/openbsd-src/gnu/usr.bin/perl/cpan/Scalar-List-Utils/t/
H A Dreduce.t120 local $SIG{__DIE__} = sub { $ok = $_[0] =~ /Not a (subroutine|CODE) reference/ ? '' : $_[0] };
155 ok($@ =~ /^Not a subroutine reference/, 'check for code reference');
157 ok($@ =~ /^Not a subroutine reference/, 'check for code reference');
159 ok($@ =~ /^Not a subroutine reference/, 'check for code reference');
161 ok($@ =~ /^Not a subroutine reference/, 'check for code reference');
163 ok($@ =~ /^Not a subroutine reference/, 'check for code reference');
H A Dfirst.t116 ok($@ =~ /^Not a subroutine reference/, 'check for code reference');
118 ok($@ =~ /^Not a subroutine reference/, 'check for code reference');
120 ok($@ =~ /^Not a subroutine reference/, 'check for code reference');
122 ok($@ =~ /^Not a subroutine reference/, 'check for code reference');
124 ok($@ =~ /^Not a subroutine reference/, 'check for code reference');
/openbsd-src/gnu/usr.bin/perl/cpan/podlators/t/data/snippets/man/
H A Dbackslash-man-ref2 Backlash man page reference
7 Not a man page reference: \s0(1)
10 Not a man page reference: \es0(1)
/openbsd-src/gnu/usr.bin/perl/cpan/JSON-PP/t/
H A D020_unknown.t16 ok( $@ =~ /cannot encode reference to scalar/, $@ );
19 ok( $@ =~ /cannot encode reference to scalar/, $@ );
22 ok( $@ =~ /cannot encode reference to scalar/, $@ );
38 ok( $@ =~ /encountered GLOB|cannot encode reference to scalar/, $@ );
/openbsd-src/gnu/gcc/libstdc++-v3/include/backward/
H A Diterator.h91 typedef _Tp& reference; typedef
99 typedef void reference; typedef
108 typedef _Tp& reference; typedef
117 typedef _Tp& reference; typedef
126 typedef _Tp& reference; typedef

12345678910>>...52