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
68
# On Cygwin, '
PATHEXT
' may exist but it should not be used.
70
pathext
= os.environ.get('
PATHEXT
', '').split(';')
72
pathext
= ['']
76
for ext in
pathext
:
/external/llvm/utils/KillTheDoctor/
KillTheDoctor.cpp
220
/// extension is present, try all extensions in
PATHEXT
.
226
pathext_t
pathext
;
local
228
pathext
.push_back("");
229
SplitString(std::getenv("
PATHEXT
"),
pathext
, ";");
231
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 80 milliseconds