HomeSort by relevance Sort by last modified time
    Searched refs:pathext (Results 1 - 5 of 5) sorted by null

  /external/llvm/utils/lit/lit/
util.py 87 # On Cygwin, 'PATHEXT' may exist but it should not be used.
89 pathext = os.environ.get('PATHEXT', '').split(';')
91 pathext = ['']
95 for ext in pathext:
  /external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp 224 /// extension is present, try all extensions in PATHEXT.
231 pathext_t pathext; local
233 pathext.push_back("");
234 SplitString(std::getenv("PATHEXT"), pathext, ";");
236 for (pathext_t::iterator i = pathext.begin(), e = pathext.end(); i != e; ++i){
  /external/clang/utils/analyzer/
SATestBuild.py 97 # On Cygwin, 'PATHEXT' may exist but it should not be used.
99 pathext = os.environ.get('PATHEXT', '').split(';')
101 pathext = ['']
105 for ext in pathext:
  /external/llvm/utils/
llvm-compilers-check 100 pathext = os.environ['PATHEXT'].lower().split(os.pathsep)
102 if ext.lower() not in pathext:
103 extlist = pathext
  /external/v8/tools/gyp/test/lib/
TestCmd.py 532 def where_is(file, path=None, pathext=None):
537 if pathext is None:
538 pathext = os.environ['PATHEXT']
539 if is_String(pathext):
540 pathext = string.split(pathext, os.pathsep)
541 for ext in pathext:
543 pathext = ['']
547 for ext in pathext
    [all...]

Completed in 231 milliseconds