Searched +refs:snit +refs:type (Results 1 - 25 of 29) sorted by relevance

12

/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/transfer/
H A Dconnect.tcl10 package require snit
15 snit::type ::transfer::connect {
22 option -mode -default active -type {snit::enum -values {active passive}}
H A Ddsource.tcl11 package require snit
16 snit::type ::transfer::data::source {
30 method type {} {}
40 method type {} {
113 [$self type] [$self data] $sock \
H A Dtqueue.tcl20 package require snit ; # OO system
32 snit::type ::transfer::copy::queue {
66 # Request syntax: type dataref ?options?
77 set type [lindex $request 0]
78 switch -exact -- $type {
81 return -code error "Bad request: Unknown type \"$type\", expected chan, or string"
98 $queue put [list $type $ref [array get opts]]
125 foreach {type re
[all...]
H A Dtransmitter.tcl12 package require snit
19 snit::type ::transfer::transmitter {
28 set cmd [linsert $args 0 $type %AUTO% \
32 set cmd [linsert $args 0 $type %AUTO% \
54 return [eval [linsert $args 0 $type stream channel $chan $host $port]]
92 option -blocksize -default 1024 -type {snit::integer -min 1}
H A Dreceiver.tcl12 package require snit
19 snit::type ::transfer::receiver {
28 set cmd [linsert $args 0 $type %AUTO% \
32 set cmd [linsert $args 0 $type %AUTO% \
54 set receiver [eval [linsert $args 0 $type stream channel $chan $host $port]]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/cache/
H A Dasync.tcl17 package require snit ; #
22 snit::type cache::async {
35 option -full-async-results -default 1 -type snit::boolean
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/canvas/
H A Dcanvas_zoom.tcl12 package require snit ; #
18 snit::widget ::canvas::zoom {
23 -type {snit::enum -values {vertical horizontal}}
25 -type {snit::listtype -minlen 1 -maxlen 2 -type snit::integer}
H A Dcanvas_sqmap.tcl32 package require snit ; #
39 snit::widgetadaptor canvas::sqmap {
78 option -grid-cell-width -default 0 -configuremethod O-ReconfigureNum -type {snit::integer -min 0}
79 option -grid-cell-height -default 0 -configuremethod O-ReconfigureNum -type {snit::integer -min 0}
92 option -grid-show-borders -default 0 -type snit::boolean
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2idx/
H A Dstructure.tcl11 package require snit ; # OO system.
16 snit::type ::doctools::idx::structure {
24 # Basic syntax: Length and outer type code
118 $type verify $serial iscanonical
127 $type verify $serial iscanonical
169 $type verify $seriala
170 $type verify $serialb
231 #$type verify-as-canonical $serial
260 typevariable ourtag { bad type ta
[all...]
H A Dcontainer.tcl22 package require snit
27 snit::type ::doctools::idx {
34 # either url or symbolic filename, depending on the type of
43 # - The type of a reference (url, or manpage) is however bound to
154 return -code error "Bad reference type '$reftype'"
191 method {reference type} {name} {
388 variable myref -array {} ; # reference -> (type, label)
H A Dparse.tcl30 package require snit ; # OO system.
38 snit::type ::doctools::idx::parse {
43 log::debug [list $type file]
44 return [$type text [fileutil::cat $path] $path]
48 log::debug [list $type text]
173 $t walk $root -type dfs -order pre n {
181 switch -exact [$t get $n type] {
205 set parentt [$t get $parens type]
281 $t walk $root -type df
[all...]
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/diagrams/
H A Delement.tcl17 package require snit ; # Object framework.
25 snit::type ::diagram::element {
29 if {[$type is $id]} {return $id}
159 # points. This is why the corner values are type tagged,
273 # information (type, canvas items,
279 # element type, they are mapped to
283 # history without regard to type.
H A Dattributes.tcl14 package require snit ; # Object framework.
20 snit::type ::diagram::attribute {
32 set ovalidate [ValidateFunction spec] ; # snit validation type, or API compatible.
273 if {[info exists spec(type)]} {
274 set f $spec(type)
276 # The specification is type + arguments. Create a
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/nns/
H A Dnns.tcl13 package require snit ; # OO support, for streaming search class
316 proc ::nameserv::Search/Continuous/Change {tag type response} {
330 $tag DATA $type $response
334 snit::type ::nameserv::receiver {
399 proc Callback {type response} {
403 after 0 [linsert $options(-command) end $type $response]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/tie/
H A Dtie.tcl15 package require snit
56 return -code error "dstype and type arguments missing"
58 set type [lindex $args 0]
61 # Create DS object from type (DS class) and args.
62 if {[::info exists registry($type)]} {
63 set type $registry($type)
65 set dso [eval [concat $type %AUTO% $args]]
139 } elseif {$cmd eq "type"} {
141 return -code error "wrong#args: should be \"tie::info type dstyp
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2base/
H A Dtcl_parse.tcl27 package require snit ; # OO system.
39 snit::type ::doctools::tcl::parse {
44 $type text $t [fileutil::cat -translation binary -encoding binary $path] $root
63 # - All nodes but the root have the attributes 'type', 'range', 'line', and 'col'.
65 # * 'type' in { Command, Text, Backslash, Word, Quote, Continuation, QBrace }
70 # 'type' specifies what sort of token the node contains.
96 # .............. type of backslash sequence). The range is the
136 foreach n [$q query tree withatt type Text] {
144 foreach n [$q query tree withatt type QBrac
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/doctools2toc/
H A Dstructure.tcl11 package require snit ; # OO system.
16 snit::type ::doctools::toc::structure {
24 # Basic syntax: Length and outer type code
77 $type verify $serial iscanonical
85 $type verify $serial iscanonical
105 $type verify $seriala
106 $type verify $serialb
123 #$type verify-as-canonical $serial
362 typevariable ourtag { bad type ta
[all...]
H A Dcontainer.tcl22 package require snit
28 snit::type ::doctools::toc {
33 # - Both type of elements within the table are identified by their
40 # - Both type of elements within the division are identified by
60 $mytree set $myroot type division
128 $mytree set $new type reference
149 $mytree set $new type division
226 method type {id} {
228 return [$mytree get $id type]
[all...]
H A Dparse.tcl29 package require snit ; # OO system.
37 snit::type ::doctools::toc::parse {
42 log::debug [list $type file]
43 return [$type text [fileutil::cat $path] $path]
47 log::debug [list $type text]
172 $t walk $root -type dfs -order pre n {
180 switch -exact [$t get $n type] {
204 set parentt [$t get $parens type]
280 $t walk $root -type df
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/pluginmgr/
H A Dpluginmgr.tcl27 package require snit
32 snit::type ::pluginmgr {
158 set o [$type create %AUTO% \
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/devtools/
H A Dtestutilities.tcl285 if {[package vsatisfies [package provide snit] 2]} {
302 type selfns win self] $missingIndex
307 type selfns win self]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/grammar_peg/
H A Dpeg.tcl32 package require snit ; # Tcllib | OO system used
37 snit::type ::grammar::peg {
386 struct::list assign $value type nonterminals hints start
387 if {$type ne "grammar::pegc"} {
388 return -code error "$prefix unknown type \"$type\""
/macosx-10.10/tcl-105/tcl_ext/tklib/tklib/modules/widget/
H A Ddialog.tcl21 # -type -default custom ; # {ok okcancel okcancelapply custom}
41 -place right -parent . -type okcancel \
52 # Using -synchronous with a -type custom dialog requires that the
55 -parent . -type custom]
71 package require snit ; # object system
77 snit::widget widget::dialog {
100 option -type -default custom -configuremethod C-type;
179 return -code error "unknown add type \"$what\", must be:\
330 method C-type {optio
[all...]
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/fileutil/
H A Dmultiop.tcl126 package require snit ; # OO support
133 snit::type ::fileutil::multi::op {
162 excluded? QueryExcluded as? QueryAs type? QueryType \
393 type $types \
463 "file pathtype returned unknown type \"$pathtype\""
584 proc TLink {f} {expr {[file type $f] eq "link"}}
/macosx-10.10/tcl-105/tcl_ext/tcllib/tcllib/modules/treeql/
H A Dtreeql84.tcl2 # A generic tree query language in snit
12 package require snit
16 snit::type ::treeql {
400 # Returns the node type of nodes
402 set nodes [$self apply get @type]
406 # Reduce to nodes of @type $t
408 return [eval [linsert $args 0 $self stringP [list equal -nocase $t] @type]]
411 # Reduce to nodes not of @type $t
413 return [eval [linsert $args 0 $self stringNP [list equal -nocase $t] @type]]
[all...]

Completed in 227 milliseconds

12