Lines Matching refs:P
22 P.appendComponent(TargetSpecificExecutable);
23 if (isPathExecutable(P, WantFile)) return P.str();
24 P.eraseComponent();
25 - P.appendComponent(Name);
26 + P.appendComponent(N);
27 if (isPathExecutable(P, WantFile)) return P.str();
31 P.appendComponent(TargetSpecificExecutable);
32 if (isPathExecutable(P, WantFile)) return P.str();
33 P.eraseComponent();
34 - P.appendComponent(Name);
35 + P.appendComponent(N);
36 if (isPathExecutable(P, WantFile)) return P.str();
40 if (!P.empty())
41 return P.str();
43 - P = llvm::sys::Path(llvm::sys::Program::FindProgramByName(Name));
44 + P = llvm::sys::Path(llvm::sys::Program::FindProgramByName(N));
45 if (!P.empty())
46 return P.str();