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

1234

/macosx-10.9.5/cxxfilt-11/cxxfilt/bfd/
H A Ddwarf1.c61 /* Linked starting from stash->lastUnit. */
135 then attached into the 'stash' at 'stash->lastUnit'. */
138 alloc_dwarf1_unit (struct dwarf1_debug* stash) argument
142 struct dwarf1_unit* x = bfd_zalloc (stash->abfd, amt);
143 x->prev = stash->lastUnit;
144 stash->lastUnit = x;
153 alloc_dwarf1_func (struct dwarf1_debug* stash, struct dwarf1_unit* aUnit) argument
157 struct dwarf1_func* x = bfd_zalloc (stash->abfd, amt);
258 parse_line_table (struct dwarf1_debug* stash, struc argument
338 parse_functions_in_unit(struct dwarf1_debug* stash, struct dwarf1_unit* aUnit) argument
379 dwarf1_unit_find_nearest_line(struct dwarf1_debug* stash, struct dwarf1_unit* aUnit, unsigned long addr, const char **filename_ptr, const char **functionname_ptr, unsigned int *linenumber_ptr) argument
450 struct dwarf1_debug *stash = elf_tdata (abfd)->dwarf1_find_line_info; local
[all...]
H A Ddwarf2.c201 struct dwarf2_debug *stash; member in struct:comp_unit
308 struct dwarf2_debug *stash = unit->stash; local
317 if (! stash->dwarf_str_buffer)
333 stash->dwarf_str_size = sz;
334 stash->dwarf_str_buffer = bfd_alloc (abfd, sz);
335 if (! stash->dwarf_str_buffer)
338 if (! bfd_get_section_contents (abfd, msec, stash->dwarf_str_buffer,
343 if (offset >= stash->dwarf_str_size)
346 (unsigned long) offset, stash
422 read_abbrevs(bfd *abfd, bfd_uint64_t offset, struct dwarf2_debug *stash) argument
964 decode_line_info(struct comp_unit *unit, struct dwarf2_debug *stash) argument
1405 struct dwarf2_debug *stash = unit->stash; local
1891 parse_comp_unit(bfd *abfd, struct dwarf2_debug *stash, bfd_vma unit_length, bfd_byte *info_ptr_unit, unsigned int offset_size) argument
2076 comp_unit_find_nearest_line(struct comp_unit *unit, bfd_vma addr, const char **filename_ptr, const char **functionname_ptr, unsigned int *linenumber_ptr, struct dwarf2_debug *stash) argument
2134 comp_unit_find_line(struct comp_unit *unit, asymbol *sym, bfd_vma addr, const char **filename_ptr, unsigned int *linenumber_ptr, struct dwarf2_debug *stash) argument
2217 unset_sections(struct dwarf2_debug *stash) argument
2232 place_sections(bfd *abfd, struct dwarf2_debug *stash) argument
2330 struct dwarf2_debug *stash; local
2548 struct dwarf2_debug *stash; local
2756 struct dwarf2_debug *stash; local
2779 struct dwarf2_debug *stash; local
[all...]
/macosx-10.9.5/CPANInternal-140/YAML-Syck/inc/
H A Dattributes.pm78 my $stash = _guess_stash $svref;
79 $stash = caller unless defined $stash;
81 $pkgmeth = UNIVERSAL::can($stash, "FETCH_${svtype}_ATTRIBUTES")
82 if defined $stash && $stash ne '';
84 (_fetch_attrs($svref), $pkgmeth->($stash, $svref)) :
/macosx-10.9.5/CPANInternal-140/Variable-Magic/t/
H A D35-stash.t52 is $@, "ok\n", 'stash: variables compiled fine';
56 }, 'stash: variables';
71 is $@, "ok\n", 'stash: function definitions compiled fine';
74 }, 'stash: function definitions';
93 is $@, "ok\n", 'stash: function calls compiled fine';
97 }, 'stash: function calls';
105 is $@, '', 'stash: valid method call ran fine';
108 }, 'stash: valid method call';
116 is $@, '', 'stash: second valid method call ran fine';
119 }, 'stash
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/lib/Template/Plugin/
H A DAssert.pm7 # items fetchs from the stash are defined.
34 my $stash = $context->stash;
36 $MONAD->new($stash, shift);
60 my $stash = $self->{ _CONTEXT }->stash;
61 my $value = $stash->dotop($stash, $item, \@args);
76 my ($class, $stash, $this) = @_;
77 bless [$stash,
[all...]
H A DScalar.pm68 my $stash = $self->{ _CONTEXT }->stash;
69 my $value = $stash->{ $item };
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/lib/Template/Plugin/
H A DAssert.pm7 # items fetchs from the stash are defined.
34 my $stash = $context->stash;
36 $MONAD->new($stash, shift);
60 my $stash = $self->{ _CONTEXT }->stash;
61 my $value = $stash->dotop($stash, $item, \@args);
76 my ($class, $stash, $this) = @_;
77 bless [$stash,
[all...]
H A DScalar.pm68 my $stash = $self->{ _CONTEXT }->stash;
69 my $value = $stash->{ $item };
/macosx-10.9.5/CPANInternal-140/Crypt-Rijndael/
H A DRijndael.xs31 HV *stash = gv_stashpv("Crypt::Rijndael", 0);
33 newCONSTSUB (stash, "keysize", newSViv (32) );
34 newCONSTSUB (stash, "blocksize", newSViv (16) );
35 newCONSTSUB (stash, "MODE_ECB", newSViv (MODE_ECB) );
36 newCONSTSUB (stash, "MODE_CBC", newSViv (MODE_CBC) );
37 newCONSTSUB (stash, "MODE_CFB", newSViv (MODE_CFB) );
38 newCONSTSUB (stash, "MODE_PCBC", newSViv (MODE_PCBC) );
39 newCONSTSUB (stash, "MODE_OFB", newSViv (MODE_OFB) );
40 newCONSTSUB (stash, "MODE_CTR", newSViv (MODE_CTR) );
/macosx-10.9.5/CPANInternal-140/Crypt-Rijndael-1.10/
H A DRijndael.xs51 HV *stash = gv_stashpv("Crypt::Rijndael", 0);
53 newCONSTSUB (stash, "keysize", newSViv (32) );
54 newCONSTSUB (stash, "blocksize", newSViv (16) );
55 newCONSTSUB (stash, "MODE_ECB", newSViv (MODE_ECB) );
56 newCONSTSUB (stash, "MODE_CBC", newSViv (MODE_CBC) );
57 newCONSTSUB (stash, "MODE_CFB", newSViv (MODE_CFB) );
58 newCONSTSUB (stash, "MODE_PCBC", newSViv (MODE_PCBC) );
59 newCONSTSUB (stash, "MODE_OFB", newSViv (MODE_OFB) );
60 newCONSTSUB (stash, "MODE_CTR", newSViv (MODE_CTR) );
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/t/
H A Dcontext.t184 my $stash = $context->stash();
185 ok( $stash );
187 $stash->set('a', 'alpha');
188 ok( $stash->get('a') eq 'alpha' );
196 # check stash hasn't been altered
197 ok( $stash->get('a') eq 'alpha' );
202 # check stash *has* been altered
203 ok( $stash->get('a') eq 'charlie' );
207 ok( $stash
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/t/
H A Dcontext.t184 my $stash = $context->stash();
185 ok( $stash );
187 $stash->set('a', 'alpha');
188 ok( $stash->get('a') eq 'alpha' );
196 # check stash hasn't been altered
197 ok( $stash->get('a') eq 'alpha' );
202 # check stash *has* been altered
203 ok( $stash->get('a') eq 'charlie' );
207 ok( $stash
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/lib/Template/Stash/
H A DXS.pm60 Template::Stash::XS - High-speed variable stash written in C
67 my $stash = Template::Stash::XS->new(\%vars);
68 my $tt2 = Template->new({ STASH => $stash });
78 The easiest way to use the XS stash is to configure the Template
88 If you don't elect to use the XS stash by default then you should use
90 This should reference an XS stash object that you have created
96 my $stash = Template::Stash::XS->new(\%vars);
97 my $tt2 = Template->new({ STASH => $stash });
109 The XS stash will then be automatically used.
111 If you want to use the XS stash b
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/lib/Template/Stash/
H A DXS.pm60 Template::Stash::XS - High-speed variable stash written in C
67 my $stash = Template::Stash::XS->new(\%vars);
68 my $tt2 = Template->new({ STASH => $stash });
78 The easiest way to use the XS stash is to configure the Template
88 If you don't elect to use the XS stash by default then you should use
90 This should reference an XS stash object that you have created
96 my $stash = Template::Stash::XS->new(\%vars);
97 my $tt2 = Template->new({ STASH => $stash });
109 The XS stash will then be automatically used.
111 If you want to use the XS stash b
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/lib/Template/
H A DStash.pm35 # between the Perl and XS stash implementations
106 # definitions that will be used to initialise the stash.
133 # Creates a copy of the current stash object to effect localisation
134 # of variables. The new stash is blessed into the same class as the
136 # which contains a reference to the parent stash that created it
141 # variable/values which should be defined in the new stash. The
143 # stash.
178 # Returns a reference to the PARENT stash. When called in the following
180 # $stash = $stash
[all...]
H A DDirective.pm81 my \$stash = \$context->stash;
225 return "\$stash->get($ident)";
241 return "\$stash->getref($ident)";
261 return "\$stash->set($var, $val)";
434 $loop_set = "\$stash->{'$target'} = \$_tt_value";
435 $loop_restore = "\$stash->set('loop', \$_tt_oldloop)";
438 $loop_save = '$stash = $context->localise()';
439 # $loop_set = "\$stash->set('import', \$_tt_value) "
441 $loop_set = "\$stash
[all...]
/macosx-10.9.5/CPANInternal-140/Template-Toolkit-2.24/lib/Template/
H A DStash.pm35 # between the Perl and XS stash implementations
106 # definitions that will be used to initialise the stash.
133 # Creates a copy of the current stash object to effect localisation
134 # of variables. The new stash is blessed into the same class as the
136 # which contains a reference to the parent stash that created it
141 # variable/values which should be defined in the new stash. The
143 # stash.
178 # Returns a reference to the PARENT stash. When called in the following
180 # $stash = $stash
[all...]
H A DDirective.pm81 my \$stash = \$context->stash;
225 return "\$stash->get($ident)";
241 return "\$stash->getref($ident)";
261 return "\$stash->set($var, $val)";
434 $loop_set = "\$stash->{'$target'} = \$_tt_value";
435 $loop_restore = "\$stash->set('loop', \$_tt_oldloop)";
438 $loop_save = '$stash = $context->localise()';
439 # $loop_set = "\$stash->set('import', \$_tt_value) "
441 $loop_set = "\$stash
[all...]
/macosx-10.9.5/BerkeleyDB-21/db/perl/BerkeleyDB/
H A Dppport.h134 extern void newCONSTSUB _((HV * stash, char * name, SV *sv));
139 newCONSTSUB(stash,name,sv)
140 HV *stash; variable
151 if (stash)
152 PL_curstash = PL_curcop->cop_stash = stash;
/macosx-10.9.5/BerkeleyDB-21/db/perl/DB_File/
H A Dppport.h129 extern void newCONSTSUB _((HV * stash, char * name, SV *sv));
134 newCONSTSUB(stash,name,sv)
135 HV *stash; variable
146 if (stash)
147 PL_curstash = PL_curcop->cop_stash = stash;
/macosx-10.9.5/CPANInternal-140/Readonly-XS/
H A Dppport.h348 extern void newCONSTSUB(HV * stash, char * name, SV *sv);
353 newCONSTSUB(stash,name,sv)
354 HV *stash; variable
365 if (stash)
366 PL_curstash = PL_curcop->cop_stash = stash;
/macosx-10.9.5/CPANInternal-140/Readonly-XS-1.05/
H A Dppport.h348 extern void newCONSTSUB(HV * stash, char * name, SV *sv);
353 newCONSTSUB(stash,name,sv)
354 HV *stash; variable
365 if (stash)
366 PL_curstash = PL_curcop->cop_stash = stash;
/macosx-10.9.5/CPANInternal-140/TermReadKey/
H A Dppport.h360 extern void newCONSTSUB(HV * stash, char * name, SV *sv);
365 newCONSTSUB(stash,name,sv)
366 HV *stash; variable
377 if (stash)
378 PL_curstash = PL_curcop->cop_stash = stash;
/macosx-10.9.5/CPANInternal-140/XML-LibXML-Common/
H A Dppport.h306 extern void newCONSTSUB _((HV * stash, char * name, SV *sv));
311 newCONSTSUB(stash,name,sv)
312 HV *stash; variable
323 if (stash)
324 PL_curstash = PL_curcop->cop_stash = stash;
/macosx-10.9.5/CPANInternal-140/Template-Toolkit/lib/Template/Namespace/
H A DConstants.pm35 $self->{ STASH } = Template::Config->stash($config)
139 Template::Namespace::Constants object. This creates an internal stash
151 stash and returns it.

Completed in 440 milliseconds

1234