Searched refs:CWD (Results 1 - 21 of 21) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DDependencyScanningTool.h36 StringRef CWD);
/freebsd-11-stable/share/mk/
H A Dmeta2deps.sh14 # To do this, we extract the 'CWD' record as well as all the
23 # CWD "cwd"
39 # To simplify the logic the 'CWD' line is made to look like a
240 sed -e 's,^CWD,C C,;/^[CREFLM] /!d' -e "s,',,g" |
246 # CWD is bmake's cwd
248 ,C) CWD=$path cwd=$path ldir=$path
250 SB=`echo $CWD | sed 's,/obj.*,,'`
261 eval ldir=\${ldir_$pid:-$CWD} cwd=\${cwd_$pid:-$CWD}
274 test -d ${cwd:-/dev/null/no/such} || cwd=$CWD
[all...]
/freebsd-11-stable/contrib/bmake/mk/
H A Dmeta2deps.sh13 # To do this, we extract the 'CWD' record as well as all the
22 # CWD "cwd"
38 # To simplify the logic the 'CWD' line is made to look like a
239 sed -e 's,^CWD,C C,;/^[CREFLM] /!d' -e "s,',,g" |
245 # CWD is bmake's cwd
247 ,C) CWD=$path cwd=$path ldir=$path
249 SB=`echo $CWD | sed 's,/obj.*,,'`
260 eval ldir=\${ldir_$pid:-$CWD} cwd=\${cwd_$pid:-$CWD}
273 test -d ${cwd:-/dev/null/no/such} || cwd=$CWD
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningTool.cpp31 const tooling::CompilationDatabase &Compilations, StringRef CWD) {
154 Worker.computeDependencies(Input, CWD, Compilations, Consumer);
163 Worker.computeDependencies(Input, CWD, Compilations, Consumer);
30 getDependencyFile( const tooling::CompilationDatabase &Compilations, StringRef CWD) argument
H A DDependencyScanningWorker.cpp56 assert(!CWD.empty() && "empty CWD");
57 return CWD;
61 CWD = Path.str();
66 std::string CWD; member in class:__anon922::ProxyFileSystemWithoutChdir
/freebsd-11-stable/crypto/heimdal/appl/ftp/ftpd/
H A Dftpcmd.y101 ABOR DELE CWD LIST NLST SITE
364 | CWD CRLF check_login
373 | CWD SP pathname CRLF check_login
962 { "CWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
963 { "XCWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
H A Dftpcmd.c110 CWD = 299, enumerator in enum:yytokentype
195 #define CWD 299 macro
690 "REST", "RNFR", "RNTO", "ABOR", "DELE", "CWD", "LIST", "NLST", "SITE",
3018 { "CWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
3019 { "XCWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
/freebsd-11-stable/contrib/opie/
H A Dftpcmd.y174 ABOR DELE CWD LIST NLST SITE
386 | CWD check_login CRLF
391 | CWD check_login SP pathname CRLF
837 { "CWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
838 { "XCWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
/freebsd-11-stable/contrib/llvm-project/clang/tools/driver/
H A Dcc1as_main.cpp409 SmallString<128> CWD; local
410 if (!sys::fs::current_path(CWD))
411 Ctx.setCompilationDir(CWD);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DTooling.cpp482 if (auto CWD = OverlayFileSystem->getCurrentWorkingDirectory()) {
483 InitialWorkingDir = std::move(*CWD);
486 << CWD.getError().message() << "\n";
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-mc/
H A Dllvm-mc.cpp396 SmallString<128> CWD; local
397 if (!sys::fs::current_path(CWD))
398 Ctx.setCompilationDir(CWD);
/freebsd-11-stable/libexec/ftpd/
H A Dftpcmd.y107 ABOR DELE CWD LIST NLST SITE
510 | CWD check_login CRLF
516 | CWD check_login SP pathname CRLF
1100 { "CWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
1101 { "XCWD", CWD, OSTR, 1, "[ <sp> directory-name ]" },
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DVirtualFileSystem.cpp970 auto CWD = getCurrentWorkingDirectory(); local
971 if (!CWD || CWD->empty())
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/ToolChains/
H A DClang.cpp624 } else if (llvm::ErrorOr<std::string> CWD =
627 CmdArgs.push_back(Args.MakeArgString(*CWD));
2192 auto CWD = D.getVFS().getCurrentWorkingDirectory(); local
2193 if (!CWD)
2194 CWD = ".";
2195 CDB << "{ \"directory\": \"" << escape(*CWD) << "\"";
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstructionSelector.cpp1581 {X86::IDIV16r, X86::CWD, Copy, X86::AX, S}, // SDiv
1582 {X86::IDIV16r, X86::CWD, Copy, X86::DX, S}, // SRem
H A DX86FastISel.cpp1888 { X86::IDIV16r, X86::CWD, Copy, X86::AX, S }, // SDiv
1889 { X86::IDIV16r, X86::CWD, Copy, X86::DX, S }, // SRem
H A DX86ISelDAGToDAG.cpp4896 SExtOpcode = X86::CWD;
H A DX86ISelLowering.cpp25422 SDValue CWD =
25429 CWD, DAG.getConstant(0x800, DL, MVT::i16)),
25434 CWD, DAG.getConstant(0x400, DL, MVT::i16)),
[all...]
/freebsd-11-stable/sys/cddl/dev/dtrace/x86/
H A Ddis_tables.c160 CWD, /* so data16 can be evaluated for cwd and variants */ enumerator in enum:__anon5463
2220 /* [9,8] */ TNS("cXtX",CBW), TNS("cXtX",CWD), TNSx("lcall",SO), TNS("fwait",NORM),
3658 dp->it_adrmode != CWD &&
4684 case CWD:
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDebugInfo.cpp506 SmallString<256> CWD;
507 llvm::sys::fs::current_path(CWD);
508 return CWDName = internString(CWD);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp8359 SDValue CWD = DAG.getLoad(MVT::i32, dl, Store, Addr, MachinePointerInfo()); local
8364 CWD, DAG.getConstant(3, dl, MVT::i32));
8369 CWD, DAG.getConstant(3, dl, MVT::i32)),

Completed in 617 milliseconds