Searched defs:new (Results 1 - 25 of 48) sorted by relevance

12

/ast/src/cmd/INIT/
H A Dhello.c23 int main() { int new = 0; printf("hello world\n"); return new;} local
H A Dpackage.mk257 old.new.source = $(PACKAGEDIR)/$(name).$(version).$(old.version).$(suffix)
258 old.new.binary = $(PACKAGEDIR)/$(name).$(version).$(old.version).$(CC.HOSTTYPE).$(suffix)
259 old.new.runtime = $(PACKAGEDIR)/$(name)-run.$(version).$(old.version).$(CC.HOSTTYPE).$(suffix)
1050 then $(PAX) -rf $(source) -wvf $(old.new.source) -z $(old.source)
1051 $(SUM) -x $(checksum) < $(old.new.source) > $(old.new.source:D:B:S=.$(checksum))
1331 then $(PAX) -rf $(binary) -wvf $(old.new.binary) -z $(old.binary)
1332 echo $(old.new.binary) >> $(binary:D:B=PACKAGE:S=.$(CC.HOSTTYPE).lst)
1333 $(SUM) -x $(checksum) < $(old.new.binary) > $(old.new
[all...]
/ast/src/lib/libtk/generic/
H A DtkAtom.c74 * A new entry may be added to the local atom cache.
87 int new;
94 hPtr = Tcl_CreateHashEntry(&dispPtr->nameTable, name, &new);
95 if (new) {
102 &new);
150 int new, mustFree;
162 &new);
169 &new);
207 int new;
211 &new);
86 int new; local
148 int new, mustFree; local
204 int new; local
[all...]
H A DtkGC.c104 int new;
241 valueHashPtr = Tcl_CreateHashEntry(&valueTable, (char *) &valueKey, &new);
242 if (!new) {
250 * new GC and add a new structure to the database.
280 idHashPtr = Tcl_CreateHashEntry(&idTable, (char *) &idKey, &new);
281 if (!new) {
103 int new; local
H A DtkConfig.c364 char *old, *new;
367 new = NULL;
369 new = (char *) ckalloc((unsigned) (strlen(value) + 1));
370 strcpy(new, value);
376 *((char **) ptr) = new;
426 Pixmap new, old;
429 new = None;
432 new = Tk_GetBitmap(interp, tkwin, uid);
433 if (new == None) {
441 *((Pixmap *) ptr) = new;
361 char *old, *new; local
423 Pixmap new, old; local
442 Tk_3DBorder new, old; local
468 Tk_Cursor new, old; local
[all...]
H A DtkCursor.c111 int new;
119 nameHashPtr = Tcl_CreateHashEntry(&nameTable, (char *) &nameKey, &new);
120 if (!new) {
142 idHashPtr = Tcl_CreateHashEntry(&idTable, (char *) &idKey, &new);
143 if (!new) {
194 int new;
210 dataHashPtr = Tcl_CreateHashEntry(&dataTable, (char *) &dataKey, &new);
211 if (!new) {
245 idHashPtr = Tcl_CreateHashEntry(&idTable, (char *) &idKey, &new);
246 if (!new) {
110 int new; local
192 int new; local
[all...]
H A DtkGeometry.c90 * Proc becomes the new geometry manager for tkwin, replacing
94 * manager for tkwin different from the new one, it is notified
217 * repositioned to take account of the new internal border width.
247 * with the new information. The caller must eventually call
265 int new, map;
279 hPtr = Tcl_CreateHashEntry(&maintainHashTable, (char *) master, &new);
280 if (!new) {
261 int new, map; local
H A DtkTextMark.c224 * Set a mark to a particular position, creating a new mark if
231 * A new mark is created, or an existing mark is moved.
245 int new;
247 hPtr = Tcl_CreateHashEntry(&textPtr->markTable, name, &new);
249 if (!new) {
283 * mark's new location.
243 int new; local
H A DtkBitmap.c151 int new;
162 nameHashPtr = Tcl_CreateHashEntry(&nameTable, (char *) &nameKey, &new);
163 if (!new) {
170 * No suitable bitmap exists. Create a new bitmap from the
232 &new);
233 if (!new) {
275 int new;
283 predefHashPtr = Tcl_CreateHashEntry(&predefTable, name, &new);
284 if (!new) {
478 int new;
150 int new; local
273 int new; local
472 int new; local
[all...]
H A DtkColor.c90 * If a colormap fills up, attempts to allocate new colors from that
161 int new;
178 nameHashPtr = Tcl_CreateHashEntry(&nameTable, (char *) &nameKey, &new);
179 if (!new) {
229 * Now create a new TkColor structure and add it to nameTable.
280 int new;
298 valueHashPtr = Tcl_CreateHashEntry(&valueTable, (char *) &valueKey, &new);
299 if (!new) {
307 * color and add a new structure to valueTable.
564 * a new on
160 int new; local
278 int new; local
[all...]
H A DtkFont.c160 int new;
175 nameHashPtr = Tcl_CreateHashEntry(&nameTable, (char *) &nameKey, &new);
176 if (!new) {
184 * add a new structure to the database.
201 fontHashPtr = Tcl_CreateHashEntry(&fontTable, (char *) fontStructPtr, &new);
202 if (!new) {
159 int new; local
H A DtkFrame.c216 * a new main window. See the user documentation for the "frame"
232 * new application, then this is NULL. */
240 * new application. */
244 Tk_Window new = NULL;
298 new = Tk_CreateWindowFromPath(interp, tkwin, argv[1], screenName);
301 * We were called from Tk_Init; create a new application.
307 new = TkCreateMainWindow(interp, screenName, appName);
309 if (new == NULL) {
313 className = Tk_GetOption(new, "class", "Class");
318 Tk_SetClass(new, classNam
242 Tk_Window new = NULL; local
[all...]
H A DtkImage.c93 * a new kind of image and the procedures that manage the new type.
100 * The new image type is entered into a table used in the "image
149 int c, i, new, firstOption;
192 * Figure out a name to use for the new image.
206 * Create the data structure for the new image.
209 hPtr = Tcl_CreateHashEntry(&winPtr->mainPtr->imageTable, name, &new);
210 if (new) {
147 int c, i, new, firstOption; local
H A DtkMessage.c212 Tk_Window new;
221 new = Tk_CreateWindowFromPath(interp, tkwin, argv[1], (char *) NULL);
222 if (new == NULL) {
227 msgPtr->tkwin = new;
228 msgPtr->display = Tk_Display(new);
211 Tk_Window new; local
H A DtkPlace.c334 * to that token (making a new one if necessary).
340 * A new Slave structure may be created.
351 int new;
353 hPtr = Tcl_CreateHashEntry(&slaveTable, (char *) tkwin, &new);
354 if (new) {
429 * to that token (making a new one if necessary).
435 * A new Master structure may be created.
446 int new;
448 hPtr = Tcl_CreateHashEntry(&masterTable, (char *) tkwin, &new);
449 if (new) {
349 int new; local
442 int new; local
[all...]
H A DtkTextTag.c748 * creating a new record if one doesn't already exist.
754 * A new tag record is created if there isn't one already defined
767 int new;
769 hPtr = Tcl_CreateHashEntry(&textPtr->tagTable, tagName, &new);
770 if (!new) {
775 * No existing entry. Create a new one, initialize it, and add a
1125 * of whether a button is pressed and refusing to pick a new current
1203 * on the old current character and a fake enter event on the new
1262 * character was deleted, causing a new character to be underneath
1296 * Find the new curren
765 int new; local
[all...]
H A DtkTextWind.c226 * Add a new window. Find where to put the new window, and
251 * Create the new window segment and initialize it.
336 int new;
402 * the entry to be removed, which could potentially lose the new
407 Tk_PathName(ewPtr->body.ew.tkwin), &new);
770 int code, new;
825 * the entry to be removed, which could potentially lose the new
830 Tk_PathName(ewPtr->body.ew.tkwin), &new);
334 int new; local
760 int code, new; local
H A DtkMenubutton.c322 Tk_Window new;
331 * Create the new window.
334 new = Tk_CreateWindowFromPath(interp, tkwin, argv[1], (char *) NULL);
335 if (new == NULL) {
344 mbPtr->tkwin = new;
345 mbPtr->display = Tk_Display (new);
673 * new image before freeing the old one, so that the reference
321 Tk_Window new; local
H A DtkScrollbar.c100 * and lastUnit), or the "new" form (firstFraction and lastFraction).
156 * NEW_STYLE_COMMANDS: Non-zero means the new style of commands
292 Tk_Window new;
300 new = Tk_CreateWindowFromPath(interp, tkwin, argv[1], (char *) NULL);
301 if (new == NULL) {
312 scrollPtr->tkwin = new;
313 scrollPtr->display = Tk_Display(new);
720 GC new;
752 new = Tk_GetGC(scrollPtr->tkwin, GCForeground, &gcValues);
756 scrollPtr->troughGC = new;
291 Tk_Window new; local
716 GC new; local
[all...]
/ast/src/lib/libtksh/tcl/
H A DtclPreserve.c133 Reference *new;
135 new = (Reference *) ckalloc((unsigned)
137 memcpy((VOID *) new, (VOID *) refArray,
140 refArray = new;
146 * Make a new entry for the new reference.
131 Reference *new; local
H A DtclFHandle.c55 * a new file handle if needed.
73 int new;
82 entryPtr = Tcl_CreateHashEntry(&fileTable, (char *) &key, &new);
83 if (new) {
72 int new; local
H A DtclPkg.c532 * A new Package record may be created.
544 int new;
547 hPtr = Tcl_CreateHashEntry(&iPtr->packageTable, name, &new);
548 if (new) {
540 int new; local
H A DtclParse.c704 * first thing in a new word.
860 * buffer to the new one.
879 char *new;
882 * Either double the size of the buffer or add enough new space
883 * to meet the demand, whichever produces a larger new buffer.
892 new = (char *) ckalloc((unsigned) newSpace);
895 * Copy from old buffer to new, free old buffer if needed, and
896 * mark new buffer as malloc-ed.
899 memcpy((VOID *) new, (VOID *) pvPtr->buffer,
901 pvPtr->next = new
873 char *new; local
[all...]
/ast/src/lib/libtksh/src/
H A Dbasic.c161 * Create a new TCL command interpreter.
270 int new;
282 hPtr = Tcl_CreateHashEntry(iPtr->assocData, buffer, &new);
345 * the data is overwritten with the new data. The delete function will
368 int new;
374 hPtr = Tcl_CreateHashEntry(iPtr->assocData, name, &new);
375 if (new == 0) {
539 * Invoke deletion callbacks; note that a callback can create new
823 * was set, errorInfo is cleared before adding the new message.
837 * If an error is already being logged, then the new errorInf
268 int new; local
364 int new; local
[all...]
/ast/lib/package/
H A Dpackage.mk257 old.new.source = $(PACKAGEDIR)/$(name).$(version).$(old.version).$(suffix)
258 old.new.binary = $(PACKAGEDIR)/$(name).$(version).$(old.version).$(CC.HOSTTYPE).$(suffix)
259 old.new.runtime = $(PACKAGEDIR)/$(name)-run.$(version).$(old.version).$(CC.HOSTTYPE).$(suffix)
1050 then $(PAX) -rf $(source) -wvf $(old.new.source) -z $(old.source)
1051 $(SUM) -x $(checksum) < $(old.new.source) > $(old.new.source:D:B:S=.$(checksum))
1331 then $(PAX) -rf $(binary) -wvf $(old.new.binary) -z $(old.binary)
1332 echo $(old.new.binary) >> $(binary:D:B=PACKAGE:S=.$(CC.HOSTTYPE).lst)
1333 $(SUM) -x $(checksum) < $(old.new.binary) > $(old.new
[all...]

Completed in 714 milliseconds

12