Lines Matching refs:ignore
190 exp0(Char ***vp, int ignore) in exp0() argument
192 tcsh_number_t p1 = exp1(vp, ignore); in exp0()
201 exp0(vp, (ignore & TEXP_IGNORE) || p1) : in exp0()
202 exp1(vp, (ignore & TEXP_IGNORE) || p1); in exp0()
203 if (compat_expr || !(ignore & TEXP_IGNORE)) in exp0()
213 exp1(Char ***vp, int ignore) in exp1() argument
215 tcsh_number_t p1 = exp2x(vp, ignore); in exp1()
223 exp1(vp, (ignore & TEXP_IGNORE) || !p1) : in exp1()
224 exp2x(vp, (ignore & TEXP_IGNORE) || !p1); in exp1()
227 if (compat_expr || !(ignore & TEXP_IGNORE)) in exp1()
237 exp2x(Char ***vp, int ignore) in exp2x() argument
239 tcsh_number_t p1 = exp2a(vp, ignore); in exp2x()
247 exp2x(vp, ignore) : in exp2x()
248 exp2a(vp, ignore); in exp2x()
250 if (compat_expr || !(ignore & TEXP_IGNORE)) in exp2x()
260 exp2a(Char ***vp, int ignore) in exp2a() argument
262 tcsh_number_t p1 = exp2b(vp, ignore); in exp2a()
270 exp2a(vp, ignore) : in exp2a()
271 exp2b(vp, ignore); in exp2a()
273 if (compat_expr || !(ignore & TEXP_IGNORE)) in exp2a()
283 exp2b(Char ***vp, int ignore) in exp2b() argument
285 tcsh_number_t p1 = exp2c(vp, ignore); in exp2b()
293 exp2b(vp, ignore) : in exp2b()
294 exp2c(vp, ignore); in exp2b()
296 if (compat_expr || !(ignore & TEXP_IGNORE)) in exp2b()
306 exp2c(Char ***vp, int ignore) in exp2c() argument
308 Char *p1 = exp3(vp, ignore); in exp2c()
317 ignore |= TEXP_NOGLOB; in exp2c()
318 p2 = exp3(vp, ignore); in exp2c()
321 if (!(ignore & TEXP_IGNORE)) in exp2c()
349 exp3(Char ***vp, int ignore) in exp3() argument
354 p1 = exp3a(vp, ignore); in exp3()
362 exp3(vp, ignore) : in exp3()
363 exp3a(vp, ignore); in exp3()
366 if (!(ignore & TEXP_IGNORE)) in exp3()
395 exp3a(Char ***vp, int ignore) in exp3a() argument
401 p1 = exp4(vp, ignore); in exp3a()
408 exp3a(vp, ignore) : in exp3a()
409 exp4(vp, ignore); in exp3a()
424 exp4(Char ***vp, int ignore) in exp4() argument
429 p1 = exp5(vp, ignore); in exp4()
436 exp4(vp, ignore) : in exp4()
437 exp5(vp, ignore); in exp4()
440 if (!(ignore & TEXP_IGNORE)) in exp4()
461 exp5(Char ***vp, int ignore) in exp5() argument
466 p1 = exp6(vp, ignore); in exp5()
471 if ((ignore & TEXP_NOGLOB) != 0) { in exp5()
482 exp5(vp, ignore) : in exp5()
483 exp6(vp, ignore); in exp5()
486 if (!(ignore & TEXP_IGNORE)) in exp5()
517 exp6(Char ***vp, int ignore) in exp6() argument
527 cp = exp6(vp, ignore); in exp6()
536 cp = exp6(vp, ignore); in exp6()
545 ccode = exp0(vp, ignore); in exp6()
571 if (ignore & TEXP_IGNORE) in exp6()
595 return(filetest(cp, vp, ignore)); in exp6()
597 return (ignore & TEXP_NOGLOB ? Strsave(cp) : globone(cp, G_APPEND)); in exp6()
606 filetest(Char *cp, Char ***vp, int ignore) in filetest() argument
678 if (ignore & TEXP_IGNORE) in filetest()