/ast/src/lib/libast/regex/ |
H A D | regcoll.c | 50 int term; local 55 if (size < 2 || (term = *s) != '.' && term != '=' || !*++s || *s == term && *(s + 1) == ']') 61 if (*s++ != term || *s++ != ']') 65 if (*s == term && *(s + 1) == ']') 77 if (c == term) 81 if (c != term)
|
/ast/src/cmd/tw/ |
H A D | xargs.c | 123 int term = -1; local 164 term = '\n'; 204 term = 0; 227 if (term >= 0) 229 while (s = sfgetr(sfstdin, term, 0))
|
H A D | find.c | 532 quotex(register Sfio_t* sp, register const char* s, int term) argument 542 if (term >= 0) 543 sfputc(sp, term);
|
/ast/src/cmd/kshlib/cmdtst/ |
H A D | xargs.c | 133 int term = -1; local 175 term = '\n'; 215 term = 0; 236 if (term >= 0) 239 if (!(s = sfgetr(sfstdin, term, 0)))
|
/ast/src/lib/libtk/generic/ |
H A D | tkFont.c | 514 char *term; /* Pointer to most recent character that 516 int termX; /* X-position just after term. */ 556 term = source; 593 term = p+1; 608 if ((flags & TK_AT_LEAST_ONE) && (term == source) && (maxChars > 0) 609 && !isspace(UCHAR(*term))) { 610 term = p; 612 if (term == source) { 613 term++; 617 term 508 char *term; /* Pointer to most recent character that local [all...] |
/ast/src/lib/libtksh/tcl/ |
H A D | tclExpr.c | 337 char *term, *p, *start; 356 valuePtr->intValue = -((int)strtoul(start, &term, 0)); 359 valuePtr->intValue = strtoul(start, &term, 0); 362 valuePtr->intValue = strtoul(start, &term, 0); 364 if (*term == 0) { 383 valuePtr->doubleValue = strtod(string, &term); 384 if ((term != string) && (*term == 0)) { 452 char *var, *term; 475 valuePtr->intValue = strtoul(p, &term, 336 char *term, *p, *start; local 450 char *var, *term; local [all...] |
H A D | tclParse.c | 148 static char * QuoteEnd _ANSI_ARGS_((char *string, int term)); 1071 * term). If the quoted string doesn't terminate properly then 1082 QuoteEnd(string, term) 1085 int term; /* This character will terminate the 1091 while (*p != term) {
|
/ast/src/cmd/nmake/ |
H A D | misc.c | 453 * term is an sfputr terminator 457 strprintf(Sfio_t* sp, const char* format, char* argp, int all, int term) argument 479 if (term != -1) 481 sfputc(sp, term);
|
H A D | parse.c | 899 * term is the line terminator char placed in sp 904 getline(Sfio_t* sp, int lead, int term) argument 924 sfputr(sp, s, term); 1475 sfputr(sp, s, term); 1485 sfputr(sp, s, term); 1489 sfputc(sp, term); 1506 sfputc(sp, term);
|
/ast/src/lib/libardir/ |
H A D | ar-aix.c | 65 int term; /* trailing '\0' for member */ member in struct:State_s
|
H A D | ar-aixbig.c | 66 int term; /* trailing '\0' for member */ member in struct:State_s
|
H A D | ar-port.c | 66 char term[1]; /* trailing '\0' for header */ member in struct:State_s
|
/ast/src/cmd/ksh93/edit/ |
H A D | edit.c | 762 char *term; local 765 if(ep->e_term && (term=nv_getval(ep->e_term)) && strlen(term)<sizeof(ep->e_termname) && strcmp(term,ep->e_termname)) 771 strcpy(ep->e_termname,term);
|
/ast/src/cmd/ksh93/sh/ |
H A D | parse.c | 60 static Shnode_t *term(Lex_t*,int); 540 * term 541 * list && term 542 * list || term 547 register Shnode_t *t = term(lexp,flag); 550 t = makelist(lexp,(token==ANDFSYM?TAND:TORF), t, term(lexp,SH_NL|SH_SEMI)); 555 * term 557 * item | term 559 static Shnode_t *term(Lex_t *lexp,register int flag) function 574 t->par.partre = term(lex [all...] |
/ast/src/cmd/coshell/ |
H A D | command.c | 316 k [ckst] job terminate [continue|kill|stop|term] job\n\
|
/ast/src/lib/libast/misc/ |
H A D | optget.c | 107 const char* term[2]; member in struct:Font_s 1203 return fonts[f].term[set]; 1243 localize(Push_t* psp, char* s, char* e, int term, int n, Sfio_t* ip, int version, char* id, char* catalog) argument 1250 t = skip(s, term, 0, 0, n, 0, 0, version); 1259 if (term && *s == c)
|