Searched refs:Unit (Results 1 – 7 of 7) sorted by relevance
/art/cmdline/ |
D | unit.h | 23 struct Unit { struct 26 Unit() {} in Unit() function 27 Unit(const Unit&) = default; 28 ~Unit() {} in ~Unit() argument 29 bool operator==(Unit) const {
|
D | cmdline_parser.h | 311 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()
|
D | cmdline_types.h | 49 struct CmdlineType<Unit> : CmdlineTypeParser<Unit> { 52 return Result::Success(Unit{}); // NOLINT [whitespace/braces] [5]
|
D | cmdline_parser_test.cc | 548 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()
|
D | README.md | 95 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/ |
D | runtime_options.def | 35 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/ |
D | cmdline_parse_argument_detail.h | 289 void TypedCheck(typename std::enable_if<std::is_same<Unit, T>::value>::type* = 0) {
|