Home
last modified time | relevance | path

Searched refs:with_default (Results 1 – 6 of 6) sorted by relevance

/external/clang/test/CXX/drs/
Ddr1xx.cpp184 template<typename T=int> void with_default(); // expected-note +{{}}
185 int k10 = f(&with_default); // expected-error {{no matching function}}
186 int k11 = f(&with_default<>);
188 (void)&with_default; // expected-error {{overloaded function}} in k()
189 (void)&with_default<>; in k()
190 &with_default; // expected-error {{overloaded function}} in k()
191 &with_default<>; // expected-warning {{unused}} in k()
/external/llvm-project/clang/test/CXX/drs/
Ddr1xx.cpp202 template<typename T=int> void with_default(); // expected-note +{{}}
203 int k10 = f(&with_default); // expected-error {{no matching function}}
204 int k11 = f(&with_default<>);
206 (void)&with_default; // expected-error {{overloaded function}} in k()
207 (void)&with_default<>; in k()
208 &with_default; // expected-error {{overloaded function}} in k()
209 &with_default<>; // expected-warning {{unused}} in k()
/external/tensorflow/tensorflow/python/autograph/operators/
Dpy_builtins_test.py305 def test_fn(go_out_of_range, with_default): argument
313 if with_default:
325 self.evaluate(test_fn(go_out_of_range=False, with_default=None)),
328 self.evaluate(test_fn(go_out_of_range=True, with_default=True)),
331 self.evaluate(test_fn(go_out_of_range=True, with_default=False))
/external/llvm-project/clang/test/SemaCXX/
Dsizeless-1.cpp352 void with_default(svint8_t = svint8_t());
/external/rust/crates/async-trait/tests/
Dtest.rs624 subscriber::with_default(subscriber.clone(), || executor::block_on_simple(fut)); in tracing()
/external/protobuf/src/google/protobuf/compiler/js/
Djs_generator.cc2309 const string with_default = use_default ? "WithDefault" : ""; in GenerateFieldValueExpression() local
2342 "cardinality", cardinality, "type", type, "with_default", with_default, in GenerateFieldValueExpression()