OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pathext
(Results
1 - 4
of
4
) 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
91
# On Cygwin, '
PATHEXT
' may exist but it should not be used.
93
pathext
= os.environ.get('
PATHEXT
', '').split(';')
95
pathext
= ['']
99
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
Completed in 558 milliseconds