Searched refs:cmdIndex (Results 1 - 25 of 27) sorted by relevance

12

/macosx-10.10.1/tcl-105/tcl/tcl/unix/dltest/
H A Dpkgua.c208 int code, cmdIndex = 0;
230 cmdTokens[cmdIndex++] =
233 cmdTokens[cmdIndex++] =
289 int code, cmdIndex;
292 for (cmdIndex=0 ; cmdIndex<MAX_REGISTERED_COMMANDS ; cmdIndex++) {
293 if (cmdTokens[cmdIndex] == NULL) {
296 code = Tcl_DeleteCommandFromToken(interp, cmdTokens[cmdIndex]);
201 int code, cmdIndex = 0; local
280 int code, cmdIndex; local
/macosx-10.10.1/tcl-105/tcl_ext/quicktimetcl/quicktimetcl/
H A DSystemUI.c67 int cmdIndex; local
128 TCL_EXACT, &cmdIndex ) != TCL_OK ) {
131 switch(cmdIndex) {
H A DMovieCallBack.c72 int cmdIndex;
101 TCL_EXACT, &cmdIndex ) != TCL_OK ) {
103 cmdIndex = -1;
115 switch (cmdIndex) {
71 int cmdIndex; local
H A DTimeCode.c92 int cmdIndex; local
96 TCL_EXACT, &cmdIndex ) != TCL_OK ) {
104 switch(cmdIndex) {
H A DTracksCommand.c213 int cmdIndex; local
289 TCL_EXACT, &cmdIndex ) != TCL_OK ) {
297 switch (cmdIndex) {
1724 int cmdIndex;
1748 "tracks add command", TCL_EXACT, &cmdIndex ) != TCL_OK ) {
1756 switch (cmdIndex) {
1880 if (cmdIndex == kTracksCmdAddPicture) {
2029 if (cmdIndex == kTracksCmdAddPicture) {
1723 int cmdIndex; local
H A DSeqGrabber.c492 int cmdIndex; local
510 TCL_EXACT, &cmdIndex ) != TCL_OK ) {
519 switch(cmdIndex) {
889 if (cmdIndex == kGrabberCmdVideoSettings) {
924 } else if (cmdIndex == kGrabberCmdAudioSettings) {
H A DMovieQTVRUtils.c95 int cmdIndex;
181 TCL_EXACT, &cmdIndex ) != TCL_OK ) {
185 switch (cmdIndex) {
94 int cmdIndex; local
/macosx-10.10.1/tcl-105/tcl_ext/tktable/tktable/generic/
H A DtkTableCmds.c352 int x, y, w, h, row, col, key, dummy, value, cmdIndex;
361 "option", 0, &cmdIndex) != TCL_OK ||
375 switch ((enum bdCmd) cmdIndex) {
485 int cmdIndex, redraw = 0;
493 "clear option", 0, &cmdIndex) != TCL_OK) {
498 if (cmdIndex == CLEAR_TAGS || cmdIndex == CLEAR_ALL) {
515 if (cmdIndex == CLEAR_SIZES || cmdIndex == CLEAR_ALL) {
524 if (cmdIndex
349 int x, y, w, h, row, col, key, dummy, value, cmdIndex; local
481 int cmdIndex, redraw = 0; local
825 int x, y, row, col, cmdIndex; local
[all...]
H A DtkTableEdit.c69 int doInsert, cmdIndex, first, last; local
77 "option", 0, &cmdIndex) != TCL_OK) {
82 switch ((enum modCmd) cmdIndex) {
131 doRows = (cmdIndex == MOD_ROWS);
138 "switch", 0, &cmdIndex) != TCL_OK) {
141 if (cmdIndex == OPT_LAST) {
145 switch (cmdIndex) {
H A DtkTableTag.c674 int result = TCL_OK, cmdIndex, i, newEntry, value, len;
690 "tag option", 0, &cmdIndex);
700 switch ((enum tagCmd) cmdIndex) {
834 int forRows = (cmdIndex == TAG_ROWTAG);
961 if (cmdIndex == TAG_ROWTAG) {
1222 Tcl_WrongNumArgs(interp, 3, objv, (cmdIndex == TAG_LOWER) ?
1246 if (cmdIndex == TAG_LOWER) {
1252 if (cmdIndex == TAG_LOWER) {
662 int result = TCL_OK, cmdIndex, i, newEntry, value, len; local
H A DtkTableWin.c813 int result = TCL_OK, cmdIndex, row, col, x, y, width, height, i, new; local
826 "option", 0, &cmdIndex) != TCL_OK) {
829 switch ((enum winCommand) cmdIndex) {
H A DtkTable.c642 int row, col, i, cmdIndex, result = TCL_OK;
651 "option", 0, &cmdIndex);
657 switch ((enum command) cmdIndex) {
818 "selection option", 0, &cmdIndex) != TCL_OK) {
822 switch ((enum selCommand) cmdIndex) {
641 int row, col, i, cmdIndex, result = TCL_OK; local
/macosx-10.10.1/IOFireWireAVC-422.4.0/IOFireWireAVC/
H A DIOFireWireAVCUnit.cpp391 UInt32 cmdIndex; local
412 cmdIndex = fAVCUnit->indexOfAVCAsynchronousCommandObject(this);
413 if (cmdIndex != 0xFFFFFFFF)
415 fAVCUnit->removeAVCAsynchronousCommandObjectAtIndex(cmdIndex);
1245 UInt32 cmdIndex;
1261 cmdIndex = pAVCUnit->indexOfAVCAsynchronousCommandObject(pCmdObject);
1262 if (cmdIndex == 0xFFFFFFFF)
1290 pAVCUnit->removeAVCAsynchronousCommandObjectAtIndex(cmdIndex);
1320 UInt32 cmdIndex;
1332 cmdIndex
[all...]
/macosx-10.10.1/tcl-105/tcl84/tcl/generic/
H A DtclCompile.c2494 * environment envPtr for the command at index cmdIndex. The
2501 EnterCmdStartData(envPtr, cmdIndex, srcOffset, codeOffset)
2505 int cmdIndex; /* Index of the command whose start data
2512 if ((cmdIndex < 0) || (cmdIndex >= envPtr->numCommands)) {
2513 panic("EnterCmdStartData: bad command index %d\n", cmdIndex);
2516 if (cmdIndex >= envPtr->cmdMapEnd) {
2543 if (cmdIndex > 0) {
2544 if (codeOffset < envPtr->cmdMapPtr[cmdIndex-1].codeOffset) {
2549 cmdLocPtr = &(envPtr->cmdMapPtr[cmdIndex]);
[all...]
/macosx-10.10.1/tcl-105/tcl/tcl/generic/
H A DtclCompile.c2419 * environment envPtr for the command at index cmdIndex. The compilation
2430 int cmdIndex, /* Index of the command whose start data is
2437 if ((cmdIndex < 0) || (cmdIndex >= envPtr->numCommands)) {
2438 Tcl_Panic("EnterCmdStartData: bad command index %d", cmdIndex);
2441 if (cmdIndex >= envPtr->cmdMapEnd) {
2469 if (cmdIndex > 0) {
2470 if (codeOffset < envPtr->cmdMapPtr[cmdIndex-1].codeOffset) {
2475 cmdLocPtr = &(envPtr->cmdMapPtr[cmdIndex]);
2497 * environment envPtr for the command at index cmdIndex
2409 EnterCmdStartData( CompileEnv *envPtr, int cmdIndex, int srcOffset, int codeOffset) argument
2487 EnterCmdExtentData( CompileEnv *envPtr, int cmdIndex, int numSrcBytes, int numCodeBytes) argument
[all...]
H A DtclTestObj.c828 int cmdIndex; /* Ordinal number of the subcommand */
841 0, &cmdIndex) != TCL_OK) {
844 switch(cmdIndex) {
821 int cmdIndex; /* Ordinal number of the subcommand */ local
H A DtclCompile.h741 int cmdIndex; /* Index of the first command after the one
738 int cmdIndex; /* Index of the first command after the one member in struct:JumpFixup
/macosx-10.10.1/tcl-105/tk/tk/generic/ttk/
H A DttkTheme.c1667 const Ttk_Ensemble *ensemble, int cmdIndex,
1670 while (cmdIndex < objc) {
1673 objv[cmdIndex], ensemble, sizeof(ensemble[0]),
1684 ++cmdIndex;
1686 Tcl_WrongNumArgs(interp, cmdIndex, objv, "option ?arg ...?");
1666 Ttk_InvokeEnsemble( const Ttk_Ensemble *ensemble, int cmdIndex, void *clientData, Tcl_Interp *interp, int objc, Tcl_Obj *const objv[]) argument
H A DttkTheme.h421 const Ttk_Ensemble *commands, int cmdIndex,
/macosx-10.10.1/modemccl-25.1/CCLEngine/
H A DCCLEngine.c1425 int cmdIndex, result; local
1448 cmdIndex = cFirstCmd;
1452 while (cmdIndex <= cLastCmd && !cmdFound) {
1453 if (cmdIndex == cComment && SV.strBuf[1] == bp[1]) {
1458 result = cmdIndex;
1463 cmdIndex++;
/macosx-10.10.1/tcl-105/tk/tk/generic/
H A DtkEntry.c595 int cmdIndex, selIndex, result;
609 "option", 0, &cmdIndex);
615 switch ((enum entryCmd) cmdIndex) {
3671 int cmdIndex, selIndex, result;
3685 "option", 0, &cmdIndex);
3691 switch ((enum sbCmd) cmdIndex) {
3848 selElementNames, "element", 0, &cmdIndex);
3853 if (SpinboxInvoke(interp, sbPtr, cmdIndex) != TCL_OK) {
593 int cmdIndex, selIndex, result; local
3640 int cmdIndex, selIndex, result; local
H A DtkListbox.c605 int cmdIndex, index;
619 "option", 0, &cmdIndex);
630 switch (cmdIndex) {
603 int cmdIndex, index; local
/macosx-10.10.1/tcl-105/tk84/tk/generic/
H A DtkEntry.c631 int cmdIndex, selIndex, result;
645 "option", 0, &cmdIndex);
651 switch ((enum entryCmd) cmdIndex) {
3710 int cmdIndex, selIndex, result;
3724 "option", 0, &cmdIndex);
3730 switch ((enum sbCmd) cmdIndex) {
3891 selElementNames, "element", 0, &cmdIndex);
3896 if (SpinboxInvoke(interp, sbPtr, cmdIndex) != TCL_OK) {
629 int cmdIndex, selIndex, result; local
3681 int cmdIndex, selIndex, result; local
H A DtkListbox.c612 int cmdIndex, index;
625 "option", 0, &cmdIndex);
632 switch (cmdIndex) {
610 int cmdIndex, index; local
/macosx-10.10.1/tcl-105/tcl_ext/expect/expect/
H A Dexp_command.c629 int cmdIndex; local
812 cmdIndex = i;
1333 for (k=0, i=cmdIndex;i<objc;k++,i++) {
1341 for (k=0,i=cmdIndex;i<objc;k++,i++) {

Completed in 397 milliseconds

12