| /openbsd-src/gnu/usr.bin/perl/dist/base/t/ |
| H A D | fields-base.t | 154 my B2 $obj1 = D3->new; 155 $obj1->{b1} = "B2"; 156 my D3 $obj2 = $obj1; 179 @$obj1{"_b1", "b1"} = (17, 29); 180 is( $obj1->{_b1}, 17 ); 181 is( $obj1->{b1}, 29 ); 183 @$obj1{'_b1', 'b1'} = (44,28); 184 is( $obj1->{_b1}, 44 ); 185 is( $obj1->{b1}, 28 );
|
| H A D | fields-5_8_0.t | 117 my B2 $obj1 = D3->new; 118 $obj1->{b1} = "B2"; 119 my D3 $obj2 = $obj1; 122 print "not " unless $obj1->[2] eq "B2" && $obj1->[5] eq "D3"; 131 @$obj1{"_b1", "b1"} = (17, 29); 132 print "not " unless "@$obj1[1,2]" eq "17 29"; 134 @$obj1[1,2] = (44,28); 135 print "not " unless "@$obj1{'b1','_b1','b1'}" eq "28 44 28";
|
| H A D | fields-5_6_0.t | 153 my B2 $obj1 = D3->new; 154 $obj1->{b1} = "B2"; 155 my D3 $obj2 = $obj1; 158 ok( $obj1->[2] eq "B2" && $obj1->[5] eq "D3" ); 168 @$obj1{"_b1", "b1"} = (17, 29); 169 ok( "@$obj1[1,2]" eq "17 29" ); 171 @$obj1[1,2] = (44,28); 172 ok( "@$obj1{'b1','_b1','b1'}" eq "28 44 28" );
|
| /openbsd-src/gnu/llvm/clang/docs/analyzer/checkers/ |
| H A D | callandmessage_example.c | 37 MyClass *obj1; local 38 long double ld1 = [obj1 longDoubleM]; 49 MyClass *obj1; local 50 id i = obj1.x; // warn: uninitialized object pointer 64 MyClass *obj1; local 65 id i = obj1[0]; // warn: uninitialized object pointer
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/testsuite/19_diagnostics/ |
| H A D | stdexceptions.cc | 85 std::runtime_error obj1(s); in test04() local 91 obj1 = obj2; in test04() 94 VERIFY( std::strcmp(strlit1, obj1.what()) == 0 ); in test04() 100 obj1 = obj3; in test04() 103 VERIFY( std::strcmp(strlit2, obj1.what()) == 0 ); in test04()
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/lib/ |
| H A D | compat.exp | 147 set obj1 "main_tst.o" 212 compat-obj "$src1" "$obj1" $tst_options $optstr 218 "$obj1 $obj2_tst $obj3_tst" $execname1 $tst_options $optstr 222 compat-run "${obj2_tst}-${obj3_alt}" "$obj1 $obj2_tst $obj3_alt" \ 224 compat-run "${obj2_alt}-${obj3_tst}" "$obj1 $obj2_alt $obj3_tst" \ 226 compat-run "${obj2_alt}-${obj3_alt}" "$obj1 $obj2_alt $obj3_alt" \
|
| /openbsd-src/lib/libcrypto/x509/ |
| H A D | x509_pmaps.c | 201 ASN1_OBJECT *obj1 = NULL, *obj2 = NULL; in v2i_POLICY_MAPPINGS() 216 obj1 = OBJ_txt2obj(val->name, 0); in v2i_POLICY_MAPPINGS() 218 if (!obj1 || !obj2) { in v2i_POLICY_MAPPINGS() 227 pmap->issuerDomainPolicy = obj1; in v2i_POLICY_MAPPINGS() 229 obj1 = obj2 = NULL; in v2i_POLICY_MAPPINGS() 243 ASN1_OBJECT_free(obj1); in v2i_POLICY_MAPPINGS() 199 ASN1_OBJECT *obj1 = NULL, *obj2 = NULL; v2i_POLICY_MAPPINGS() local
|
| /openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/t/Legacy/ |
| H A D | is_deeply_dne_bug.t | 42 my $obj1 = Foo->new(); 45 eval { is_deeply([$obj1, $obj2], [$obj1, $obj2]); };
|
| /openbsd-src/gnu/lib/libstdc++/libstdc++/testsuite/20_util/ |
| H A D | pairs.cc | 120 const gnu_obj& obj1 = gnu_obj(5); in test04() local 121 const std::pair<const char*, gnu_obj> p_sg_1("enlightenment", obj1); in test04() 123 std::make_pair("enlightenment", obj1); in test04() 128 const std::pair<gnu_t<long>, gnu_obj> p_st_1(tmpl1, obj1); in test04() 129 const std::pair<gnu_t<long>, gnu_obj> p_st_2 = std::make_pair(tmpl1, obj1); in test04()
|
| /openbsd-src/gnu/usr.bin/perl/t/class/ |
| H A D | method.t | 46 my $obj1 = Testcase3->new; 47 $obj1->inc; 49 is($obj1->inc, 1, '$obj1->inc sees 1');
|
| H A D | field.t | 177 my $obj1 = Testcase8->new; 180 is($obj1->x, 1, 'Object 1 has x == 1'); 185 ok(eq_array([$obj1->y], ["more", "values"]), 187 ok(eq_hash({$obj1->z}, {first => "value", second => "here"}),
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/gcc.c-torture/compile/ |
| H A D | 941111-1.c | 3 struct S { int i; char c; } obj1, obj2; in main() local 6 if (obj1.c != obj2.c) in main()
|
| /openbsd-src/gnu/usr.bin/perl/dist/Thread-Queue/t/ |
| H A D | 02_refs.t | 34 my $obj1 = { 40 bless($obj1, 'Foo'); 81 $q->enqueue($obj1, $obj2); 109 is_deeply($tobj1, $obj1, 'Object comparison'); 176 is($$obj1{'foo'}, 'bar', 'Object unchanged'); 177 ok(! exists($$obj1{'smiley'}), 'Object unchanged');
|
| H A D | 08_nothreads.t | 16 my $obj1 = { 22 bless($obj1, 'Foo'); 49 $q->enqueue($obj1, $obj2); 76 is_deeply($tobj1, $obj1, 'Object comparison');
|
| /openbsd-src/gnu/usr.bin/perl/dist/Devel-PPPort/parts/inc/ |
| H A D | magic | 586 ok(my $obj1 = Devel::PPPort->new_with_mg()); 587 is(Devel::PPPort::as_string($obj1), 'hello'); 598 Devel::PPPort::remove_other_magic($obj1); 599 is(Devel::PPPort::as_string($obj1), 'hello'); 602 Devel::PPPort::remove_null_magic($obj1); 603 is(Devel::PPPort::as_string($obj1), "Sorry, your princess is in another castle."); 606 Devel::PPPort::remove_null_magic($obj1); 607 is(Devel::PPPort::as_string($obj1), "Sorry, your princess is in another castle.");
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.law/ |
| H A D | access5.C | 20 nested_public obj1; // ok variable
|
| /openbsd-src/gnu/usr.bin/perl/t/op/ |
| H A D | ref.t | 852 my $obj1 = bless [], "1"; 861 is !ref $obj1, "", '!ref $obj1';
|
| /openbsd-src/gnu/llvm/lld/ELF/ |
| H A D | Symbols.cpp | 552 std::string obj1 = sec1->getObjMsg(d->value); in reportDuplicate() local 559 msg += obj1 + "\n>>> defined at "; in reportDuplicate()
|
| /openbsd-src/gnu/gcc/gcc/ |
| H A D | tree-ssa-loop-im.c | 1193 memref_eq (const void *obj1, const void *obj2) in memref_eq() argument 1195 const struct mem_ref *mem1 = obj1; in memref_eq()
|
| /openbsd-src/gnu/usr.bin/perl/vms/ |
| H A D | descrip_mms.template | 220 obj1 = $(MALLOC_O) av$(O) builtin$(O) caretx$(O) class$(O) deb$(O) doio$(O) doop$(O) dquote$(O) dump$(O) mro_core$(O) globals$(O) gv$(O) hv$(O) 226 mini_obj = perlmini$(O) $(obj1) $(obj2) $(obj3) $(obj4) $(obj5) 227 obj = $(obj0) $(obj1) $(obj2) $(obj3) $(obj4) $(obj5)
|
| /openbsd-src/gnu/llvm/clang/lib/Format/ |
| H A D | UnwrappedLineFormatter.cpp | 1130 bool operator()(LineState *obj1, LineState *obj2) const { in operator ()() 1131 return *obj1 < *obj2; in operator ()()
|