Searched refs:beforeThis (Results 1 - 3 of 3) sorted by relevance
/ast/src/lib/libtk/generic/ |
H A D | tkCanvText.c | 152 Tk_Item *itemPtr, int beforeThis, char *string)); 907 TextInsert(canvas, itemPtr, beforeThis, string) 910 int beforeThis; /* Index of character before which text is 923 if (beforeThis < 0) { 924 beforeThis = 0; 926 if (beforeThis > textPtr->numChars) { 927 beforeThis = textPtr->numChars; 931 strncpy(new, textPtr->text, (size_t) beforeThis); 932 strcpy(new+beforeThis, string); 933 strcpy(new+beforeThis [all...] |
H A D | tkCanvas.c | 937 int beforeThis; 941 argv[0], " insert tagOrId beforeThis string\"", 952 itemPtr, argv[3], &beforeThis) != TCL_OK) { 965 itemPtr, beforeThis, argv[4]); 935 int beforeThis; local
|
H A D | tk.h | 636 Tk_Item *itemPtr, int beforeThis, char *string));
|
Completed in 27 milliseconds