Home
last modified time | relevance | path

Searched refs:no_default (Results 1 – 11 of 11) sorted by relevance

/external/llvm-project/clang/test/SemaCXX/
Dcxx0x-deleted-default-ctor.cpp61 struct no_default { struct
62 no_default() = delete; // expected-note 5{{deleted here}}
69 no_default nd; // expected-note {{field 'nd' has a deleted default constructor}}
72 struct bad_base_default : no_default { // expected-note {{base class 'no_default' has a deleted def…
111 no_default nd; // expected-note 2{{because field 'nd' has a deleted default constructor}}
117 no_default nd; // expected-note {{because field 'nd' has a deleted default constructor}}
Dattr-cpuspecific.cpp6 void __attribute__((cpu_specific(atom))) no_default(void);
7 void __attribute__((cpu_specific(sandybridge))) no_default(void);
17 no_default(); in use1()
Dattr-target-mv.cpp9 void __attribute__((target("sse4.2"))) no_default(void);
10 void __attribute__((target("arch=sandybridge"))) no_default(void);
14 no_default(); in use1()
/external/clang/test/SemaCXX/
Dcxx0x-deleted-default-ctor.cpp61 struct no_default { struct
62 no_default() = delete; // expected-note 4{{deleted here}}
69 no_default nd; // expected-note {{field 'nd' has a deleted default constructor}}
72 struct bad_base_default : no_default { // expected-note {{base class 'no_default' has a deleted def…
111 no_default nd; // expected-note {{because field 'nd' has a deleted default constructor}}
117 no_default nd; // expected-note {{because field 'nd' has a deleted default constructor}}
/external/llvm-project/clang/test/Sema/
Dattr-target-mv.c3 void __attribute__((target("sse4.2"))) no_default(void);
4 void __attribute__((target("arch=sandybridge"))) no_default(void);
8 no_default(); in use1()
Dattr-cpuspecific.c3 void __attribute__((cpu_specific(ivybridge))) no_default(void);
4 void __attribute__((cpu_specific(sandybridge))) no_default(void);
8 no_default(); in use1()
/external/tensorflow/tensorflow/python/keras/utils/
Dtf_inspect.py201 no_default = object()
202 all_defaults = [no_default] * len(args)
218 (idx for idx, x in enumerate(all_defaults) if x is not no_default), None)
227 if j is no_default and i > first_default
/external/tensorflow/tensorflow/python/util/
Dtf_inspect.py215 no_default = object()
216 all_defaults = [no_default] * len(args)
232 (idx for idx, x in enumerate(all_defaults) if x is not no_default), None)
241 if j is no_default and i > first_default
/external/rust/crates/bindgen/src/
Doptions.rs918 if let Some(no_default) = matches.values_of("no-default") { in builder_from_flags()
919 for regex in no_default { in builder_from_flags()
920 builder = builder.no_default(regex); in builder_from_flags()
Dlib.rs1544 pub fn no_default<T: Into<String>>(mut self, arg: T) -> Self { in no_default() method
/external/tensorflow/tensorflow/python/eager/
Dfunction.py2392 no_default = object()
2394 left_padding = tuple([no_default] * num_args_without_defaults)
2411 if default is not no_default