Home
last modified time | relevance | path

Searched refs:NoDefault (Results 1 – 12 of 12) sorted by relevance

/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
Ddefault.pass.cpp25 struct NoDefault { struct
26 NoDefault() = delete;
27 explicit NoDefault(int) { } in NoDefault() argument
77 static_assert(!std::is_default_constructible<std::tuple<NoDefault>>(), ""); in main()
78 static_assert(!std::is_default_constructible<std::tuple<DefaultOnly, NoDefault>>(), ""); in main()
79 …static_assert(!std::is_default_constructible<std::tuple<NoDefault, DefaultOnly, NoDefault>>(), ""); in main()
DUTypes.pass.cpp36 struct NoDefault { NoDefault() = delete; }; struct
45 typedef std::tuple<MoveOnly, NoDefault> Tuple; in test_default_constructible_extension_sfinae()
54 MoveOnly, NoDefault in test_default_constructible_extension_sfinae()
58 typedef std::tuple<MoveOnly, MoveOnly, NoDefault> Tuple; in test_default_constructible_extension_sfinae()
67 MoveOnly, MoveOnly, NoDefault in test_default_constructible_extension_sfinae()
72 typedef std::tuple<MoveOnly, NoDefault> Tuple; in test_default_constructible_extension_sfinae()
Dalloc_UTypes.pass.cpp27 struct NoDefault { NoDefault() = delete; }; struct
36 typedef std::tuple<MoveOnly, NoDefault> Tuple; in test_default_constructible_extension_sfinae()
45 std::allocator_arg_t, A1<int>, MoveOnly, NoDefault in test_default_constructible_extension_sfinae()
49 typedef std::tuple<MoveOnly, MoveOnly, NoDefault> Tuple; in test_default_constructible_extension_sfinae()
58 std::allocator_arg_t, A1<int>, MoveOnly, MoveOnly, NoDefault in test_default_constructible_extension_sfinae()
63 typedef std::tuple<MoveOnly, NoDefault> Tuple; in test_default_constructible_extension_sfinae()
/external/chromium-trace/trace-viewer/third_party/Paste/paste/
Dflup_session.py28 class NoDefault(object): class
48 session_type=NoDefault,
49 cookie_name=NoDefault,
53 if session_type is NoDefault:
68 if cookie_name is NoDefault:
97 session_type=NoDefault,
98 cookie_name=NoDefault,
Dsession.py292 NoDefault = _NoDefault() variable
296 session_expiration=NoDefault,
297 expiration=NoDefault,
298 cookie_name=NoDefault,
299 session_file_path=NoDefault,
300 chmod=NoDefault):
331 if session_expiration is NoDefault:
334 if expiration is NoDefault:
337 if cookie_name is NoDefault:
339 if session_file_path is NoDefault:
[all …]
Dcgitb_catcher.py19 class NoDefault(object): class
26 display=NoDefault,
33 if display is NoDefault:
92 display=NoDefault,
112 if display is not NoDefault:
Durlparser.py23 class NoDefault(object): class
83 init_module = NoDefault
89 index_names=NoDefault,
90 hide_extensions=NoDefault,
91 ignore_extensions=NoDefault,
114 if index_names is NoDefault:
118 if hide_extensions is NoDefault:
122 if ignore_extensions is NoDefault:
143 if self.init_module is NoDefault:
Dregistry.py98 class NoDefault(object): pass class
112 def __init__(self, default=NoDefault, name="Default"):
121 if default is not NoDefault:
191 obj = self.__dict__.get('____default_object__', NoDefault)
192 if obj is not NoDefault:
Dfixture.py49 class NoDefault(object): class
582 def header(self, name, default=NoDefault):
596 if default is NoDefault:
1087 def get(self, name, index=None, default=NoDefault):
1093 if fields is None and default is not NoDefault:
/external/clang/test/CXX/dcl.decl/dcl.init/
Dp14-0x.cpp3 struct NoDefault { struct
4 NoDefault() = delete; // expected-note {{here}}
5 NoDefault(int);
30 NoDefault nd1;
31 NoDefault nd2 = 42;
/external/chromium-trace/trace-viewer/third_party/Paste/paste/exceptions/
Derrormiddleware.py21 NoDefault = _NoDefault() variable
80 debug=NoDefault,
83 show_exceptions_in_wsgi_errors=NoDefault,
98 if debug is NoDefault:
100 if show_exceptions_in_wsgi_errors is NoDefault:
/external/chromium-trace/trace-viewer/third_party/WebOb/webob/
Drequest.py88 NoDefault = _NoDefault() variable
156 def encget(self, key, default=NoDefault, encattr=None):
158 if val is NoDefault:
169 def encget(self, key, default=NoDefault, encattr=None):
171 if val is NoDefault:
1391 def encget(self, key, default=NoDefault, encattr=None):
1393 if val is NoDefault: