/external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/ |
D | default.pass.cpp | 25 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()
|
D | UTypes.pass.cpp | 36 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()
|
D | alloc_UTypes.pass.cpp | 27 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/ |
D | flup_session.py | 28 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,
|
D | session.py | 292 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 …]
|
D | cgitb_catcher.py | 19 class NoDefault(object): class 26 display=NoDefault, 33 if display is NoDefault: 92 display=NoDefault, 112 if display is not NoDefault:
|
D | urlparser.py | 23 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:
|
D | registry.py | 98 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:
|
D | fixture.py | 49 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/ |
D | p14-0x.cpp | 3 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/ |
D | errormiddleware.py | 21 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/ |
D | request.py | 88 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:
|