OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:pathext
(Results
1 - 5
of
5
) sorted by null
/external/llvm/utils/lit/lit/
util.py
72
# On Cygwin, '
PATHEXT
' may exist but it should not be used.
74
pathext
= os.environ.get('
PATHEXT
', '').split(';')
76
pathext
= ['']
80
for ext in
pathext
:
/external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp
223
/// extension is present, try all extensions in
PATHEXT
.
230
pathext_t
pathext
;
local
232
pathext
.push_back("");
233
SplitString(std::getenv("
PATHEXT
"),
pathext
, ";");
235
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
/external/chromium_org/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 179 milliseconds