Lines Matching full:path
165 static wstring path;
169 return path;
174 path = buffer;
175 int lastSlash = path.rfind('\\');
176 if (lastSlash != -1 && lastSlash + 1 < path.length())
177 path = path.substr(0, lastSlash + 1);
179 return path;
184 static wstring path;
188 return path;
194 path = buffer.data();
195 if (path[path.length() - 1] != '\\')
196 path.append(L"\\");
197 return path;
200 path = exePath() + TEXT("DumpRenderTree.resources\\");
201 return path;
206 static LPCWSTR pathEnvironmentVariable = L"PATH";
227 // Read the current PATH.
303 // Add the QuickTime dll directory to PATH or QT 7.6 will fail to initialize on systems
858 // Look for "'" as a separator between the path or URL, and the pixel dump hash that follows.