Home
last modified time | relevance | path

Searched refs:Unit (Results 1 – 7 of 7) sorted by relevance

/art/cmdline/
Dunit.h23 struct Unit { struct
26 Unit() {} in Unit() function
27 Unit(const Unit&) = default;
28 ~Unit() {} in ~Unit() argument
29 bool operator==(Unit) const {
Dcmdline_parser.h311 Builder& IntoKey(const TVariantMapKey<Unit>& key) { in IntoKey()
312 return CreateTypedBuilder<Unit>().IntoKey(key); in IntoKey()
339 template <typename TArg = Unit>
340 typename std::enable_if<std::is_same<TArg, Unit>::value>::type
343 std::vector<Unit> values(names_.size(), Unit{}); // NOLINT [whitespace/braces] [5] in InitializeTypedBuilder()
400 auto&& builder = Define(ignore_name).template WithType<Unit>().IntoIgnore(); in Ignore()
Dcmdline_types.h49 struct CmdlineType<Unit> : CmdlineTypeParser<Unit> {
52 return Result::Success(Unit{}); // NOLINT [whitespace/braces] [5]
Dcmdline_parser_test.cc548 EXPECT_KEY_VALUE(map, M::Help, Unit{}); // NOLINT [whitespace/braces] [5] in TEST_F()
551 EXPECT_KEY_VALUE(map, M::MethodTrace, Unit{}); // NOLINT [whitespace/braces] [5] in TEST_F()
DREADME.md95 If this call is omitted, the parser generator assumes you are building a `Unit` type (i.e. an
174 It's semantically equivalent to making a series of argument definitions that map to `Unit` but don't
243 `Either<int ErrorCode, Unit>` where the right side simply indicates success. When values are
/art/runtime/
Druntime_options.def35 RUNTIME_OPTIONS_KEY (Unit, Zygote)
36 RUNTIME_OPTIONS_KEY (Unit, Help)
37 RUNTIME_OPTIONS_KEY (Unit, ShowVersion)
42 RUNTIME_OPTIONS_KEY (Unit, CheckJni)
43 RUNTIME_OPTIONS_KEY (Unit, JniOptsForceCopy)
61 RUNTIME_OPTIONS_KEY (Unit, DumpGCPerformanceOnShutdown)
62 RUNTIME_OPTIONS_KEY (Unit, DumpJITInfoOnShutdown)
63 RUNTIME_OPTIONS_KEY (Unit, IgnoreMaxFootprint)
64 RUNTIME_OPTIONS_KEY (Unit, LowMemoryMode)
91 RUNTIME_OPTIONS_KEY (Unit, DisableExplicitGC)
[all …]
/art/cmdline/detail/
Dcmdline_parse_argument_detail.h289 void TypedCheck(typename std::enable_if<std::is_same<Unit, T>::value>::type* = 0) {