Searched defs:qe (Results 1 - 7 of 7) sorted by relevance
/ast/src/lib/libast/string/ |
H A D | fmtesc.c | 39 * quote string as of length n with qb...qe 41 * qe and the usual suspects are \... escaped 48 fmtquote(const char* as, const char* qb, const char* qe, size_t n, int flags) argument 66 if (qe) 67 c += strlen((char*)qe); 157 else if (qe && strchr(qe, c)) 211 if (qe && (escaped || spaced)) 212 while (*b = *qe++)
|
/ast/src/lib/libdss/ |
H A D | dssprintf.c | 39 char* qe; member in struct:Arg_s 151 ret.value.string.size = strlen(ret.value.string.data = fmtquote(ret.value.string.data, ap->qb, ap->qe, ret.value.string.size, ap->fmt)); 479 ap->qe = v += 8; 546 if (!ap->qe) 547 ap->qe = ap->qb; 559 if (!ap->qe) 560 ap->qe = "'";
|
/ast/src/cmd/re/ |
H A D | sed2.c | 308 qe(Text *script, unsigned char *pc, Text *data) function 542 pe,qe,re,se,te,vv,vv,we,xe,ye,vv,Le,vv,Re,vv,vv /* p-y{} */
|
/ast/src/lib/libuu/ |
H A D | uulib.c | 572 unsigned char* qe; member in struct:__anon445 620 if (bx->qp >= bx->qe) 633 bx->qe = bx->qbuf; 636 bx->qe += c; 718 if (bx->qp >= bx->qe) 865 bx->qp = bx->qe = bx->qbuf + sizeof(bx->qbuf); 1116 bx->qe = bx->qbuf + sizeof(bx->qbuf);
|
/ast/src/lib/libast/misc/ |
H A D | magic.c | 1951 int qe = 0; local 1965 if (!qe) 1966 qe = '}'; 1967 if (qe == '}') 1971 if (!qe) 1972 qe = ')'; 1973 if (qe == ')') 1977 if (!qe) 1978 qe = ']'; 1979 if (qe [all...] |
/ast/src/lib/libpp/ |
H A D | ppproto.c | 609 char* qe = 0; local 761 if (c == '"' && qe) 763 for (n = 0, t = qe + 1; t < op && (*t == ' ' || *t == '\t' || *t == '\n' && ++n || *t >= 'A' && *t <= 'Z' || *t == '_'); t++); 766 op = qe; 767 qe = 0; 784 qe = (c == '"') ? op : (char*)0;
|
/ast/src/cmd/INIT/ |
H A D | proto.c | 2875 char* qe = 0; local 3027 if (c == '"' && qe) 3029 for (n = 0, t = qe + 1; t < op && (*t == ' ' || *t == '\t' || *t == '\n' && ++n || *t >= 'A' && *t <= 'Z' || *t == '_'); t++); 3032 op = qe; 3033 qe = 0; 3050 qe = (c == '"') ? op : (char*)0;
|
Completed in 40 milliseconds