Home
last modified time | relevance | path

Searched refs:fpath (Results 1 – 10 of 10) sorted by relevance

/llvm-project-15.0.7/llvm/utils/
H A Dwciia.py76 def find_owners(fpath): argument
86 if fpath == path:
93 if len(fpath) < len(path):
94 rpos = path.find(fpath)
H A Dllvm-compilers-check115 def is_executable(fpath): argument
116 return os.path.exists(fpath) and os.access(fpath, os.X_OK)
/llvm-project-15.0.7/lldb/third_party/Python/module/pexpect-4.6/pexpect/
H A Dutils.py26 fpath = os.path.realpath(path)
28 if not os.path.isfile(fpath):
32 mode = os.stat(fpath).st_mode
45 return os.access(fpath, os.X_OK)
/llvm-project-15.0.7/mlir/utils/jupyter/mlir_opt_kernel/
H A Dkernel.py18 def is_exe(fpath): argument
20 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
/llvm-project-15.0.7/lldb/packages/Python/lldbsuite/test/
H A Ddotest.py52 def is_exe(fpath): argument
54 if fpath == None:
57 if not fpath.endswith(".exe"):
58 fpath += ".exe"
59 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
64 fpath, _ = os.path.split(program)
65 if fpath:
H A Dlldbutil.py33 def is_exe(fpath): argument
35 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
40 fpath, fname = os.path.split(program)
41 if fpath:
H A Dlldbtest.py227 def is_exe(fpath): argument
229 if fpath == None:
232 if not fpath.endswith(".exe"):
233 fpath += ".exe"
234 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
239 fpath, fname = os.path.split(program)
240 if fpath:
/llvm-project-15.0.7/lldb/utils/lui/
H A Dlldbutil.py27 def is_exe(fpath): argument
29 return os.path.isfile(fpath) and os.access(fpath, os.X_OK)
34 fpath, fname = os.path.split(program)
35 if fpath:
/llvm-project-15.0.7/llvm/test/Transforms/InstSimplify/
H A Dselect-implied.ll200 ; cmp1 and cmp2 are false on the 'fpath' path and thus cmp3 is true.
209 ; CHECK: fpath:
218 br i1 %or, label %end, label %fpath
220 fpath:
/llvm-project-15.0.7/compiler-rt/test/BlocksRuntime/
H A Dtestfilerunner.m196 char fpath[1024];
204 sprintf(fpath, "DYLD_FRAMEWORK_PATH=%s", frameworkPath);
205 myenv[counter++] = fpath;