Searched refs:Select (Results 1 - 25 of 32) sorted by relevance

12

/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/t/
H A DSelect.t12 require_ok( 'Pod::Select' );
16 my $p_s = Pod::Select->new;
17 isa_ok( $p_s, 'Pod::Select' );
22 Select.t - Tests for Pod::Select.
33 This program just tests the basics of the Pod::Select module.
76 I'll go by the POD in Pod::Select.
94 Select.t - Tests for Pod::Select.
98 This program just tests the basics of the Pod::Select modul
[all...]
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IO/t/
H A Dio_sel.t15 use IO::Select 1.09;
17 my $sel = new IO::Select(\*STDIN);
44 $sel = new IO::Select;
76 @a = IO::Select::select(undef, $sel, undef, 1);
125 IO::Select::has_error();
129 use warnings 'IO::Select' ;
130 IO::Select::has_error();
/osnet-11/usr/src/lib/libsqlite/src/
H A DsqliteInt.h246 typedef struct Select Select; typedef in typeref:struct:Select
506 Select *pSelect; /* NULL for tables. Points to definition if a view. */
698 Select *pSelect; /* When the expression is a sub-select. Also the
779 Select *pSelect; /* A SELECT statement used in place of a table name */
839 ** The zSelect field is used when the Select structure must be persistent.
841 ** string that encodes the select. But if the Select structure must live
853 struct Select { struct
862 Select *pPrior; /* Prior select in a compound select statement */
1030 Select *pSelec
[all...]
H A Dselect.c22 ** Allocate a new Select structure and return a pointer to that
25 Select *sqliteSelectNew(
36 Select *pNew;
210 static int sqliteProcessJoin(Parse *pParse, Select *p){
286 ** Delete the given Select structure and all of its substructures.
288 void sqliteSelectDelete(Select *p){
373 Select *p, /* The SELECT statement being coded */
403 Select *p, /* The complete select statement being coded */
584 Select *p, /* The SELECT statement */
782 static int fillInColumnList(Parse*, Select*);
[all...]
H A Dtrigger.c251 Select *pNew = sqliteSelectDup(p->pSelect);
279 TriggerStep *sqliteTriggerSelectStep(Select *pSelect){
302 Select *pSelect, /* A SELECT statement that supplies values */
618 Select * ss = sqliteSelectDup(pTriggerStep->pSelect);
H A Dexpr.c224 Select *sqliteSelectDup(Select *p){
225 Select *pNew;
H A Dattach.c247 Select *pSelect /* The SELECT statement to be fixed to one database */
H A Ddelete.c154 Select *pView = sqliteSelectDup(pTab->pSelect);
H A Dupdate.c223 Select *pView;
H A Dparse.y288 %type select {Select*}
290 %type oneselect {Select*}
363 // "seltablist" is a "Select Table List" - the content of the FROM clause
402 %type seltablist_paren {Select*}
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IO/lib/IO/
H A DSelect.pm1 # IO::Select.pm
7 package IO::Select;
240 IO::Select - OO interface to the select system call
244 use IO::Select;
246 $s = IO::Select->new();
253 @ready = IO::Select->new(@handles)->can_read(0);
257 The C<IO::Select> package implements an object approach to the system C<select>
278 Add the list of handles to the C<IO::Select> object. It is these values that
279 will be returned when an event occurs. C<IO::Select> keeps these values in a
331 C<IO::Select> object
[all...]
H A DSocket.pm116 require IO::Select;
118 my $sel = new IO::Select $sock;
172 require IO::Select;
174 my $sel = new IO::Select $sock;
383 but you shouldn't do that because a new IO::Select object will be
H A DPoll.pm195 L<poll(2)>, L<IO::Handle>, L<IO::Select>
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/pod/
H A Dpodselect.PL39 # podselect -- command to invoke the podselect function in Pod::Select
92 B<podselect> invokes the B<podselect()> function exported by B<Pod::Select>
93 Please see L<Pod::Select/podselect()> for more details.
97 L<Pod::Parser> and L<Pod::Select>
110 use Pod::Select;
H A Dpod2latex.PL138 # Select sections if supplied
211 # Select sections if supplied
286 translation. See L<Pod::Select/"SECTION SPECIFICATIONS"> for the
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/
H A DTime.pm15 use IO::Select;
52 IO::Select->new($me)->can_read($timeout)
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/IO/
H A DIO.pm49 IO::Select
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Pod/
H A DSelect.pm2 # Pod/Select.pm -- function to select portions of POD docs
10 package Pod::Select;
20 Pod::Select, podselect() - extract selected sections of POD from input
24 use Pod::Select;
26 ## Select all the POD sections for each file in @filelist
33 ## Select from the given filelist, only those POD sections that are
37 ## Select the "DESCRIPTION" section of the PODs from STDIN and write
43 use Pod::Select;
46 $parser = new Pod::Select();
48 ## Select al
[all...]
H A DLaTeX.pm22 C<Pod::LaTeX> is a derived class from L<Pod::Select|Pod::Select>.
29 use base qw/ Pod::Select /;
361 from C<Pod::Select> are not described in the public interface.
845 The following methods override methods provided in the C<Pod::Select>
846 base class. See C<Pod::Parser> and C<Pod::Select> for more information
1829 A subclass of C<Pod::Select> so that specific pod sections can be
1836 L<Pod::Parser>, L<Pod::Select>, L<pod2latex>
H A DPlainText.pm23 use Pod::Select ();
28 # We inherit from Pod::Select instead of Pod::Parser so that we can be used
30 @ISA = qw(Pod::Select);
H A DText.pm31 use Pod::Select ();
36 # We inherit from Pod::Select instead of Pod::Parser so that we can be used by
38 @ISA = qw(Pod::Select Exporter);
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/Net/t/
H A Dtime.t15 $INC{'IO/Select.pm'} = 1;
23 # cannot use(), otherwise it will use IO::Socket and IO::Select
117 package IO::Select;
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/ExtUtils/
H A Dinstmodsh103 m <module> - Select a module
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/lib/IPC/
H A DOpen3.pm69 to use select() or the IO::Select, which means you'd best use
/osnet-11/usr/src/cmd/perl/5.8.4/distrib/ext/Sys/Syslog/
H A DSyslog.pm1101 Select the UDP socket mechanism:
1105 Select the native, UDP socket then UNIX domain socket mechanisms:

Completed in 82 milliseconds

12