Lines Matching full:quoted
368 case CTLESC: /* This means CTL* are always considered quoted. */ in exptilde()
414 int quoted; in expari() local
417 quoted = *p++ == '"'; in expari()
436 * If this is quoted, a '-' must not indicate a range in [...]. in expari()
437 * If this is not quoted, splitting may occur. in expari()
439 if (quoted ? in expari()
442 reprocess(expdest - adj - stackblock(), flag, VSNORMAL, quoted, in expari()
452 expbackq(union node *cmd, int quoted, int flag, struct worddest *dst) in expbackq() argument
460 char const *syntax = quoted? DQSYNTAX : BASESYNTAX; in expbackq()
474 if (!quoted && flag & EXP_SPLIT) in expbackq()
866 strtodest(const char *p, int flag, int subtype, int quoted, in strtodest() argument
873 else if (flag & EXP_SPLIT && !quoted && dst != NULL) in strtodest()
876 STPUTS_QUOTES(p, quoted ? DQSYNTAX : BASESYNTAX, expdest); in strtodest()
882 reprocess(int startloc, int flag, int subtype, int quoted, in reprocess() argument
911 strtodest(buf + zpos, flag, subtype, quoted, dst); in reprocess()
915 if (flag & EXP_SPLIT && (quoted || (zlen > 0 && zpos < len))) in reprocess()
925 varvalue(const char *name, int quoted, int subtype, int flag, in varvalue() argument
961 strtodest(buf, flag, subtype, quoted, dst); in varvalue()
964 if (flag & EXP_SPLIT && quoted) { in varvalue()
966 strtodest(p, flag, subtype, quoted, dst); in varvalue()
987 strtodest(p, flag, subtype, quoted, dst); in varvalue()
991 strtodest(sep, flag, subtype, quoted, dst); in varvalue()
992 else if (flag & EXP_SPLIT && !quoted && **ap != '\0') { in varvalue()
1009 strtodest(p, flag, subtype, quoted, dst); in varvalue()
1014 strtodest(buf, flag, subtype, quoted, dst); in varvalue()