Home
last modified time | relevance | path

Searched refs:no_copy (Results 1 – 5 of 5) sorted by relevance

/external/llvm-project/libcxx/test/std/utilities/any/any.nonmembers/any.cast/
Dnot_copy_constructible.fail.cpp35 struct no_copy struct
37 no_copy() {} in no_copy() function
38 no_copy(no_copy &&) {} in no_copy() argument
39 no_copy(no_copy const &) = delete;
52 any_cast<no_copy>(static_cast<any&>(a)); // expected-note {{requested here}} in main()
56 any_cast<no_copy>(static_cast<any const&>(a)); // expected-note {{requested here}} in main()
58 any_cast<no_copy>(static_cast<any &&>(a)); // OK in main()
/external/libcxx/test/std/utilities/any/any.nonmembers/any.cast/
Dnot_copy_constructible.fail.cpp30 struct no_copy struct
32 no_copy() {} in no_copy() function
33 no_copy(no_copy &&) {} in no_copy() argument
34 no_copy(no_copy const &) = delete;
51 any_cast<no_copy>(static_cast<any&>(a)); // expected-note {{requested here}} in main()
55 any_cast<no_copy>(static_cast<any const&>(a)); // expected-note {{requested here}} in main()
57 any_cast<no_copy>(static_cast<any &&>(a)); // OK in main()
/external/rust/crates/bindgen/src/
Doptions.rs906 if let Some(no_copy) = matches.values_of("no-copy") { in builder_from_flags()
907 for regex in no_copy { in builder_from_flags()
908 builder = builder.no_copy(regex); in builder_from_flags()
Dlib.rs1530 pub fn no_copy<T: Into<String>>(mut self, arg: T) -> Self { in no_copy() method
/external/tensorflow/tensorflow/python/keras/legacy_tf_layers/
Dbase.py569 no_copy = set(['_graph', '_thread_local', '_metrics_lock'])
575 if k in no_copy: