HomeSort by relevance Sort by last modified time
    Searched refs:NoDefault (Results 1 - 14 of 14) sorted by null

  /external/clang/test/CXX/dcl.decl/dcl.init/
p14-0x.cpp 3 struct NoDefault {
4 NoDefault() = delete; // expected-note {{here}}
5 NoDefault(int);
30 NoDefault nd1;
31 NoDefault nd2 = 42;
39 S() {} // expected-error {{call to deleted constructor of 'NoDefault'}} \
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/
flup_session.py 28 class NoDefault(object):
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,
cgitb_catcher.py 19 class NoDefault(object):
26 display=NoDefault,
33 if display is NoDefault:
92 display=NoDefault,
112 if display is not NoDefault:
session.py 292 NoDefault = _NoDefault()
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...]
registry.py 98 class NoDefault(object): pass
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:
urlparser.py 23 class NoDefault(object):
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:
fixture.py 49 class NoDefault(object):
582 def header(self, name, default=NoDefault):
596 if default is NoDefault:
    [all...]
  /external/libcxx/test/std/utilities/tuple/tuple.tuple/tuple.cnstr/
UTypes.pass.cpp 36 struct NoDefault { NoDefault() = delete; };
45 typedef std::tuple<MoveOnly, NoDefault> Tuple;
54 MoveOnly, NoDefault
58 typedef std::tuple<MoveOnly, MoveOnly, NoDefault> Tuple;
67 MoveOnly, MoveOnly, NoDefault
72 typedef std::tuple<MoveOnly, NoDefault> Tuple;
default.pass.cpp 25 struct NoDefault {
26 NoDefault() = delete;
27 explicit NoDefault(int) { }
77 static_assert(!std::is_default_constructible<std::tuple<NoDefault>>(), "");
78 static_assert(!std::is_default_constructible<std::tuple<DefaultOnly, NoDefault>>(), "");
79 static_assert(!std::is_default_constructible<std::tuple<NoDefault, DefaultOnly, NoDefault>>(), "");
alloc_UTypes.pass.cpp 27 struct NoDefault { NoDefault() = delete; };
36 typedef std::tuple<MoveOnly, NoDefault> Tuple;
45 std::allocator_arg_t, A1<int>, MoveOnly, NoDefault
49 typedef std::tuple<MoveOnly, MoveOnly, NoDefault> Tuple;
58 std::allocator_arg_t, A1<int>, MoveOnly, MoveOnly, NoDefault
63 typedef std::tuple<MoveOnly, NoDefault> Tuple;
  /frameworks/compile/mclinker/include/mcld/Target/
ELFAttributeValue.h 36 NoDefault = 1L << 2,
77 inline bool hasNoDefault() const { return (m_Type & NoDefault); }
  /external/chromium-trace/trace-viewer/third_party/Paste/paste/exceptions/
errormiddleware.py 20 return '<NoDefault>'
21 NoDefault = _NoDefault()
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/
request.py 88 NoDefault = _NoDefault()
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:
    [all...]
  /frameworks/compile/mclinker/lib/Target/ARM/
ARMELFAttributeData.cpp 70 return (ELFAttributeValue::Int | ELFAttributeValue::NoDefault);
    [all...]

Completed in 640 milliseconds