HomeSort by: relevance | last modified time | path
    Searched defs:CSV (Results 1 - 2 of 2) sorted by relevancy

  /src/external/historical/nawk/dist/
main.c 58 bool CSV = false; /* true for csv input */
154 "usage: %s [-F fs | --csv] [-v var=value] [-f progfile | 'prog'] [file ...]\n",
187 if (strcmp(argv[1], "--csv") == 0) { /* turn on csv input processing */
188 CSV = true;
232 if (CSV && (fs != NULL || lookup("FS", symtab) != NULL))
233 WARNING("danger: don't set FS when --csv is in effect");
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/
NonNullParamChecker.cpp 153 auto CSV = DV->getAs<nonloc::CompoundVal>();
156 if (!CSV)
159 V = *(CSV->begin());
161 assert(++CSV->begin() == CSV->end());

Completed in 25 milliseconds