OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:to_exists
(Results
1 - 2
of
2
) sorted by null
/external/libcxx/src/experimental/filesystem/
operations.cpp
314
const bool
to_exists
= exists(to_st);
local
315
if (
to_exists
&& !is_regular_file(to_st)) {
319
if (
to_exists
&& detail::stat_equivalent(from_stat, to_stat)) {
324
if (
to_exists
&& bool(copy_options::skip_existing & options)) {
327
else if (
to_exists
&& bool(copy_options::update_existing & options)) {
337
else if (!
to_exists
|| bool(copy_options::overwrite_existing & options)) {
/prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/src/experimental/filesystem/
operations.cpp
283
const bool
to_exists
= exists(to_st);
local
284
if (
to_exists
&& !is_regular_file(to_st)) {
288
if (
to_exists
&& bool(copy_options::skip_existing & options)) {
291
else if (
to_exists
&& bool(copy_options::update_existing & options)) {
301
else if (!
to_exists
|| bool(copy_options::overwrite_existing & options)) {
Completed in 635 milliseconds