Home
last modified time | relevance | path

Searched refs:NoThrow (Results 1 – 25 of 211) sorted by relevance

123456789

/dports/devel/fbthrift/fbthrift-2021.12.27.00/thrift/conformance/cpp2/
H A DTestingTest.cpp29 (ctor_type_v<CtorType::Delete, CtorType::NoThrow>), CtorType::Delete); in TEST()
34 EXPECT_EQ((ctor_type_v<CtorType::Throw, CtorType::NoThrow>), CtorType::Throw); in TEST()
37 EXPECT_EQ((ctor_type_v<CtorType::NoThrow, CtorType::Throw>), CtorType::Throw); in TEST()
39 (ctor_type_v<CtorType::NoThrow, CtorType::NoThrow>), CtorType::NoThrow); in TEST()
41 (ctor_type_v<CtorType::NoThrow, CtorType::Trivial>), CtorType::NoThrow); in TEST()
45 (ctor_type_v<CtorType::Trivial, CtorType::NoThrow>), CtorType::NoThrow); in TEST()
62 /*move=*/CtorType::NoThrow, in TEST()
/dports/mail/emailrelay/emailrelay-1.9/src/glib/
H A Dgfile.h56 class NoThrow
59 static bool remove( const Path & path , const NoThrow & ) ;
65 static bool rename( const Path & from , const Path & to , const NoThrow & ) ;
71 static bool copy( const Path & from , const Path & to , const NoThrow & ) ;
81 static bool mkdirs( const Path & dir , const NoThrow & , int = 100 ) ;
89 static bool mkdir( const Path & dir , const NoThrow & ) ;
104 static bool exists( const Path & file , const NoThrow & ) ;
111 static time_type time( const Path & file , const NoThrow & ) ;
118 static bool chmodx( const Path & file , const NoThrow & ) ;
124 static bool link( const Path & target , const Path & new_link , const NoThrow & ) ;
H A Dgfile.cpp29 bool G::File::remove( const Path & path , const G::File::NoThrow & ) in remove() argument
46 bool G::File::rename( const Path & from , const Path & to , const NoThrow & ) in rename() argument
70 bool G::File::copy( const Path & from , const Path & to , const NoThrow & ) in copy() argument
126 if( ! mkdir( dir , NoThrow() ) ) in mkdir()
135 bool G::File::exists( const Path & path , const NoThrow & ) in exists() argument
159 bool G::File::chmodx( const Path & path , const NoThrow & ) in chmodx() argument
169 bool G::File::mkdirs( const Path & path , const NoThrow & , int limit ) in mkdirs() argument
176 if( ! mkdirs( path.dirname() , NoThrow() , limit-1 ) ) return false ; in mkdirs()
177 bool ok = mkdir( path , NoThrow() ) ; in mkdirs()
178 if( ok ) chmodx( path , NoThrow() ) ; in mkdirs()
[all …]
H A Dgfile_unix.cpp30 bool G::File::mkdir( const Path & dir , const NoThrow & ) in mkdir() argument
86 G::File::time_type G::File::time( const Path & path , const NoThrow & ) in time() argument
113 if( !link(target,new_link,NoThrow()) ) in link()
122 bool G::File::link( const Path & target , const Path & new_link , const NoThrow & ) in link() argument
136 remove( new_link , NoThrow() ) ; in link()
H A Dgfile_win32.cpp28 bool G::File::mkdir( const Path & dir , const NoThrow & ) in mkdir() argument
35 return exists( path , NoThrow() ) ; in executable()
91 G::File::time_type G::File::time( const Path & path , const NoThrow & ) in time() argument
109 bool G::File::link( const Path & , const Path & , const NoThrow & ) in link() argument
/dports/mail/emailrelay/emailrelay-1.9/src/gui/
H A Dboot_unix.cpp44 G::File::copy( target , to_absolute , G::File::NoThrow() ) ; in install()
46 bool ok0 = G::File::link( to_relative , dir_boot+".."+"rc2.d"+name , G::File::NoThrow() ) ; in install()
47 bool ok1 = G::File::link( to_relative , dir_boot+".."+"rc3.d"+name , G::File::NoThrow() ) ; in install()
48 bool ok2 = G::File::link( to_relative , dir_boot+".."+"rc4.d"+name , G::File::NoThrow() ) ; in install()
49 bool ok3 = G::File::link( to_relative , dir_boot+".."+"rc5.d"+name , G::File::NoThrow() ) ; in install()
56 bool ok0 = G::File::remove( dir_boot+".."+"rc2.d"+name , G::File::NoThrow() ) ; in uninstall()
57 bool ok1 = G::File::remove( dir_boot+".."+"rc3.d"+name , G::File::NoThrow() ) ; in uninstall()
58 bool ok2 = G::File::remove( dir_boot+".."+"rc4.d"+name , G::File::NoThrow() ) ; in uninstall()
59 bool ok3 = G::File::remove( dir_boot+".."+"rc5.d"+name , G::File::NoThrow() ) ; in uninstall()
H A Dboot_mac.cpp33 G::File::mkdirs( dir , G::File::NoThrow() , 6 ) ; in able()
48 G::File::mkdirs( dst_dir , G::File::NoThrow() , 6 ) ; in install()
51 G::File::copy( src_dir + target.basename() , dst_dir + target.basename() , G::File::NoThrow() ) && in install()
52 G::File::copy( src_dir + plist , dst_dir + plist , G::File::NoThrow() ) ; in install()
59 G::File::remove( dir_boot + target.basename() + target.basename() , G::File::NoThrow() ) && in uninstall()
60 G::File::remove( dir_boot + target.basename() + plist , G::File::NoThrow() ) && in uninstall()
61 G::File::remove( dir_boot + target.basename() , G::File::NoThrow() ) ; in uninstall()
H A Dgunpack.h70 class NoThrow
84 Unpack( Path argv0 , NoThrow ) ;
120 std::string unpackOriginal( const Path & dst , NoThrow ) ;
/dports/lang/gcc12-devel/gcc-12-20211205/libphobos/libdruntime/core/internal/array/
H A Dconstruction.d153 struct NoThrow struct
163 NoThrow[4] a; argument
164 NoThrow[4] b = [NoThrow(1), NoThrow(2), NoThrow(3), NoThrow(4)];
285 struct NoThrow struct
295 NoThrow[4] a; argument
296 NoThrow b = NoThrow(1);
299 assert(e == NoThrow(1));
/dports/devel/llvm-devel/llvm-project-f05c95f10fc1d8171071735af8ad3a9e87633120/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/dports/devel/tinygo/tinygo-0.14.1/llvm-project/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/llvm/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/dports/devel/wasi-libcxx/llvm-project-13.0.1.src/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/dports/devel/llvm12/llvm-project-12.0.1.src/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/dports/devel/llvm11/llvm-11.0.1.src/tools/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/dports/devel/llvm-cheri/llvm-project-37c49ff00e3eadce5d8703fdc4497f28458c64a8/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/dports/devel/llvm90/llvm-9.0.1.src/tools/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/dports/devel/llvm10/llvm-10.0.1.src/tools/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/dports/devel/wasi-compiler-rt13/llvm-project-13.0.1.src/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/dports/lang/rust/rustc-1.58.1-src/src/llvm-project/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/dports/devel/wasi-compiler-rt12/llvm-project-12.0.1.src/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/dports/devel/llvm13/llvm-project-13.0.1.src/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/dports/devel/llvm80/llvm-8.0.1.src/tools/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow {
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}}
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}}
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}}
/dports/devel/llvm70/llvm-7.0.1.src/tools/clang/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()
/dports/lang/clang-mesa/clang-13.0.1.src/test/Analysis/
H A Dnew-with-exceptions.cpp15 struct NoThrow { struct
32 clang_analyzer_eval(new NoThrow); // expected-warning{{UNKNOWN}} in testNew()
40 clang_analyzer_eval(new NoThrow[2]); // expected-warning{{TRUE}} in testNewArray()
49 clang_analyzer_eval(new (1) NoThrow[2]); // expected-warning{{UNKNOWN}} in testNewArrayNoThrow()

123456789