Searched refs:typePtr (Results 1 - 25 of 253) sorted by relevance

1234567891011

/macosx-10.9.5/tcl-102/tcl84/tcl/generic/
H A DtclHash.c185 Tcl_InitCustomHashTable(tablePtr, keyType, typePtr)
193 Tcl_HashKeyType *typePtr; /* Pointer to structure which defines
214 if (typePtr == NULL) {
219 } else if (typePtr != (Tcl_HashKeyType *) -1) {
224 tablePtr->typePtr = typePtr;
232 if (typePtr == NULL) {
237 typePtr = &tclStringHashKeyType;
239 typePtr = &tclOneWordHashKeyType;
245 typePtr
279 Tcl_HashKeyType *typePtr; local
378 Tcl_HashKeyType *typePtr; local
510 Tcl_HashKeyType *typePtr; local
591 Tcl_HashKeyType *typePtr; local
1123 Tcl_HashKeyType *typePtr; local
[all...]
H A DtclObj.c689 * a type with the same name as in typePtr, it is replaced with the
696 Tcl_RegisterObjType(typePtr)
697 Tcl_ObjType *typePtr; /* Information about object type;
704 Tcl_CreateHashEntry(&typeTable, typePtr->name, &new), typePtr);
793 Tcl_ObjType *typePtr = NULL;
798 typePtr = (Tcl_ObjType *) Tcl_GetHashValue(hPtr);
801 return typePtr;
810 * Convert the Tcl object "objPtr" to have type "typePtr" if possible.
826 Tcl_ConvertToType(interp, objPtr, typePtr)
694 Tcl_CreateHashEntry(&typeTable, typePtr->name, &new), typePtr); local
781 Tcl_ObjType *typePtr = NULL; local
1026 register Tcl_ObjType *typePtr = objPtr->typePtr; local
1118 register Tcl_ObjType *typePtr = objPtr->typePtr; local
[all...]
H A DtclIndexObj.c115 if (objPtr->typePtr == &tclIndexType) {
187 if (objPtr->typePtr == &tclIndexType) {
244 if (objPtr->typePtr == &tclIndexType) {
247 if ((objPtr->typePtr != NULL)
248 && (objPtr->typePtr->freeIntRepProc != NULL)) {
249 objPtr->typePtr->freeIntRepProc(objPtr);
253 objPtr->typePtr = &tclIndexType;
385 dupPtr->typePtr = &tclIndexType;
464 if (objv[i]->typePtr == &tclIndexType) {
H A DtclExecute.c300 (objPtr)->typePtr = &tclIntType; \
309 (objPtr)->typePtr = &tclIntType; \
318 if ((objPtr)->typePtr == &tclWideIntType) { \
321 #define IS_INTEGER_TYPE(typePtr) \
322 ((typePtr) == &tclIntType || (typePtr) == &tclWideIntType)
323 #define IS_NUMERIC_TYPE(typePtr) \
324 (IS_INTEGER_TYPE(typePtr) || (typePtr) == &tclDoubleType)
336 #define GET_DOUBLE_VALUE(doubleVar, objPtr, typePtr) \
[all...]
/macosx-10.9.5/tcl-102/tk84/tk/generic/
H A DtkImage.c57 Tk_ImageType *typePtr; /* Information about image type. NULL means member in struct:ImageMaster
114 Tk_CreateOldImageType(typePtr)
115 Tk_ImageType *typePtr; /* Structure describing the type. All of
123 typePtr->nextPtr = tsdPtr->oldImageTypeList;
124 tsdPtr->oldImageTypeList = typePtr;
128 Tk_CreateImageType(typePtr)
129 Tk_ImageType *typePtr; /* Structure describing the type. All of
137 typePtr->nextPtr = tsdPtr->imageTypeList;
138 tsdPtr->imageTypeList = typePtr;
176 Tk_ImageType *typePtr;
174 Tk_ImageType *typePtr; local
920 Tk_ImageType *typePtr; local
[all...]
H A DtkObj.c169 if (objPtr->typePtr != &pixelObjType) {
228 objPtr->typePtr = NULL;
257 copyPtr->typePtr = srcPtr->typePtr;
298 Tcl_ObjType *typePtr;
353 typePtr = objPtr->typePtr;
354 if ((typePtr != NULL) && (typePtr->freeIntRepProc != NULL)) {
355 (*typePtr
294 Tcl_ObjType *typePtr; local
558 Tcl_ObjType *typePtr; local
745 Tcl_ObjType *typePtr; local
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/trf/trf/patches/
H A Drc.h61 Tcl_ChannelType *typePtr /* The channel type record
/macosx-10.9.5/tcl-102/tk/tk/generic/
H A DtkImage.c51 Tk_ImageType *typePtr; /* Information about image type. NULL means member in struct:ImageMaster
150 Tk_ImageType *typePtr) /* Structure describing the type. All of the
163 *copyPtr = *typePtr;
170 Tk_ImageType *typePtr) /* Structure describing the type. All of the
183 *copyPtr = *typePtr;
223 Tk_ImageType *typePtr;
257 for (typePtr = tsdPtr->imageTypeList; typePtr != NULL;
258 typePtr = typePtr
147 Tk_CreateOldImageType( Tk_ImageType *typePtr) argument
167 Tk_CreateImageType( Tk_ImageType *typePtr) argument
220 Tk_ImageType *typePtr; local
948 Tk_ImageType *typePtr; local
[all...]
H A DtkObj.c164 if (objPtr->typePtr != &pixelObjType) {
322 objPtr->typePtr = NULL;
351 copyPtr->typePtr = srcPtr->typePtr;
391 const Tcl_ObjType *typePtr;
430 typePtr = objPtr->typePtr;
431 if ((typePtr != NULL) && (typePtr->freeIntRepProc != NULL)) {
432 (*typePtr
385 const Tcl_ObjType *typePtr; local
647 const Tcl_ObjType *typePtr; local
832 const Tcl_ObjType *typePtr; local
[all...]
H A DtkColor.c100 if (objPtr->typePtr != &tkColorObjType) {
605 dupObjPtr->typePtr = srcObjPtr->typePtr;
644 if (objPtr->typePtr != &tkColorObjType) {
722 const Tcl_ObjType *typePtr;
729 typePtr = objPtr->typePtr;
730 if ((typePtr != NULL) && (typePtr->freeIntRepProc != NULL)) {
731 (*typePtr
711 const Tcl_ObjType *typePtr; local
[all...]
H A DtkCursor.c102 if (objPtr->typePtr != &tkCursorObjType) {
625 dupObjPtr->typePtr = srcObjPtr->typePtr;
699 if (objPtr->typePtr != &tkCursorObjType) {
766 const Tcl_ObjType *typePtr;
773 typePtr = objPtr->typePtr;
774 if ((typePtr != NULL) && (typePtr->freeIntRepProc != NULL)) {
775 (*typePtr
753 const Tcl_ObjType *typePtr; local
[all...]
/macosx-10.9.5/tcl-102/tcl/tcl/generic/
H A DtclHash.c174 Tcl_HashKeyType *typePtr) /* Pointer to structure which defines the
194 if (typePtr == NULL) {
199 } else if (typePtr != (Tcl_HashKeyType *) -1) {
205 tablePtr->typePtr = typePtr;
272 const Tcl_HashKeyType *typePtr;
277 typePtr = &tclStringHashKeyType;
279 typePtr = &tclOneWordHashKeyType;
282 typePtr = tablePtr->typePtr;
164 Tcl_InitCustomHashTable( register Tcl_HashTable *tablePtr, int keyType, Tcl_HashKeyType *typePtr) argument
268 const Tcl_HashKeyType *typePtr; local
395 const Tcl_HashKeyType *typePtr; local
472 const Tcl_HashKeyType *typePtr; local
626 const Tcl_HashKeyType *typePtr; local
1001 const Tcl_HashKeyType *typePtr; local
[all...]
H A DtclGet.c53 obj.typePtr = NULL;
99 obj.typePtr = NULL;
143 obj.typePtr = NULL;
187 obj.typePtr = NULL;
H A DtclObj.c863 * type with the same name as in typePtr, it is replaced with the new
871 Tcl_ObjType *typePtr) /* Information about object type; storage must
879 Tcl_CreateHashEntry(&typeTable, typePtr->name, &isNew), typePtr);
965 Tcl_ObjType *typePtr = NULL;
970 typePtr = (Tcl_ObjType *) Tcl_GetHashValue(hPtr);
973 return typePtr;
982 * Convert the Tcl object "objPtr" to have type "typePtr" if possible. argument
1001 Tcl_ObjType *typePtr) /* The target type. */
1003 if (objPtr->typePtr
857 Tcl_RegisterObjType( Tcl_ObjType *typePtr) argument
866 Tcl_CreateHashEntry(&typeTable, typePtr->name, &isNew), typePtr); local
950 Tcl_ObjType *typePtr = NULL; local
1314 register Tcl_ObjType *typePtr = objPtr->typePtr; local
1533 register Tcl_ObjType *typePtr = objPtr->typePtr; local
3537 TclGetNumberFromObj( Tcl_Interp *interp, Tcl_Obj *objPtr, ClientData *clientDataPtr, int *typePtr) argument
[all...]
H A DtclIndexObj.c110 if (objPtr->typePtr == &indexType) {
181 if (objPtr->typePtr == &indexType) {
242 if (objPtr->typePtr == &indexType) {
248 objPtr->typePtr = &indexType;
380 dupPtr->typePtr = &indexType;
531 if (origObjv[i]->typePtr == &indexType) {
537 } else if (origObjv[i]->typePtr == &tclEnsembleCmdType) {
585 if (objv[i]->typePtr == &indexType) {
589 } else if (objv[i]->typePtr == &tclEnsembleCmdType) {
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/struct/graph/
H A Darcshimmer.c39 dup->typePtr = &ga_type;
69 if (o->typePtr && o->typePtr->freeIntRepProc) {
70 o->typePtr->freeIntRepProc (o);
73 o->typePtr = &ga_type;
93 if (arc->typePtr == &ga_type) {
H A Dnodeshimmer.c39 dup->typePtr = &gn_type;
69 if (o->typePtr && o->typePtr->freeIntRepProc) {
70 o->typePtr->freeIntRepProc (o);
73 o->typePtr = &gn_type;
93 if (node->typePtr == &gn_type) {
/macosx-10.9.5/tcl-102/tcl_ext/tclae/tclae/generic/
H A DtclAEDescObj.c129 dupPtr->typePtr = &tclAEDescType;
186 if ((objPtr->typePtr != NULL)
187 && (objPtr->typePtr->freeIntRepProc != NULL)) {
188 objPtr->typePtr->freeIntRepProc(objPtr);
192 objPtr->typePtr = &tclAEDescType;
368 dupPtr->typePtr = &tclAEDescRefType;
410 if ((objPtr->typePtr != NULL)
411 && (objPtr->typePtr->freeIntRepProc != NULL)) {
412 objPtr->typePtr->freeIntRepProc(objPtr);
417 objPtr->typePtr
[all...]
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/struct/tree/
H A Dshimmer.c39 dup->typePtr = &tn_type;
69 if (o->typePtr && o->typePtr->freeIntRepProc) {
70 o->typePtr->freeIntRepProc (o);
73 o->typePtr = &tn_type;
93 if (node->typePtr == &tn_type) {
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/sha1/
H A Dsha256c.tcl51 dup->typePtr = &sha256_type;
104 if (obj->typePtr != NULL && obj->typePtr->freeIntRepProc != NULL) {
105 obj->typePtr->freeIntRepProc(obj);
109 obj->typePtr = &sha256_type;
131 if (obj->typePtr != NULL && obj->typePtr->freeIntRepProc != NULL) {
132 obj->typePtr->freeIntRepProc(obj);
136 obj->typePtr = &sha256_type;
154 if (objv[2]->typePtr !
[all...]
H A Dsha1c.tcl44 dup->typePtr = &sha1_type;
94 if (objv[2]->typePtr != &sha1_type
107 if (obj->typePtr != NULL && obj->typePtr->freeIntRepProc != NULL) {
108 obj->typePtr->freeIntRepProc(obj);
112 obj->typePtr = &sha1_type;
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/pt/rde_critcl/
H A Dot.c46 if ((obj->typePtr == &ot_type) &&
59 if (obj->typePtr != NULL && obj->typePtr->freeIntRepProc != NULL) {
60 obj->typePtr->freeIntRepProc(obj);
107 obj->typePtr = &ot_type;
154 dup->typePtr = &ot_type;
/macosx-10.9.5/tcl-102/tcl_ext/tktreectrl/tktreectrl/generic/
H A DtkTreeElem.h105 TreeElementType *typePtr; member in struct:TreeElement_
141 TreeElementType *typePtr);
149 void (*PerStateInfo_Free)(TreeCtrl *tree, PerStateType *typePtr,
152 PerStateType *typePtr, PerStateInfo *pInfo);
154 PerStateType *typePtr, PerStateInfo *pInfo, int state, int *match);
156 PerStateType *typePtr, PerStateInfo *pInfo, int state, int *match);
157 int (*PerStateInfo_Undefine)(TreeCtrl *tree, PerStateType *typePtr,
163 void (*PSTRestore)(TreeCtrl *tree, PerStateType *typePtr,
171 PerStateType *typePtr, StateFromObjProc proc);
/macosx-10.9.5/tcl-102/tk/tk/generic/ttk/
H A DttkState.c70 copyPtr->typePtr = &StateSpecObjType;
118 if (objPtr->typePtr && objPtr->typePtr->freeIntRepProc) {
119 objPtr->typePtr->freeIntRepProc(objPtr);
122 objPtr->typePtr = &StateSpecObjType;
169 objPtr->typePtr = &StateSpecObjType;
180 if (objPtr->typePtr != &StateSpecObjType) {
/macosx-10.9.5/tcl-102/tcl_ext/tcllib/tcllib/modules/rc4/
H A Drc4c.tcl54 dup->typePtr = &rc4_type;
120 if (obj->typePtr != NULL && obj->typePtr->freeIntRepProc != NULL)
121 obj->typePtr->freeIntRepProc(obj);
123 obj->typePtr = &rc4_type;
140 if (objv[1]->typePtr != &rc4_type

Completed in 263 milliseconds

1234567891011