Searched refs:argList (Results 1 - 25 of 93) sorted by relevance

1234

/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclPanic.c79 Tcl_PanicVA (format, argList)
82 va_list argList; /* Variable argument list. */
88 arg1 = va_arg(argList, char *);
89 arg2 = va_arg(argList, char *);
90 arg3 = va_arg(argList, char *);
91 arg4 = va_arg(argList, char *);
92 arg5 = va_arg(argList, char *);
93 arg6 = va_arg(argList, char *);
94 arg7 = va_arg(argList, char *);
95 arg8 = va_arg(argList, cha
130 va_list argList; local
[all...]
H A DtclResult.c457 Tcl_AppendResultVA (interp, argList)
460 va_list argList; /* Variable argument list. */
489 string = va_arg(argList, char *);
572 va_list argList;
574 interp = TCL_VARARGS_START(Tcl_Interp *,arg1,argList);
575 Tcl_AppendResultVA(interp, argList);
576 va_end(argList);
883 Tcl_SetErrorCodeVA (interp, argList)
886 va_list argList; /* Variable argument list. */
899 string = va_arg(argList, cha
563 va_list argList; local
920 va_list argList; local
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclPanic.c79 va_list argList) /* Variable argument list. */
85 arg1 = va_arg(argList, char *);
86 arg2 = va_arg(argList, char *);
87 arg3 = va_arg(argList, char *);
88 arg4 = va_arg(argList, char *);
89 arg5 = va_arg(argList, char *);
90 arg6 = va_arg(argList, char *);
91 arg7 = va_arg(argList, char *);
92 arg8 = va_arg(argList, char *);
132 va_list argList;
74 Tcl_PanicVA( CONST char *format, va_list argList) argument
129 va_list argList; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tbcload/tbcload/tests/tcl/
H A DprocRedef.tcl19 __test_originalProcCmd proc { name argList body } {
20 __test_originalProcCmd $name $argList {return 333}
H A DprocRedefNub.tcl21 DbgNub_procCmd proc { name argList body } {
22 DbgNub_procCmd $name $argList {return 333}
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/devtools/
H A Dtestutilities.tcl200 proc ::tcltest::wrongNumArgs {functionName argList missingIndex} {
201 if {[string match args [lindex $argList end]]} {
202 set argList [lreplace $argList end end ?arg ...?]
204 if {$argList != {}} {set argList " $argList"}
205 set msg "wrong # args: should be \"$functionName$argList\""
209 proc ::tcltest::tooManyArgs {functionName argList} {
211 if {[llength $argList]} {
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tklib/tklib/modules/tablelist/scripts/
H A DtablelistWidget.tcl845 proc tablelist::activateSubCmd {win argList} {
846 if {[llength $argList] != 1} {
857 set index [rowIndex $win [lindex $argList 0] 0]
871 proc tablelist::activatecellSubCmd {win argList} {
872 if {[llength $argList] != 1} {
883 foreach {row col} [cellIndex $win [lindex $argList 0] 0] {}
900 proc tablelist::applysortingSubCmd {win argList} {
901 if {[llength $argList] != 1} {
905 return [sortList $win [lindex $argList 0]]
911 proc tablelist::attribSubCmd {win argList} {
[all...]
H A Dmwutil.tcl359 proc mwutil::configureSubCmd {win configSpecsName configCmd cgetCmd argList} {
362 set argCount [llength $argList]
367 return [configureWidget $win configSpecs $configCmd $cgetCmd $argList 0]
372 set opt [fullConfigOpt [lindex $argList 0] configSpecs]
408 proc mwutil::attribSubCmd {win prefix argList} {
412 set argCount [llength $argList]
418 return -code error "value for \"[lindex $argList end]\" missing"
420 foreach {attr val} $argList {
428 set attr [lindex $argList 0]
485 proc mwutil::getScrollInfo argList {
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/xotcl/xotcl/generic/
H A DxotclError.c26 va_list argList; local
30 interp = TCL_VARARGS_START(Tcl_Interp *, arg1, argList);
33 string = va_arg(argList, char *);
39 va_end(argList);
/macosx-10.9.5/tcl-102/tcl84/tcl/tools/
H A Dman2html2.tcl633 proc SHmacro argList {
636 set args [join $argList " "]
637 if {[llength $argList] < 1} {
678 # argList - List of arguments to the .IP macro.
682 proc IPmacro argList {
686 set length [llength $argList]
697 formattedText [lindex $argList 0]
701 puts stderr "Bad .IP macro: .IP [join $argList " "]"
716 # argList - List of arguments to the .IP macro.
721 proc TPmacro {argList} {
[all...]
H A Dman2help2.tcl710 proc SHmacro {argList} {
713 set args [join $argList " "]
714 if {[llength $argList] < 1} {
757 # argList - List of arguments to the .IP macro.
761 proc IPmacro {argList} {
764 set length [llength $argList]
773 formattedText [lindex $argList 0]
778 set count [lindex $argList 1]
783 formattedText [lindex $argList 0]
787 puts stderr "Bad .IP macro: .IP [join $argList " "]"
[all...]
H A DgenStubs.tcl288 lappend argList [string trim $arg]
290 if {![string compare [lindex $argList end] "..."]} {
291 if {[llength $argList] != 2} {
294 set arg [parseArg [lindex $argList 0]]
296 puts stderr "Bad argument: '[lindex $argList 0]' in '$decl'"
302 foreach arg $argList {
424 set argList ""
427 set argList "()"
434 append argList $sep [lindex $arg 1]
437 append argList ")"
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclx/tclx/generic/
H A DtclXprocess.c74 * execl ?-argv0 ? prog ?argList?
86 char **argList = staticArgv;
126 argList [1] = NULL;
133 argList = (char **) ckalloc ((argObjc + 1) * sizeof (char **));
136 argList [idx + 1] = Tcl_GetStringFromObj (argObjv [idx], NULL);
138 argList [argObjc + 1] = NULL;
142 argList [0] = argv0;
144 argList [0] = path; /* Program name */
147 status = TclXOSexecl (interp, path, argList);
150 if (argList !
84 char **argList = staticArgv; local
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/tools/
H A Dman2html2.tcl708 proc SHmacro {argList {style section}} {
711 set args [join $argList " "]
712 if {[llength $argList] < 1} {
758 # argList - List of arguments to the .IP macro.
762 proc IPmacro argList {
766 set length [llength $argList]
772 if {[lindex $argList 0] eq "\\(bu"} {
776 if {[regexp {^\[\d+\]$} [lindex $argList 0]]} {
781 formattedText [lindex $argList 0]
798 # argList
[all...]
H A Dman2help2.tcl757 proc SHmacro {argList {style section}} {
760 set args [join $argList " "]
761 if {[llength $argList] < 1} {
806 # argList - List of arguments to the .IP macro.
810 proc IPmacro {argList} {
813 set length [llength $argList]
814 foreach {text indent} $argList break
816 puts stderr "Bad .IP macro: .IP [join $argList " "]"
848 # argList - List of arguments to the .IP macro.
852 proc TPmacro {argList} {
[all...]
/macosx-10.9.5/libsecurity_ldap_dl-55002/lib/
H A DTableRelation.cpp98 va_list argList; local
99 va_start (argList, column0Value);
104 Value* next = va_arg (argList, Value*);
108 va_end (argList);
/macosx-10.9.5/tcl-102/tcl_ext/memchan/memchan/tools/
H A DgenStubs.tcl280 lappend argList [string trim $arg]
282 if {![string compare [lindex $argList end] "..."]} {
283 if {[llength $argList] != 2} {
286 set arg [parseArg [lindex $argList 0]]
288 puts stderr "Bad argument: '[lindex $argList 0]' in '$decl'"
294 foreach arg $argList {
416 set argList ""
419 set argList "()"
426 append argList $sep [lindex $arg 1]
429 append argList ")"
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tbcload/tbcload/tools/
H A DgenStubs.tcl280 lappend argList [string trim $arg]
282 if {![string compare [lindex $argList end] "..."]} {
283 if {[llength $argList] != 2} {
286 set arg [parseArg [lindex $argList 0]]
288 puts stderr "Bad argument: '[lindex $argList 0]' in '$decl'"
294 foreach arg $argList {
416 set argList ""
419 set argList "()"
426 append argList $sep [lindex $arg 1]
429 append argList ")"
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tcldom/tools/
H A DgenStubs.tcl280 lappend argList [string trim $arg]
282 if {![string compare [lindex $argList end] "..."]} {
283 if {[llength $argList] != 2} {
286 set arg [parseArg [lindex $argList 0]]
288 puts stderr "Bad argument: '[lindex $argList 0]' in '$decl'"
294 foreach arg $argList {
416 set argList ""
419 set argList "()"
426 append argList $sep [lindex $arg 1]
429 append argList ")"
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tclxml/tclxml/tools/
H A DgenStubs.tcl280 lappend argList [string trim $arg]
282 if {![string compare [lindex $argList end] "..."]} {
283 if {[llength $argList] != 2} {
286 set arg [parseArg [lindex $argList 0]]
288 puts stderr "Bad argument: '[lindex $argList 0]' in '$decl'"
294 foreach arg $argList {
416 set argList ""
419 set argList "()"
426 append argList $sep [lindex $arg 1]
429 append argList ")"
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/tools/
H A DgenStubs.tcl280 lappend argList [string trim $arg]
282 if {![string compare [lindex $argList end] "..."]} {
283 if {[llength $argList] != 2} {
286 set arg [parseArg [lindex $argList 0]]
288 puts stderr "Bad argument: '[lindex $argList 0]' in '$decl'"
294 foreach arg $argList {
416 set argList ""
419 set argList "()"
426 append argList $sep [lindex $arg 1]
429 append argList ")"
[all...]
/macosx-10.9.5/tcl-102/tk/tk/library/
H A Dcomdlg.tcl36 # argList = The list of "-option value" pairs.
38 proc tclParseConfigSpec {w specs flags argList} {
55 if {[llength $argList] & 1} {
56 set cmdsw [lindex $argList end]
71 foreach {cmdsw value} $argList {
/macosx-10.9.5/tcl-102/tk84/tk/library/
H A Dcomdlg.tcl36 # argList = The list of "-option value" pairs.
38 proc tclParseConfigSpec {w specs flags argList} {
55 if {[llength $argList] & 1} {
56 set cmdsw [lindex $argList end]
71 foreach {cmdsw value} $argList {
/macosx-10.9.5/xnu-2422.115.4/libkern/c++/
H A DOSString.cpp144 va_list argList;
149 va_start(argList, format);
151 me->length = vsnprintf(me->string, 256, format, argList);
155 va_end (argList);
/macosx-10.9.5/tcl-102/tcl_ext/incrtcl/incrTcl/tools/
H A DgenStubs.tcl288 lappend argList [string trim $arg]
290 if {![string compare [lindex $argList end] "..."]} {
291 if {[llength $argList] != 2} {
294 set arg [parseArg [lindex $argList 0]]
296 puts stderr "Bad argument: '[lindex $argList 0]' in '$decl'"
302 foreach arg $argList {
425 set argList ""
428 set argList "()"
435 append argList $sep [lindex $arg 1]
438 append argList ")"
[all...]

Completed in 599 milliseconds

1234