Home
last modified time | relevance | path

Searched refs:accessor (Results 1 – 25 of 105) sorted by relevance

12345

/openbsd/src/gnu/gcc/gcc/
Dtree-browser.def50 DEFTBCODE (TB_TYPE, "type", "Field accessor.")
51 DEFTBCODE (TB_SIZE, "size", "Field accessor.")
52 DEFTBCODE (TB_UNIT_SIZE, "unit_size", "Field accessor.")
53 DEFTBCODE (TB_OFFSET, "offset", "Field accessor.")
54 DEFTBCODE (TB_BIT_OFFSET, "bit_offset", "Field accessor.")
55 DEFTBCODE (TB_CONTEXT, "context", "Field accessor.")
56 DEFTBCODE (TB_ATTRIBUTES, "attributes", "Field accessor.")
57 DEFTBCODE (TB_ABSTRACT_ORIGIN, "abstract_origin", "Field accessor.")
58 DEFTBCODE (TB_ARGUMENTS, "arguments", "Field accessor.")
59 DEFTBCODE (TB_RESULT, "result", "Field accessor.")
[all …]
/openbsd/src/gnu/usr.bin/perl/cpan/libnet/t/
Dnetrc.t120 for my $accessor (qw( login account password )) {
121 is( $instance->$accessor(), undef,
122 "$accessor() should return undef if $accessor is not set" );
123 $instance->{$accessor} = $accessor;
124 is( $instance->$accessor(), $accessor,
125 "$accessor() should return value when $accessor is set" );
/openbsd/src/gnu/usr.bin/gcc/gcc/testsuite/objc/execute/
Dclass-7.m6 accessor methods; accessor methods implemented in a separate
Dclass-4.m6 accessor methods */
Dclass-5.m6 accessor methods and a subclass overriding the superclass'
Dclass-8.m6 accessor methods and a subclass overriding the superclass'
Dclass-6.m6 accessor methods and a subclass overriding the superclass'
Dclass-13.m5 /* Tests creating a root class and a subclass with a class accessor
Dclass-9.m6 accessor methods and a subclass overriding the superclass'
Dclass-11.m6 accessor methods and a subclass overriding the superclass'
Dclass-14.m5 /* Tests creating a root class and a subclass with a class accessor
Dclass-10.m6 accessor methods and a subclass overriding the superclass'
/openbsd/src/gnu/llvm/lldb/bindings/interface/
DSBBreakpoint.i287 accessor = self.get_locations_access_object()
288 for idx in range(len(accessor)):
289 locations.append(accessor[idx])
DSBProcess.i495 accessor = self.get_threads_access_object()
496 for idx in range(len(accessor)):
497 threads.append(accessor[idx])
DSBValue.i473 accessor = self.get_child_access_object()
474 for idx in range(len(accessor)):
475 children.append(accessor[idx])
/openbsd/src/gnu/usr.bin/perl/cpan/HTTP-Tiny/lib/HTTP/
DTiny.pm84 for my $accessor ( @attributes ) {
85 *{$accessor} = sub {
88 … delete $_[0]->{handle} if !$persist_ok{$accessor} && $_[1] ne $_[0]->{$accessor};
89 $_[0]->{$accessor} = $_[1]
91 : $_[0]->{$accessor};
/openbsd/src/gnu/llvm/lldb/tools/debugserver/source/
DChangeLog98 accessor functions.
119 * DNBError.h (DNBError::SetErrorString): New accessor to allow custom error
632 accessor.
717 (DNBBreakpoint::ThreadID()): New accessor.
718 (DNBBreakpoint::IsEnabled()): New accessor.
719 (DNBBreakpoint::SetEnabled()): New accessor.
720 (DNBBreakpoint::IsWatchpoint()): New accessor.
721 (DNBBreakpoint::IsBreakpoint()): New accessor.
722 (DNBBreakpoint::SetIsWatchpoint()): New accessor.
723 (DNBBreakpoint::WatchpointRead()): New accessor.
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/config/frv/
Dfrv.c1533 frv_frame_access (accessor, reg, stack_offset) in frv_frame_access() argument
1534 frv_frame_accessor_t *accessor; in frv_frame_access()
1540 accessor->base,
1541 stack_offset - accessor->base_offset);
1543 if (accessor->op == FRV_LOAD)
1587 frv_frame_access_multi (accessor, info, reg_set) in frv_frame_access_multi() argument
1588 frv_frame_accessor_t *accessor; in frv_frame_access_multi()
1598 frv_frame_access (accessor,
1614 frv_frame_accessor_t accessor; local
1616 accessor.op = op;
[all …]
/openbsd/src/gnu/gcc/gcc/config/frv/
Dfrv.c1664 frv_frame_access (frv_frame_accessor_t *accessor, rtx reg, int stack_offset) in frv_frame_access() argument
1668 accessor->base, in frv_frame_access()
1669 stack_offset - accessor->base_offset); in frv_frame_access()
1671 if (accessor->op == FRV_LOAD) in frv_frame_access()
1715 frv_frame_access_multi (frv_frame_accessor_t *accessor, in frv_frame_access_multi() argument
1725 frv_frame_access (accessor, in frv_frame_access_multi()
1739 frv_frame_accessor_t accessor; in frv_frame_access_standard_regs() local
1741 accessor.op = op; in frv_frame_access_standard_regs()
1742 accessor.base = stack_pointer_rtx; in frv_frame_access_standard_regs()
1743 accessor.base_offset = 0; in frv_frame_access_standard_regs()
[all …]
/openbsd/src/gnu/usr.bin/perl/pod/
Dperlclass.pod99 private to the class (though creation of an accessor method will make it
235 A field with a C<:reader> attribute will generate a reader accessor method
245 By default the accessor method will have the same name as the field (minus the
355 =item * More accessor generator attributes
357 Attributes to request that other kinds of accessor methods be generated for
Dperlobj.pod523 attribute with accessor methods.
529 An accessor lets you add additional code around attribute access. For
539 X<accessor>
541 As with constructors, Perl provides no special accessor declaration
542 syntax, so classes must provide explicitly written accessor methods.
545 A simple read-only accessor simply gets the value of a single
554 A read-write accessor will allow the caller to set the value as well as
Dperlootut.pod189 We recommend that you only access attributes via B<accessor> methods.
344 not rely on this. Instead, we should use accessor methods to access the
346 automate the generation of accessor methods. If you use one of them,
356 accessor could return a L<DateTime> object. This is a perfect example
646 Like C<Moose>, C<Class::Accessor> generates accessor methods and a
/openbsd/src/gnu/usr.bin/perl/cpan/Math-BigInt/t/
Dmbimbf.t46 # see if accessor also changes old variable
/openbsd/src/gnu/usr.bin/perl/dist/Tie-File/
DChangeLog134 accessor method.
/openbsd/src/gnu/llvm/clang/lib/CodeGen/
DCGObjCGNU.cpp301 auto addPropertyMethod = [&](const ObjCMethodDecl *accessor) { in PushProperty() argument
302 if (accessor) { in PushProperty()
303 std::string TypeStr = Context.getObjCEncodingForMethodDecl(accessor); in PushProperty()
305 Fields.add(MakeConstantString(accessor->getSelector().getAsString())); in PushProperty()
1143 auto addPropertyMethod = [&](const ObjCMethodDecl *accessor) { in PushProperty() argument
1144 if (accessor) { in PushProperty()
1145 std::string TypeStr = Context.getObjCEncodingForMethodDecl(accessor); in PushProperty()
1146 Fields.add(GetConstantSelector(accessor->getSelector(), TypeStr)); in PushProperty()

12345