Searched refs:toc (Results 1 - 25 of 129) sorted by relevance

123456

/xsrc/external/mit/xmh/dist/
H A Dtoc.c1 /* $XConsortium: toc.c,v 2.59 95/01/09 16:52:53 swick Exp $
2 * $XFree86: xc/programs/xmh/toc.c,v 3.4 2001/10/28 03:34:39 tsi Exp $
28 /* toc.c -- handle things in the toc widget. */
32 #include "toc.h"
107 int TocFolderExists(Toc toc) argument
110 if (! toc->path) {
111 XtAsprintf(&toc->path, "%s/%s",
112 app_resources.mail_path, toc->foldername);
114 return ((stat(toc
158 Toc toc; local in function:TocInit
202 Toc toc = TUMalloc(); local in function:TocCreate
215 Toc toc; local in function:TocCreateFolder
225 TocHasMail(Toc toc) argument
230 CheckForNewMail(Toc toc) argument
257 Toc toc; local in function:TocCheckForNewMail
319 TocTestAndSetDeletePending(Toc toc) argument
328 TocClearDeletePending(Toc toc) argument
364 TocDeleteFolder(Toc toc) argument
401 TocSetScrn(Toc toc,Scrn scrn) argument
449 TocRemoveMsg(Toc toc,Msg msg) argument
485 TocRecheckValidity(Toc toc) argument
505 TocSetCurMsg(Toc toc,Msg msg) argument
534 TocGetCurMsg(Toc toc) argument
544 TocMsgAfter(Toc toc,Msg msg) argument
560 TocMsgBefore(Toc toc,Msg msg) argument
576 TocForceRescan(Toc toc) argument
599 TocReloadSeqLists(Toc toc) argument
629 TocHasSequences(Toc toc) argument
637 TocChangeViewedSeq(Toc toc,Sequence seq) argument
648 TocGetSeqNamed(Toc toc,const char * name) argument
663 TocViewedSequence(Toc toc) argument
671 TocSetSelectedSequence(Toc toc,Sequence sequence) argument
682 TocSelectedSequence(Toc toc) argument
693 TocCurMsgList(Toc toc) argument
717 TocUnsetSelection(Toc toc) argument
727 TocMakeNewMsg(Toc toc) argument
749 TocStopUpdate(Toc toc) argument
761 TocStartUpdate(Toc toc) argument
784 TocSetCacheValid(Toc toc) argument
792 TocMakeFolderName(Toc toc) argument
799 TocName(Toc toc) argument
817 TocHasChanges(Toc toc) argument
837 Toc toc = (Toc) client_data; local in function:TocCataclysmOkay
849 TocConfirmCataclysm(Toc toc,XtCallbackList confirms,XtCallbackList cancels) argument
907 Toc toc = (Toc) client_data; local in function:TocCommitChanges
1023 TocCanIncorporate(Toc toc) argument
1031 TocIncorporate(Toc toc) argument
1081 TocMsgChanged(Toc toc,Msg msg) argument
1127 TocMsgFromId(Toc toc,int msgid) argument
1167 Toc toc; local in function:XmhPushSequence
[all...]
H A Dtocutil.c29 /* tocutil.c -- internal routines for toc stuff. */
32 #include "toc.h"
42 Toc toc; local in function:TUMalloc
43 toc = XtNew(TocRec);
44 bzero((char *)toc, (int) sizeof(TocRec));
45 toc->msgs = (Msg *) NULL;
46 toc->seqlist = (Sequence *) NULL;
47 toc->validity = unknown;
48 return toc;
52 /* Returns TRUE if the scan file for the given toc i
54 TUScanFileOutOfDate(Toc toc) argument
64 TUCheckSequenceMenu(Toc toc) argument
129 TUScanFileForToc(Toc toc) argument
160 TUGetMsgPosition(Toc toc,Msg msg) argument
194 Toc toc; local in function:TUResetTocLabel
218 Toc toc; local in function:TURedisplayToc
245 TULoadSeqLists(Toc toc) argument
305 TURefigureWhatsVisible(Toc toc) argument
356 TULoadTocFile(Toc toc) argument
463 TUSaveTocFile(Toc toc) argument
505 Toc toc = (Toc)client_data; local in function:UpdateScanFile
522 TUEnsureScanIsValidAndOpen(Toc toc,Boolean delay) argument
550 TURefigureTocPositions(Toc toc) argument
571 TUGetFullFolderInfo(Toc toc) argument
594 TUAppendToc(Toc toc,const char * ptr) argument
[all...]
H A Dtsource.c29 /* File: tsource.c -- the code for a toc source */
48 Offset(toc), XtRPointer, NULL},
120 Toc toc,
126 if (position > toc->lastPos) position = toc->lastPos;
129 h = toc->nummsgs - 1;
132 if (toc->msgs[m]->position > position)
137 msg = toc->msgs[h];
139 msg = toc->msgs[h = l];
141 msg = toc
119 MsgFromPosition(Toc toc,XawTextPosition position,XawTextScanDirection dir) argument
149 CoerceToLegalPosition(Toc toc,XawTextPosition position) argument
163 Toc toc = source->toc_source.toc; local in function:Read
195 Toc toc = source->toc_source.toc; local in function:Replace
238 Toc toc = source->toc_source.toc; local in function:Scan
327 Toc toc; local in function:Initialize
339 TSourceInvalid(Toc toc,XawTextPosition position,int length) argument
[all...]
H A Dtocfuncs.c29 /* tocfuncs.c -- action procedures concerning things in the toc widget. */
74 Toc toc = scrn->toc; local in function:NextAndPreviousView
79 if (toc == NULL) return;
80 mlist = TocCurMsgList(toc);
84 msg = TocGetCurMsg(toc);
86 msg = (next ? TocMsgAfter(toc, msg) : TocMsgBefore(toc, msg));
91 msg = (next ? TocMsgAfter(toc, msg) : TocMsgBefore(toc, ms
179 Toc toc = scrn->toc; local in function:DoViewNew
213 Toc toc = scrn->toc; local in function:DoForwardMsg
254 Toc toc = scrn->toc; local in function:DoTocUseAsComp
294 Toc toc = scrn->toc; local in function:MarkMessages
556 Toc toc = scrn->toc; local in function:DoPack
604 Toc toc = scrn->toc; local in function:DoSort
662 Toc toc = scrn->toc; local in function:DoForceRescan
704 Toc toc = scrn->toc; local in function:DoIncorporateNewMail
734 Toc toc = scrn->toc; local in function:DoReplyMsg
784 Toc toc = scrn->toc; local in function:DoPickMessages
835 Toc toc = (Toc) scrn->toc; local in function:DoSelectSequence
861 Toc toc = scrn->toc; local in function:DoOpenSeq
890 Toc toc = scrn->toc; local in function:XmhOpenSequence
940 Toc toc = scrn->toc; local in function:TwiddleSequence
[all...]
H A DtsourceP.h95 Toc toc; member in struct:__anon8f9d28200108
H A Dfolder.c43 Toc toc; /* the toc of the selected folder */ member in struct:__anon31b98d620108
44 Toc original_toc; /* the toc of the current folder */
64 /* Close this toc&view scrn. If this is the last toc&view, quit xmh. */
74 Toc toc; local in function:DoClose
96 toc = folderList[i];
98 if (TocConfirmCataclysm(toc, confirm_callbacks,
106 * toc = folderList[i];
107 * if (toc
154 Toc toc = SelectedToc(scrn); local in function:DoOpenFolder
234 Toc toc = SelectedToc(scrn); local in function:DoOpenFolderInNewWindow
265 Toc toc; local in function:CreateFolder
371 Toc toc = deleteData->toc; local in function:CheckAndConfirmDeleteFolder
425 Toc toc = deleteData->toc; local in function:CheckAndDeleteFolder
501 Toc toc = SelectedToc(scrn); local in function:DoDeleteFolder
1074 Toc toc; member in struct:_InteractTocTokenRec
1110 Toc toc = (Toc) client_data; local in function:CommitTocInteract
[all...]
H A DMakefile.am50 toc.c \
52 toc.h \
H A Dmsg.c82 snprintf(result, sizeof(result), "%s:%d", msg->toc->foldername, msg->msgid);
211 snprintf(result, sizeof(result), "%s/%d", msg->toc->path, msg->msgid);
217 /* Save any changes to a message. Also calls the toc routine to update the
229 TocMsgChanged(msg->toc, msg);
235 msg->toc->foldername, msg->msgid);
284 TocRemoveMsg(scrn->msg->toc, scrn->msg);
443 Toc toc = msg->toc; local in function:MsgSetFate
448 if (fate == Fignore && msg == msg->toc->curmsg)
461 if (toc
478 MsgGetFate(Msg msg,Toc * toc) argument
[all...]
H A Dmlist.c100 messages in the given toc. */
102 MsgList StringToMsgList(Toc toc, char *str) argument
119 msg = TocMsgFromId(toc, i);
H A Dutil.c346 MsgList CurMsgListOrCurMsg(Toc toc) argument
350 result = TocCurMsgList(toc);
351 if (result->nummsgs == 0 && (curmsg = TocGetCurMsg(toc))) {
383 Toc toc; local in function:SelectedToc
387 if ((toc = TocGetNamed(scrn->curfolder)) == NULL)
388 toc = TocCreate(scrn->curfolder);
389 return toc;
395 /* return the toc currently being viewed */
397 return scrn->toc;
H A Dtocintrnl.h30 /* Includes for modules implementing toc stuff. */
49 Toc toc; /* Which toc this message is in. */ member in struct:_MsgRec
75 Cardinal num_scrns; /* How many scrns are currently showing toc. */
76 char *foldername; /* Folder name for this toc */
79 Msg curmsg; /* Current msgid for this toc. */
92 ValidType validity; /* Whether the scan file for this toc is */
94 Boolean needsrepaint; /* TRUE if we should repaint this toc. */
H A Dmain.c69 DEBUG("[magic toc check ...")
71 if (scrnList[i]->toc)
72 TocRecheckValidity(scrnList[i]->toc);
H A Dpick.c90 Toc toc; /* Toc for folder being scanned. */ member in struct:_PickRec
111 * of the Text widget in text fields of pick and popups. The toc's
352 Toc toc = pick->toc; local in function:ExecOK
380 if (TocGetSeqNamed(toc, fromseq) == NULL) {
390 AppendArgv(folderpath = TocMakeFolderName(toc));
436 TocReloadSeqLists(toc);
437 TocChangeViewedSeq(toc, TocGetSeqNamed(toc, toseq));
706 void AddPick(Scrn scrn, Toc toc, cons argument
[all...]
H A Dxmh.h125 Toc toc; /* The table of contents. */ member in struct:_ScrnRec
154 #include "toc.h"
H A DMakefile.in133 pick.$(OBJEXT) popup.$(OBJEXT) screen.$(OBJEXT) toc.$(OBJEXT) \
159 ./$(DEPDIR)/screen.Po ./$(DEPDIR)/toc.Po \
441 toc.c \
443 toc.h \
583 @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/toc.Po@am__quote@ # am--include-marker
993 -rm -f ./$(DEPDIR)/toc.Po
1059 -rm -f ./$(DEPDIR)/toc.Po
/xsrc/external/mit/libXcursor/dist/src/
H A Dfile.c356 XcursorUInt toc; local in function:_XcursorWriteFileHeader
369 for (toc = 0; toc < fileHeader->ntoc; toc++)
371 if (!_XcursorWriteUInt (file, fileHeader->tocs[toc].type))
373 if (!_XcursorWriteUInt (file, fileHeader->tocs[toc].subtype))
375 if (!_XcursorWriteUInt (file, fileHeader->tocs[toc].position))
384 int toc)
387 (*file->seek) (file, fileHeader->tocs[toc].position, SEEK_SET) == EOF)
395 int toc,
382 _XcursorSeekToToc(XcursorFile * file,XcursorFileHeader * fileHeader,int toc) argument
393 _XcursorFileReadChunkHeader(XcursorFile * file,XcursorFileHeader * fileHeader,int toc,XcursorChunkHeader * chunkHeader) argument
418 _XcursorFileWriteChunkHeader(XcursorFile * file,XcursorFileHeader * fileHeader,int toc,XcursorChunkHeader * chunkHeader) argument
478 XcursorUInt toc; local in function:_XcursorFindImageToc
504 _XcursorReadImage(XcursorFile * file,XcursorFileHeader * fileHeader,int toc) argument
577 _XcursorWriteImage(XcursorFile * file,XcursorFileHeader * fileHeader,int toc,XcursorImage * image) argument
635 _XcursorReadComment(XcursorFile * file,XcursorFileHeader * fileHeader,int toc) argument
674 _XcursorWriteComment(XcursorFile * file,XcursorFileHeader * fileHeader,int toc,XcursorComment * comment) argument
749 int toc; local in function:_XcursorXcFileLoadImage
819 int toc = _XcursorFindImageToc (fileHeader, bestSize, n); local in function:_XcursorXcFileLoadImages
861 XcursorUInt toc; local in function:XcursorXcFileLoadAllImages
920 XcursorUInt toc; local in function:XcursorXcFileLoad
999 int toc; local in function:XcursorXcFileSave
[all...]
/xsrc/external/mit/libxkbfile/dist/src/
H A Dxkmout.c130 xkmSectionInfo *toc, int *offset_inout)
162 toc->type = XkmVirtualModsIndex;
163 toc->format = MSBFirst;
164 toc->size = 4 + XkbPaddedSize(nBound) + szNames + SIZEOF(xkmSectionInfo);
165 toc->offset = *offset_inout;
166 (*offset_inout) += toc->size;
202 SizeXKMKeycodes(XkbFileInfo *result, xkmSectionInfo *toc, int *offset_inout) argument
225 toc->type = XkmKeyNamesIndex;
226 toc->format = MSBFirst;
227 toc
129 SizeXKMVirtualMods(XkbFileInfo * result,XkmInfo * info,xkmSectionInfo * toc,int * offset_inout) argument
265 SizeXKMKeyTypes(XkbFileInfo * result,xkmSectionInfo * toc,int * offset_inout) argument
382 SizeXKMCompatMap(XkbFileInfo * result,XkmInfo * info,xkmSectionInfo * toc,int * offset_inout) argument
483 SizeXKMSymbols(XkbFileInfo * result,XkmInfo * info,xkmSectionInfo * toc,int * offset_inout) argument
667 SizeXKMIndicators(XkbFileInfo * result,XkmInfo * info,xkmSectionInfo * toc,int * offset_inout) argument
824 SizeXKMGeometry(XkbFileInfo * result,xkmSectionInfo * toc,int * offset_inout) argument
1307 WriteXKMFile(FILE * file,XkbFileInfo * result,int num_toc,xkmSectionInfo * toc,XkmInfo * info) argument
1365 xkmSectionInfo toc[MAX_TOC]; local in function:XkbWriteXKMFile
[all...]
H A Dxkmread.c1091 int max_toc, xkmSectionInfo *toc)
1118 fread(&toc[i], SIZEOF(xkmSectionInfo), 1, file);
1124 XkmFindTOCEntry(xkmFileInfo *finfo, xkmSectionInfo *toc, unsigned type) argument
1129 if (toc[i].type == type)
1130 return &toc[i];
1137 xkmSectionInfo * toc,
1148 fseek(file, toc->offset, SEEK_SET);
1151 if ((tmpTOC.type != toc->type) || (tmpTOC.format != toc->format) ||
1152 (tmpTOC.size != toc
1090 XkmReadTOC(FILE * file,xkmFileInfo * file_info,int max_toc,xkmSectionInfo * toc) argument
1136 XkmReadFileSection(FILE * file,xkmSectionInfo * toc,XkbFileInfo * result,unsigned * loaded_rtrn) argument
1207 XkmReadFileSectionName(FILE * file,xkmSectionInfo * toc) argument
1248 xkmSectionInfo toc[MAX_TOC], tmpTOC; local in function:XkmReadFile
[all...]
/xsrc/external/mit/freetype/dist/docs/reference/stylesheets/
H A Dextra.css114 /* toc table */
115 table.toc {
119 table.toc td.link {
125 table.toc td.desc {
130 table.toc td.desc p:first-child {
134 table.toc td.desc p {
/xsrc/external/mit/freetype/dist/src/pcf/
H A Dpcfread.c98 PCF_Toc toc = &face->toc; local in function:pcf_read_TOC
108 FT_STREAM_READ_FIELDS( pcf_toc_header, toc ) )
111 if ( toc->version != PCF_FILE_VERSION ||
112 toc->count == 0 )
120 if ( toc->count > ( stream->size >> 4 ) ||
121 toc->count > 9 )
125 toc->count,
127 toc->count = FT_MIN( stream->size >> 4, 9 );
130 if ( FT_NEW_ARRAY( face->toc
[all...]
H A Dpcf.h154 PCF_TocRec toc; member in struct:PCF_FaceRec_
/xsrc/external/mit/xorg-server.old/dist/xkb/
H A Dxkmread.c1140 XkmReadTOC(FILE *file,xkmFileInfo* file_info,int max_toc,xkmSectionInfo *toc) argument
1165 fread(&toc[i],SIZEOF(xkmSectionInfo),1,file);
1177 xkmSectionInfo toc[MAX_TOC],tmpTOC; local in function:XkmReadFile
1182 if (!XkmReadTOC(file,&fileInfo,MAX_TOC,toc))
1192 fseek(file,toc[i].offset,SEEK_SET);
1195 if ((tmpTOC.type!=toc[i].type)||(tmpTOC.format!=toc[i].format)||
1196 (tmpTOC.size!=toc[i].size)||(tmpTOC.offset!=toc[i].offset)) {
1232 which&= ~(1<<toc[
[all...]
/xsrc/external/mit/xorg-server/dist/xkb/
H A Dxkmread.c1190 xkmSectionInfo * toc)
1216 if (fread(&toc[i], SIZEOF(xkmSectionInfo), 1, file) != 1)
1229 xkmSectionInfo toc[MAX_TOC], tmpTOC; local in function:XkmReadFile
1234 if (!XkmReadTOC(file, &fileInfo, MAX_TOC, toc))
1244 fseek(file, toc[i].offset, SEEK_SET);
1247 if ((tmpTOC.type != toc[i].type) || (tmpTOC.format != toc[i].format) ||
1248 (tmpTOC.size != toc[i].size) || (tmpTOC.offset != toc[i].offset)) {
1284 which &= ~(1 << toc[
1189 XkmReadTOC(FILE * file,xkmFileInfo * file_info,int max_toc,xkmSectionInfo * toc) argument
[all...]
/xsrc/external/mit/libXt/dist/src/
H A DConvert.c445 XrmValue toc; local in function:FreeCacheRec
449 toc.size = p->to.size;
451 toc.addr = (XPointer) &p->to.addr;
453 toc.addr = p->to.addr;
454 (*CEXT(p)->destructor) (app, &toc, CEXT(p)->closure, args,
/xsrc/external/mit/libXcursor/dist/include/X11/Xcursor/
H A DXcursor.h.in62 * CARD32 ntoc number of toc entries
63 * LISTofFileToc toc table of contents
105 XcursorUInt ntoc; /* number of toc entries */

Completed in 31 milliseconds

123456