• Home
  • Raw
  • Download

Lines Matching full:comments

120 int could_open(const char *locale, char *comments) {  in could_open()  argument
127 strcat(comments, tmp); in could_open()
132 strcat(comments, tmp); in could_open()
136 int col_could_open(const char *locale, char *comments) { in col_could_open() argument
143 /*strcat(comments, tmp); */ in col_could_open()
148 /* strcat(comments, tmp); */ in col_could_open()
259 const char *locale, char *comments, in date() argument
313 strcat(comments, tmp); in date()
320 strcat(comments,tmp); in date()
326 static void writeOkComments(XMLFile &xf, int ok, const char *comments, const char *locale) { in writeOkComments() argument
330 if(!comments||!*comments) { in writeOkComments()
334 sprintf(tmp, "%s <!-- %s -->", locale, comments); in writeOkComments()
336 } else if(comments&&*comments) { in writeOkComments()
337 sprintf(tmp, "<!-- !! %s: %s -->", locale, comments); in writeOkComments()
345 int could_fmt_dow(const char *locale, char *comments) { in could_fmt_dow() argument
353 locale, comments, in could_fmt_dow()
359 strcat(comments, tmp); in could_fmt_dow()
363 strcat(comments, tmp); in could_fmt_dow()
369 char comments[1000]; in probeCapability() local
375 comments[0]=0; in probeCapability()
377 if(!could_open(locale, comments)) { in probeCapability()
382 if(!could_fmt_dow(locale, comments)) { in probeCapability()
387 writeOkComments(xf,ok, comments,locale); in probeCapability()
391 char comments[1000]; in probeColCapability() local
398 comments[0]=0; in probeColCapability()
400 if(!col_could_open(locale, comments)) { in probeColCapability()
405 if(!col_could_fmt_dow(locale, comments)) { in probeColCapability()
409 writeOkComments(xf,ok, comments,locale); in probeColCapability()