Home
last modified time | relevance | path

Searched refs:CWD (Results 1 – 25 of 44) sorted by relevance

12

/netbsd-src/lib/
H A Dcheckvers78 CWD=`pwd`
170 CWD=`pwd`
171 VERFILES=`find $CWD -name shlib_version -print`
H A Dcheckver98 CWD=$(pwd)
203 makefile=$CWD/Makefile
208 libname=$(basename $CWD)
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningTool.cpp49 const tooling::CompilationDatabase &Compilations, StringRef CWD) { in getDependencyFile() argument
106 auto Result = Worker.computeDependencies(Input, CWD, Compilations, Consumer); in getDependencyFile()
116 const tooling::CompilationDatabase &Compilations, StringRef CWD, in getFullDependencies() argument
182 Worker.computeDependencies(Input, CWD, Compilations, Consumer); in getFullDependencies()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningTool.h82 StringRef CWD);
97 StringRef CWD, const llvm::StringSet<> &AlreadySeen);
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-ml/
H A Dllvm-ml.cpp293 SmallString<128> CWD; in main() local
294 if (!sys::fs::current_path(CWD)) in main()
295 Ctx.setCompilationDir(CWD); in main()
/netbsd-src/external/apache2/llvm/dist/clang/tools/clang-scan-deps/
H A DClangScanDeps.cpp584 std::string CWD; in main() local
595 CWD = std::move(Cmd.Directory); in main()
599 auto MaybeFile = WorkerTools[I]->getDependencyFile(*Input, CWD); in main()
605 *Input, CWD, AlreadySeenModules); in main()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp448 SmallString<128> CWD; in main() local
449 if (!sys::fs::current_path(CWD)) in main()
450 Ctx.setCompilationDir(CWD); in main()
/netbsd-src/external/cddl/dtracetoolkit/dist/Docs/Examples/
H A Dcrash_example.txt27 CWD: /usr/include/sys
/netbsd-src/external/cddl/dtracetoolkit/dist/Examples/
H A Dcrash_example.txt27 CWD: /usr/include/sys
/netbsd-src/libexec/ftpd/
H A Dftpcmd.y139 USER PASS ACCT CWD CDUP SMNT
200 | CWD check_login CRLF
206 | CWD check_login SP pathname CRLF
1228 { "CWD", CWD, OSTR, 1, "[ <sp> directory-name ]", 0, },
1292 { "XCWD", CWD, OSTR, 1, "[ <sp> directory-name ]", 0, },
/netbsd-src/external/apache2/llvm/dist/clang/tools/driver/
H A Dcc1as_main.cpp425 SmallString<128> CWD; in ExecuteAssemblerImpl() local
426 if (!sys::fs::current_path(CWD)) in ExecuteAssemblerImpl()
427 Ctx.setCompilationDir(CWD); in ExecuteAssemblerImpl()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Tooling/
H A DTooling.cpp486 if (auto CWD = OverlayFileSystem->getCurrentWorkingDirectory()) { in run() local
487 InitialWorkingDir = std::move(*CWD); in run()
490 << CWD.getError().message() << "\n"; in run()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ProfileData/Coverage/
H A DCoverageMappingReader.cpp160 StringRef CWD; in readUncompressed() local
161 if (auto Err = readString(CWD)) in readUncompressed()
163 Filenames.push_back(CWD.str()); in readUncompressed()
176 P.assign(CWD); in readUncompressed()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86InstrExtension.td24 // FIXME: CWD/CDQ/CQO shouldn't Def the A register, but the fast register
27 def CWD : I<0x99, RawFrm, (outs), (ins),
H A DX86InstructionSelector.cpp1537 {X86::IDIV16r, X86::CWD, Copy, X86::AX, S}, // SDiv in selectDivRem()
1538 {X86::IDIV16r, X86::CWD, Copy, X86::DX, S}, // SRem in selectDivRem()
H A DX86ScheduleAtom.td595 def : InstRW<[AtomWrite01_4], (instrs CBW, CWD, CWDE, CDQ, CDQE, CQO,
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp1570 SmallString<256> CWD; in getCurrentDirname() local
1571 llvm::sys::fs::current_path(CWD); in getCurrentDirname()
1572 return CWD.str().str(); in getCurrentDirname()
H A DCGDebugInfo.cpp517 SmallString<256> CWD; in getCurrentDirname() local
518 llvm::sys::fs::current_path(CWD); in getCurrentDirname()
519 return CWDName = internString(CWD); in getCurrentDirname()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A DVirtualFileSystem.cpp990 auto CWD = getCurrentWorkingDirectory(); in getRealPath() local
991 if (!CWD || CWD->empty()) in getRealPath()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Driver/ToolChains/
H A DClang.cpp642 } else if (llvm::ErrorOr<std::string> CWD = in addDebugCompDirArg() local
644 CmdArgs.push_back(Args.MakeArgString("-fdebug-compilation-dir=" + *CWD)); in addDebugCompDirArg()
888 } else if (llvm::ErrorOr<std::string> CWD = in addPGOAndCoverageFlags() local
890 CmdArgs.push_back(Args.MakeArgString("-fcoverage-compilation-dir=" + *CWD)); in addPGOAndCoverageFlags()
2293 auto CWD = D.getVFS().getCurrentWorkingDirectory(); in DumpCompilationDatabase() local
2294 if (!CWD) in DumpCompilationDatabase()
2295 CWD = "."; in DumpCompilationDatabase()
2296 CDB << "{ \"directory\": \"" << escape(*CWD) << "\""; in DumpCompilationDatabase()
/netbsd-src/external/bsd/cron/dist/
H A DMAIL50 TERM, and the like; supply correct values for HOME, USER, CWD,
327 << delete TERM and TERMCAP; modify HOME, USER, and CWD; pass TZ and
/netbsd-src/external/bsd/openldap/dist/doc/guide/admin/
H A Daspell.en.pws83 CWD
/netbsd-src/share/man/tools/
H A Dsp.ignore1686 CWD
/netbsd-src/external/ibm-public/postfix/dist/proto/
H A Dstop.spell-cc228 CWD
/netbsd-src/external/cddl/osnet/dev/dtrace/x86/
H A Ddis_tables.c160 CWD, /* so data16 can be evaluated for cwd and variants */ enumerator
2220 /* [9,8] */ TNS("cXtX",CBW), TNS("cXtX",CWD), TNSx("lcall",SO), TNS("fwait",NORM),
3658 dp->it_adrmode != CWD && in dtrace_disx86()
4684 case CWD: in dtrace_disx86()

12