Home
last modified time | relevance | path

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

12345678910>>...53

/openbsd/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/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/gnu/usr.bin/perl/pod/
H A Dperlref.pod38 X<reference, symbolic> X<reference, soft>
39 X<symbolic reference> X<soft reference>
45 hard reference.
46 X<reference, hard> X<hard reference>
83 X<bracket, square> X<arrayref> X<array reference> X<reference, array>
418 If a reference happens to be a reference to an object, then there are
473 X<circular reference> X<reference, circular>
526 X<reference, symbolic> X<reference, soft>
527 X<symbolic reference> X<soft reference>
531 reference is already defined, but I<isn't> a hard reference. If you
[all …]
H A Dperlreftut.pod78 reference is still an easy, compact scalar value.
100 reference to that variable.
123 reference to that hash.
126 # $aref now holds a reference to an array
129 # $href now holds a reference to a hash
178 Using a hash reference is I<exactly> the same:
209 And then replace the hash name with the reference:
249 C<(1, 2, 3)>, and gives you a reference to that array.
457 To see if a variable contains a reference, use the
469 printed out a reference by mistake.
[all …]
/openbsd/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/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/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/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/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_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.
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.
/openbsd/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/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/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/gnu/gcc/libstdc++-v3/include/debug/
H A Dbitset55 // bit reference:
56 class reference
59 typedef typename _Base::reference _Base_ref;
62 reference();
69 reference(const reference& __x)
73 reference&
83 reference&
84 operator=(const reference& __x)
113 reference&
225 reference
[all …]
/openbsd/gnu/usr.bin/perl/t/base/
H A Drs.t249 if ($msg!~m!Setting \$\/ to a reference to zero is forbidden!) {
260 if ($msg!~m!Setting \$\/ to a reference to a negative integer is forbidden!) {
271 if ($msg!~m!Setting \$\/ to an ARRAY reference is forbidden!) {
282 if ($msg!~m!Setting \$\/ to a HASH reference is forbidden!) {print "not ";}
291 if ($msg!~m!Setting \$\/ to a REF reference is forbidden!) {print "not ";}
300 if ($msg!~m!Setting \$\/ to a REGEXP reference is forbidden!) {print "not ";}
309 if ($msg!~m!Setting \$\/ to a GLOB reference is forbidden!) {print "not ";}
/openbsd/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
571 const char *reference; variable
596 const char *reference; variable
607 const char *reference; variable
618 const char *reference; variable
2064 if (reference != NULL) { in mib_resolve_oid()
[all …]
/openbsd/gnu/gcc/gcc/config/s390/
H A Dconstraints.md58 ;; R -- Memory reference with index register and short displacement.
60 ;; T -- Memory reference with index register and long displacement.
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"
403 Memory reference without index register and with short
410 Memory reference with index register and short displacement that
417 Memory reference without index register but with long displacement
[all …]
/openbsd/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/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/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/gnu/usr.bin/perl/dist/ExtUtils-ParseXS/t/data/
H A Db.typemap46 croak(\"$var is not a reference\")
54 croak(\"$var is not a reference\")
62 croak(\"$var is not a reference\")
70 croak(\"$var is not a reference\")
78 croak(\"$var is not a reference\")

12345678910>>...53