Home
last modified time | relevance | path

Searched refs:tie (Results 1 – 25 of 783) sorted by relevance

12345678910>>...32

/openbsd/gnu/usr.bin/perl/t/op/
H A Dtie.t292 tie @f1, 'F1';
297 tie @f2, 'F2';
341 tie %h, 'X';
342 tie @a, 'X';
1037 tie $x, "";
1062 tie $y, "";
1080 tie $y, "";
1105 tie *$f, "";
1106 tie $f, "";
1122 tie $f, "";
[all …]
H A Dtie_fetch_count.t46 tie my $var => 'main', 1;
70 tie my $v42 => 'main', "z";
106 tie my $v_1, "main", 0;
181 tie my $var1 => 'main', \1;
285 tie $var, "main", $u;
300 tie $var, "main", 23;
311 tie $var, "main", "Inf";
323 tie $var, "main", "a";
325 tie $var1, "main", "a";
331 tie $@, => 'main', 1;
[all …]
H A Dassignwarn.t30 my ($tie, $int, $op_seq, $warn) = @_;
34 $code .= "tie \$x, 'main';\n" if $tie;
41 "$op_seq$tie$int warns");
43 warning_is($sub, undef, "$op_seq$tie$int does not warn");
48 for my $tie ("", ", tied") {
50 test_op($tie, $integer, $_, 0) foreach qw($x++ $x-- ++$x --$x);
54 test_op($tie, '', "\$x $_= 1", $should_warn{$_});
56 test_op($tie, ', int', "\$x $_= 1", $should_warn{$_});
60 test_op($tie, '', "\$x $_= 'x'", $should_warn{$_});
H A Dgmagic.t11 tie my $c => 'Tie::Monitor';
87 tie $$s, "Tie::Monitor";
94 tie $a[0], "Tie::Monitor";
101 tie $h{foo}, "Tie::Monitor";
145 $tied_to = tie $_{elem}, "Tie::Monitor";
150 $tied_to = tie $_{elem}, "Tie::Monitor";
157 $tied_to = tie $_{elem}, "Tie::Monitor";
165 $tied_to = tie $_{elem}, "Tie::Monitor";
172 $tied_to = tie $_{elem}, "Tie::Monitor";
179 $tied_to = tie $_{elem}, "Tie::Monitor";
[all …]
H A Djoin.t34 tie my $t, 'X';
143 tie $t, 'S';
147 tie $t, 'S';
151 tie $t, 'S';
167 tie $t, "SM";
171 tie $t, "SM";
175 tie $t, "SM";
H A Dtiehandle.t87 my $ob = tie *$fh,'Implement';
192 ::ok( my $obj = tie *$fh, 'Bar::Say' );
225 tie *STDIN, 'Foo';
237 tie %foo, 'Blah';
243 tie @bar, 'Blah';
249 tie *BAZ, 'Blah';
282 tie *TEST, 'CHOMP';
298 $ob = tie *ARGV, 'Implement';
H A Drunlevel.t189 tie $bar, TEST;
239 tie $bar, TEST;
250 tie $bar, TEST;
349 tie *STDERR, '';
362 tie *STDERR, '';
H A Dtiearray.t145 my $ob = tie @ary,'Implement',3,2,1;
164 tie @thing,'Implement';
247 tie @a, 'X';
258 tie @n => 'NegIndex', ('A' .. 'E');
290 tie my @dummy, "NegFetchsize";
314 tie @a, 'Magical';
321 tie %a, 'Magical';
H A Dsselect.t94 tie $sleep, 'RT120102';
104 tie $tie, _131645::;
105 select ($tie, undef, undef, $tie);
/openbsd/gnu/usr.bin/perl/dist/Storable/t/
H A Ddclone.t92 tie my %tie, "Tie::StdHash" or die $!;
93 $tie{array} = [1,2,3,4];
94 $tie{hash} = {1,2,3,4};
95 my $clone_array = dclone $tie{array};
96 is("@$clone_array", "@{$tie{array}}");
97 my $clone_hash = dclone $tie{hash};
98 is($clone_hash->{1}, $tie{hash}{1});
H A Dtied.t125 $c = tie %hash, TIED_HASH;
126 $d = tie @array, TIED_ARRAY;
127 tie $scalar, TIED_SCALAR;
193 tie $h->{'x'}, 'FAULT', $h, 'x';
211 tie $a, P; my $r = thaw freeze \$a; $b = $$r;
218 tie @a, TIED_ARRAY;
H A Dtied_store.t48 tie $s, "TIED_SCALAR";
49 tie @a, "TIED_ARRAY";
50 tie %h, "TIED_HASH";
/openbsd/gnu/usr.bin/cvs/doc/
H A Dcvs.aux357 'xrdef {admin-snt}{Section'tie'char65.6}
372 'xrdef {commit-snt}{Section'tie'char65.8}
381 'xrdef {diff-snt}{Section'tie'char65.9}
390 'xrdef {export-snt}{Section'tie'char65.10}
402 'xrdef {import-snt}{Section'tie'char65.12}
414 'xrdef {log-snt}{Section'tie'char65.13}
423 'xrdef {rdiff-snt}{Section'tie'char65.14}
444 'xrdef {update-snt}{Section'tie'char65.16}
459 'xrdef {modules-snt}{Section'tie'char67.1}
501 'xrdef {loginfo-snt}{Section'tie'char67.7}
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/TextAPI/
H A DTarget.h43 return std::tie(LHS.Arch, LHS.Platform) == std::tie(RHS.Arch, RHS.Platform);
47 return std::tie(LHS.Arch, LHS.Platform) != std::tie(RHS.Arch, RHS.Platform);
51 return std::tie(LHS.Arch, LHS.Platform) < std::tie(RHS.Arch, RHS.Platform);
H A DInterfaceFile.h105 return std::tie(InstallName, Targets) == std::tie(O.InstallName, O.Targets);
109 return std::tie(InstallName, Targets) != std::tie(O.InstallName, O.Targets);
113 return std::tie(InstallName, Targets) < std::tie(O.InstallName, O.Targets);
145 return std::tie(LHS.Kind, LHS.Name) == std::tie(RHS.Kind, RHS.Name);
/openbsd/gnu/llvm/lldb/source/Plugins/ObjectFile/Breakpad/
H A DBreakpadRecords.cpp87 std::tie(Token, Str) = getToken(Str); in consume()
187 std::tie(Str, Line) = getToken(Line); in parse()
211 std::tie(Str, Line) = getToken(Line); in parse()
235 std::tie(Str, Line) = getToken(Line); in parseNumberName()
280 std::tie(Str, Line) = getToken(Line); in parsePublicOrFunc()
294 std::tie(Str, Line) = getToken(Line); in parsePublicOrFunc()
382 std::tie(Str, Line) = getToken(Line); in parse()
387 std::tie(Str, Line) = getToken(Line); in parse()
392 std::tie(Str, Line) = getToken(Line); in parse()
397 std::tie(Str, Line) = getToken(Line); in parse()
[all …]
/openbsd/gnu/llvm/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyldChecker.cpp48 std::tie(LHSResult, RemainingExpr) = in evaluate()
58 std::tie(RHSResult, RemainingExpr) = in evaluate()
120 std::tie(Token, Remaining) = parseSymbol(Expr); in getTokenForError()
122 std::tie(Token, Remaining) = parseNumberString(Expr); in getTokenForError()
416 std::tie(StubAddr, ErrorMsg) = Checker.getSectionAddr( in evalSectionAddr()
432 std::tie(Symbol, RemainingExpr) = parseSymbol(Expr); in evalIdentifierExpr()
508 std::tie(SubExprResult, RemainingExpr) = in evalParensExpr()
545 std::tie(LoadAddrExprResult, RemainingExpr) = in evalLoadExpr()
596 std::tie(SubExprResult, RemainingExpr) = in evalSimpleExpr()
613 std::tie(SubExprResult, RemainingExpr) = Ctx; in evalSliceExpr()
[all …]
/openbsd/gnu/usr.bin/perl/lib/Tie/Array/
H A Dpush.t21 tie @x,Basic;
22 tie @get,Basic;
23 tie @got,Basic;
24 tie @tests,Basic;
H A Dstd.t10 tie @foo,Tie::StdArray;
11 tie @ary,Tie::StdArray;
12 tie @bar,Tie::StdArray;
/openbsd/gnu/gcc/libstdc++-v3/include/tr1/
H A Drepeat.h120 #define _GLIBCXX_BIND_V_ARGS _Mu<_T1>()(_M_arg1, ::std::tr1::tie(_GLIBCXX_BIND_ARGS))
178 …X_BIND_V_ARGS _Mu<_T1>()(_M_arg1, ::std::tr1::tie(_GLIBCXX_BIND_ARGS)), _Mu<_T2>()(_M_arg2, ::std:…
235 …rg1, ::std::tr1::tie(_GLIBCXX_BIND_ARGS)), _Mu<_T2>()(_M_arg2, ::std::tr1::tie(_GLIBCXX_BIND_ARGS)…
292tie(_GLIBCXX_BIND_ARGS)), _Mu<_T2>()(_M_arg2, ::std::tr1::tie(_GLIBCXX_BIND_ARGS)), _Mu<_T3>()(_M_…
349tie(_GLIBCXX_BIND_ARGS)), _Mu<_T2>()(_M_arg2, ::std::tr1::tie(_GLIBCXX_BIND_ARGS)), _Mu<_T3>()(_M_…
406tie(_GLIBCXX_BIND_ARGS)), _Mu<_T2>()(_M_arg2, ::std::tr1::tie(_GLIBCXX_BIND_ARGS)), _Mu<_T3>()(_M_…
463tie(_GLIBCXX_BIND_ARGS)), _Mu<_T2>()(_M_arg2, ::std::tr1::tie(_GLIBCXX_BIND_ARGS)), _Mu<_T3>()(_M_…
520tie(_GLIBCXX_BIND_ARGS)), _Mu<_T2>()(_M_arg2, ::std::tr1::tie(_GLIBCXX_BIND_ARGS)), _Mu<_T3>()(_M_…
577tie(_GLIBCXX_BIND_ARGS)), _Mu<_T2>()(_M_arg2, ::std::tr1::tie(_GLIBCXX_BIND_ARGS)), _Mu<_T3>()(_M_…
635tie(_GLIBCXX_BIND_ARGS)), _Mu<_T2>()(_M_arg2, ::std::tr1::tie(_GLIBCXX_BIND_ARGS)), _Mu<_T3>()(_M_…
/openbsd/gnu/llvm/llvm/include/llvm/MC/MCDisassembler/
H A DMCDisassembler.h57 return std::tie(P1.Addr, P1.Type, P1.Name) <
58 std::tie(P2.Addr, P2.Type, P2.Name);
61 return std::tie(P1.Addr, P1.XCOFFSymInfo, P1.Name) <
62 std::tie(P2.Addr, P2.XCOFFSymInfo, P2.Name);
64 return std::tie(P1.Addr, P1.Name, P1.Type) <
65 std::tie(P2.Addr, P2.Name, P2.Type);
/openbsd/gnu/usr.bin/perl/cpan/DB_File/t/
H A Ddb-btree.t230 ok(24, $X = tie(%h,'DB_File',$Dfile, O_RDWR, 0640, $DB_BTREE)) ;
350 ok(43, $X = tie(%h, 'DB_File',$Dfile, O_RDWR, 0640, $DB_BTREE ));
486 ok(74, $YY = tie(%hh, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $bt )) ;
548 tie(%h, 'DB_File',$Dfile1, O_RDWR|O_CREAT, 0640, $dbh1 ) or die $!;
549 tie(%g, 'DB_File',$Dfile2, O_RDWR|O_CREAT, 0640, $dbh2 ) or die $!;
550 tie(%k, 'DB_File',$Dfile3, O_RDWR|O_CREAT, 0640, $dbh3 ) or die $!;
593 ok(87, tie(%h, 'DB_File', $Dfile1, O_RDWR|O_CREAT, 0640, $DB_BTREE ) );
939 tie %h, "DB_File", "tree", O_RDWR|O_CREAT, 0640, $DB_BTREE
988 tie %h, "DB_File", $filename, O_RDWR|O_CREAT, 0640, $DB_BTREE
1282 tie %h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0664, $DB_BTREE
[all …]
H A Ddb-hash.t137 ok(15, $X = tie(%h, 'DB_File',$Dfile, O_RDWR|O_CREAT, 0640, $DB_HASH ) );
192 ok(22, $X = tie(%h,'DB_File',$Dfile, O_RDWR, 0640) );
347 ok(44, tie(%h, 'DB_File', $Dfile, O_RDWR|O_CREAT, 0640, $DB_HASH ) );
373 ok(47, $X = tie(%h, 'DB_File',undef, O_RDWR|O_CREAT, 0640, $DB_HASH ) );
389 ok(49, tie %x, 'DB_File', $filename, O_RDWR|O_CREAT, 0640, $hi ) ;
734 tie %h, "DB_File", "fruit", O_RDWR|O_CREAT, 0640, $DB_HASH
782 tie %h, 'DB_File', $Dfile or die "Can't open file: $!\n" ;
801 tie %h, 'DB_File', $Dfile or die "Can't open file: $!\n" ;
931 tie %hash1, 'DB_File',$Dfile, undef;
936 tie %hash1, 'DB_File',$Dfile, O_RDWR|O_CREAT, undef;
[all …]
/openbsd/gnu/llvm/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFAddressRange.h77 …return std::tie(LHS.SectionIndex, LHS.LowPC, LHS.HighPC) < std::tie(RHS.SectionIndex, RHS.LowPC, R…
82 …return std::tie(LHS.SectionIndex, LHS.LowPC, LHS.HighPC) == std::tie(RHS.SectionIndex, RHS.LowPC, …
/openbsd/gnu/usr.bin/perl/t/comp/
H A Dour.t45 tie $x, 'TieAll';
46 tie @x, 'TieAll';
47 tie %x, 'TieAll';

12345678910>>...32