Searched refs:existed (Results 1 - 12 of 12) sorted by relevance

/freebsd-10.0-release/contrib/llvm/include/llvm/Support/
H A DFileUtilities.h54 bool existed; local
55 sys::fs::remove(Filename.str(), existed);
65 bool existed; local
66 sys::fs::remove(Filename.str(), existed);
H A DFileSystem.h251 /// @param existed Set to true if \a path already existed, false otherwise.
252 /// @returns errc::success if is_directory(path) and existed have been set,
254 error_code create_directories(const Twine &path, bool &existed);
259 /// @param existed Set to true if \a path already existed, false otherwise.
260 /// @returns errc::success if is_directory(path) and existed have been set,
262 error_code create_directory(const Twine &path, bool &existed);
290 /// @param existed Set to true if \a path existed, fals
[all...]
/freebsd-10.0-release/contrib/llvm/lib/Support/Unix/
H A DPathV2.inc195 error_code create_directory(const Twine &path, bool &existed) {
202 existed = true;
204 existed = false;
235 error_code remove(const Twine &path, bool &existed) {
242 existed = false;
244 existed = true;
429 // If the file existed, try again, otherwise, error.
/freebsd-10.0-release/sys/dev/drm2/ttm/
H A Dttm_object.h190 * @existed: Upon completion, indicates that an identical reference object
191 * already existed, and the refcount was upped on that object instead.
204 enum ttm_ref_type ref_type, bool *existed);
H A Dttm_object.c259 enum ttm_ref_type ref_type, bool *existed)
267 if (existed != NULL)
268 *existed = true;
305 if (existed != NULL)
306 *existed = false;
257 ttm_ref_object_add(struct ttm_object_file *tfile, struct ttm_base_object *base, enum ttm_ref_type ref_type, bool *existed) argument
/freebsd-10.0-release/contrib/llvm/lib/Support/Windows/
H A DPathV2.inc198 error_code create_directory(const Twine &path, bool &existed) {
209 existed = true;
213 existed = false;
260 error_code remove(const Twine &path, bool &existed) {
277 existed = false;
279 existed = true;
285 existed = false;
287 existed = true;
612 // If the file existed, try again, otherwise, error.
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/ARCMigrate/
H A DFileRemapper.cpp39 bool existed; local
40 llvm::sys::fs::remove(infoFile, existed);
116 bool existed;
117 if (fs::create_directory(outputDir, existed) != llvm::errc::success)
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Rewrite/Core/
H A DRewriter.cpp459 bool existed; local
462 llvm::sys::fs::remove(TempFilename.str(), existed);
/freebsd-10.0-release/contrib/llvm/tools/clang/lib/Frontend/
H A DCompilerInstance.cpp430 bool existed; local
431 llvm::sys::fs::remove(it->TempFilename, existed);
443 bool existed; local
444 llvm::sys::fs::remove(it->TempFilename, existed);
/freebsd-10.0-release/contrib/llvm/lib/Support/
H A DPathV2.cpp677 error_code create_directories(const Twine &path, bool &existed) {
687 if (error_code ec = create_directories(parent, existed)) return ec;
690 return create_directory(p, existed);
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_client/
H A Dpatch.c75 /* Indicates whether unpatched content existed prior to patching. */ member in struct:target_content_t
76 svn_boolean_t existed;
137 * prior to patch application (see also CONTENT->existed).
176 * CONTENT->existed). */
673 content->existed = (value != NULL);
1035 content->existed = TRUE;
1064 content->existed = TRUE;
1593 if (content->existed)
1611 else if (original_start > 0 && content->existed)
2255 if (prop_target->content->existed)
[all...]
/freebsd-10.0-release/contrib/subversion/subversion/libsvn_wc/
H A Dwc-metadata.sql275 0 is the original data for foo/bar before 'svn rm foo' (if it existed).

Completed in 202 milliseconds