Searched refs:fpath (Results 1 – 10 of 10) sorted by relevance
| /llvm-project-15.0.7/llvm/utils/ |
| H A D | wciia.py | 76 def find_owners(fpath): argument 86 if fpath == path: 93 if len(fpath) < len(path): 94 rpos = path.find(fpath)
|
| H A D | llvm-compilers-check | 115 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 D | utils.py | 26 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 D | kernel.py | 18 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 D | dotest.py | 52 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 D | lldbutil.py | 33 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 D | lldbtest.py | 227 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 D | lldbutil.py | 27 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 D | select-implied.ll | 200 ; 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 D | testfilerunner.m | 196 char fpath[1024]; 204 sprintf(fpath, "DYLD_FRAMEWORK_PATH=%s", frameworkPath); 205 myenv[counter++] = fpath;
|