Searched defs:quoted (Results 1 - 5 of 5) sorted by relevance
/ast/src/lib/libast/comp/ |
H A D | wordexp.c | 69 register int c,quoted=0,literal=0,ac=0; local 90 if(c=='\'' && !quoted) 94 if(c=='\\' && (!quoted || strchr("\\\"`\n$",c))) 103 quoted = !quoted; 115 else if(!quoted && strchr("|&\n;<>"+ac,c)) 136 quoted = ! quoted; 137 else if(!quoted && (c==' ' || c=='\n'))
|
/ast/src/cmd/ksh93/sh/ |
H A D | array.c | 1502 register int count=1, quoted=0, c; local 1509 quoted=1; 1518 if(quoted) 1554 if(quoted)
|
H A D | lex.c | 296 char *quoted, *macro, *split, *expand; local 299 quoted = macro = split = expand = ""; 307 quoted = "quoted:"; 309 sfprintf(sfstderr,"%d: line %d: %o:%s%s%s%s %s\n",getpid(),shp->inlineno,tok,quoted, 800 /* check for multi-line single-quoted string */ 1785 * quoted here documents, and here-documents without special chars are 1808 /* check for and strip quoted characters in delimiter string */ 2176 register int inquote=0, inlit=0; /* set within quoted strings */
|
H A D | macro.c | 73 short quoted; /* set when word has quotes */ member in struct:_mac_ 76 char quote; /* set within double quoted contexts */ 175 mp->quoted = mp->lit = mp->split = mp->quote = 0; 221 mp->quoted = mp->lit = mp->quote = 0; 255 endfield(mp,mp->quoted|mp->atmode); 706 mp->quoted++; 1156 mp->atmode = (v && mp->quoted && c=='@'); 1437 mp->atmode = (v && mp->quoted && mode=='@'); 1576 int quoted = mp->quoted; local [all...] |
H A D | xec.c | 424 static void out_string(Sfio_t *iop, register const char *cp, int c, int quoted) argument 426 if(quoted)
|
Completed in 31 milliseconds