Searched refs:class (Results 1 - 25 of 528) sorted by relevance

1234567891011>>

/osnet-11/usr/src/lib/libslp/javalib/
H A DMakefile.conf63 $(CLASSES)/$(PKGPATH)/%.class: $(SLPJAVASRC)/$(PKGPATH)/%.java
85 UARequester.class SARequester.class slpd.class \
86 SunServerDATable.class AttributeVerifier.class \
87 SunDATable.class SLPHeaderV2.class SLPServerHeaderV2.class \
88 SLPHeaderV1.class SLPV1Manage
[all...]
/osnet-11/usr/src/lib/sun_fc/common/
H A DEvent.h33 * @memo Super-class for all types of events that are
37 class Event { };
H A DExceptions.h45 class HBAException {
61 class NotSupportedException : public HBAException {
69 class InvalidHandleException : public HBAException {
78 class BadArgumentException : public HBAException {
86 class IllegalWWNException : public HBAException {
94 class IllegalIndexException : public HBAException {
102 class MoreDataException : public HBAException {
110 class StaleDataException : public HBAException {
118 class CheckConditionException : public HBAException {
126 class BusyExceptio
[all...]
H A DHandleNPIVPort.h32 class Handle;
33 class HandlePort;
34 class HandleNPIVPort;
48 class HandleNPIVPort : public Lockable {
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/lib/Filter/Simple/
H A DImportTest.pm11 my $class = shift;
13 __PACKAGE__->export_to_level(1,$class);
H A DFilterOnlyTest.pm7 my $class = shift;
H A DFilterTest.pm6 my $class = shift;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/t/lib/Dev/
H A DNull.pm9 my $class = shift;
11 return bless $fh, $class;
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Bin/
H A Dj_package.d3 * j_package.d - count Java class loads by package using DTrace.
16 * PACKAGE Package name from class
44 hotspot*:::class-loaded
46 this->class = (char *)copyin(arg0, arg1 + 1);
47 this->class[arg1] = '\0';
49 @loads[pid, dirname(stringof(this->class))] = count();
H A Dj_calls.d22 * cload class load
57 this->class = (char *)copyin(arg1, arg2 + 1);
58 this->class[arg2] = '\0';
61 this->name = strjoin(strjoin(stringof(this->class), "."),
68 this->class = (char *)copyin(arg1, arg2 + 1);
69 this->class[arg2] = '\0';
70 @calls[pid, "oalloc", stringof(this->class)] = count();
73 hotspot*:::class-loaded
75 this->class = (char *)copyin(arg0, arg1 + 1);
76 this->class[arg
[all...]
H A Dj_objnew.d17 * CLASS.METHOD Java class and method name
47 this->class = (char *)copyin(arg1, arg2 + 1);
48 this->class[arg2] = '\0';
49 @objs[pid, stringof(this->class)] = count();
50 @dist[pid, stringof(this->class)] = quantize(arg3);
55 printf("Java object allocation byte distributions by pid and class,\n");
58 printf("Java object allocation count by pid and class,\n\n");
/osnet-11/usr/src/cmd/dtrace_toolkit/DTT/Java/
H A Dj_package.d3 * j_package.d - count Java class loads by package using DTrace.
16 * PACKAGE Package name from class
44 hotspot*:::class-loaded
46 this->class = (char *)copyin(arg0, arg1 + 1);
47 this->class[arg1] = '\0';
49 @loads[pid, dirname(stringof(this->class))] = count();
H A Dj_calls.d22 * cload class load
57 this->class = (char *)copyin(arg1, arg2 + 1);
58 this->class[arg2] = '\0';
61 this->name = strjoin(strjoin(stringof(this->class), "."),
68 this->class = (char *)copyin(arg1, arg2 + 1);
69 this->class[arg2] = '\0';
70 @calls[pid, "oalloc", stringof(this->class)] = count();
73 hotspot*:::class-loaded
75 this->class = (char *)copyin(arg0, arg1 + 1);
76 this->class[arg
[all...]
H A Dj_objnew.d17 * CLASS.METHOD Java class and method name
47 this->class = (char *)copyin(arg1, arg2 + 1);
48 this->class[arg2] = '\0';
49 @objs[pid, stringof(this->class)] = count();
50 @dist[pid, stringof(this->class)] = quantize(arg3);
55 printf("Java object allocation byte distributions by pid and class,\n");
58 printf("Java object allocation count by pid and class,\n\n");
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Digest/t/lib/Digest/
H A DDummy.pm11 my $class = shift;
13 bless { d => $d }, $class;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigInt/t/
H A Dbigfltpm.t36 use vars qw ($class $try $x $y $f @args $ans $ans1 $ans1_str $setup $CL);
37 $class = "Math::BigFloat";
40 ok ($class->config()->{class},$class);
41 ok ($class->config()->{with}, $CL);
H A Dtrap.t22 foreach my $class ($mbi, $mbf)
25 ok ($class->can('config'));
26 ok ($class->config()->{trap_nan}, 0);
27 ok ($class->config()->{trap_inf}, 0);
30 $cfg = $class->config( trap_nan => 1 ); ok ($cfg->{trap_nan},1);
33 eval ("\$x = \$class->new('42'); \$x->bnan();");
38 $cfg = $class->config( trap_nan => 0 ); ok ($cfg->{trap_nan},0);
41 $cfg = $class->config( trap_inf => 1 ); ok ($cfg->{trap_inf},1);
42 eval ("\$x = \$class->new('4711'); \$x->binf();");
47 eval ("\$x = \$class
[all...]
H A Dmbimbf.t77 foreach my $class (qw/Math::BigInt Math::BigFloat/)
79 ok ($class->accuracy(5),5); # set A
80 ok_undef ($class->precision()); # and now P must be cleared
81 ok ($class->precision(5),5); # set P
82 ok_undef ($class->accuracy()); # and now A must be cleared
85 foreach my $class (qw/Math::BigInt Math::BigFloat/)
87 $class->accuracy(42);
88 my $x = $class->new(123); # $x gets A of 42, too!
95 $class->accuracy(undef); # reset for further tests
96 $class
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/CGI/t/
H A Dstart_end_asterisk.t14 is(start_h1({class => 'hello'}), "<h1 class=\"hello\">", "start_h1 with param"); # TEST
18 is(start_h2({class => 'hello'}), "<h2 class=\"hello\">", "start_h2 with param"); # TEST
22 is(start_h3({class => 'hello'}), "<h3 class=\"hello\">", "start_h3 with param"); # TEST
26 is(start_h4({class => 'hello'}), "<h4 class=\"hello\">", "start_h4 with param"); # TEST
30 is(start_h5({class => 'hello'}), "<h5 class
[all...]
H A Dstart_end_end.t14 is(start_h1({class => 'hello'}), "<h1 class=\"hello\">", "start_h1 with param"); # TEST
18 is(start_h2({class => 'hello'}), "<h2 class=\"hello\">", "start_h2 with param"); # TEST
22 is(start_h3({class => 'hello'}), "<h3 class=\"hello\">", "start_h3 with param"); # TEST
26 is(start_h4({class => 'hello'}), "<h4 class=\"hello\">", "start_h4 with param"); # TEST
30 is(start_h5({class => 'hello'}), "<h5 class
[all...]
H A Dstart_end_start.t14 is(start_h1({class => 'hello'}), "<h1 class=\"hello\">", "start_h1 with param"); # TEST
18 is(start_h2({class => 'hello'}), "<h2 class=\"hello\">", "start_h2 with param"); # TEST
22 is(start_h3({class => 'hello'}), "<h3 class=\"hello\">", "start_h3 with param"); # TEST
26 is(start_h4({class => 'hello'}), "<h4 class=\"hello\">", "start_h4 with param"); # TEST
30 is(start_h5({class => 'hello'}), "<h5 class
[all...]
/osnet-11/usr/src/lib/libdns_sd/java/com/apple/dnssd/
H A DMakefile37 CLASSES = $(SOURCE:java=class)
49 SIMPLECHATOBJ = $(EXAMPLESDIR)/SwingBrowseListener.class \
50 $(EXAMPLESDIR)/SwingQueryListener.class \
51 $(EXAMPLESDIR)/SimpleChat.class
52 BROWSERAPPOBJ = $(EXAMPLESDIR)/SwingResolveListener.class \
53 $(EXAMPLESDIR)/SwingDomainListener.class \
54 $(EXAMPLESDIR)/BrowserApp.class
62 CLEAN_FILES = *.class $(JNIH) *.jar $(EXAMPLESDIR)/*.class $(EXAMPLESDIR)/*.jar
80 class
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Math/BigRat/t/
H A Dtrap.t21 foreach my $class ($mbi)
24 ok ($class->can('config'));
25 ok ($class->config()->{trap_nan}, 0);
26 ok ($class->config()->{trap_inf}, 0);
29 $cfg = $class->config( trap_nan => 1 ); ok ($cfg->{trap_nan},1);
32 $cfg = $class->config( { trap_nan => 1 } ); ok ($cfg->{trap_nan},1);
35 eval ("\$x = \$class->new('42'); \$x->bnan();");
40 $cfg = $class->config( trap_nan => 0 ); ok ($cfg->{trap_nan},0);
43 $cfg = $class->config( trap_inf => 1 ); ok ($cfg->{trap_inf},1);
44 eval ("\$x = \$class
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Encode/t/
H A DMod_EUCJP.pm6 my $class = shift;
10 }, $class;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/t/
H A Dtime.t80 my $class = shift;
81 return if $fail{$class}{new} and $fail{$class}{new}--;
82 bless( { @_ }, $class );
87 my $class = ref($self);
88 return if $fail{$class}{'send'} and $fail{$class}{'send'}--;
120 my $class = shift;
121 return if defined $fail{$class}{new} and $fail{$class}{ne
[all...]

Completed in 64 milliseconds

1234567891011>>