Searched refs:Unit (Results 1 – 15 of 15) sorted by relevance
/art/cmdline/ |
D | unit.h | 23 struct Unit { struct 26 Unit() {} in Unit() argument 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 | 50 struct CmdlineType<Unit> : CmdlineTypeParser<Unit> { 53 return Result::Success(Unit{}); // NOLINT [whitespace/braces] [5]
|
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
|
D | cmdline_parser_test.cc | 612 EXPECT_KEY_VALUE(map, M::Help, Unit{}); // NOLINT [whitespace/braces] [5] in TEST_F() 615 EXPECT_KEY_VALUE(map, M::MethodTrace, Unit{}); // NOLINT [whitespace/braces] [5] in TEST_F()
|
/art/runtime/ |
D | runtime_options.def | 37 RUNTIME_OPTIONS_KEY (Unit, Zygote) 38 RUNTIME_OPTIONS_KEY (Unit, Help) 39 RUNTIME_OPTIONS_KEY (Unit, ShowVersion) 44 RUNTIME_OPTIONS_KEY (Unit, CheckJni) 45 RUNTIME_OPTIONS_KEY (Unit, JniOptsForceCopy) 63 RUNTIME_OPTIONS_KEY (Unit, DumpGCPerformanceOnShutdown) 64 RUNTIME_OPTIONS_KEY (Unit, DumpJITInfoOnShutdown) 65 RUNTIME_OPTIONS_KEY (Unit, IgnoreMaxFootprint) 66 RUNTIME_OPTIONS_KEY (Unit, LowMemoryMode) 97 RUNTIME_OPTIONS_KEY (Unit, DisableExplicitGC) [all …]
|
/art/test/580-checker-round/ |
D | info.txt | 1 Unit test for float/double rounding.
|
/art/test/575-checker-isnan/ |
D | info.txt | 1 Unit test for float/double isNaN() operation.
|
/art/test/566-checker-signum/ |
D | info.txt | 1 Unit test for 32-bit and 64-bit signum operations.
|
/art/test/565-checker-rotate/ |
D | info.txt | 1 Unit test for 32-bit and 64-bit rotate operations.
|
/art/test/567-checker-compare/ |
D | info.txt | 1 Unit test for 32-bit and 64-bit compare operations.
|
/art/test/564-checker-bitcount/ |
D | info.txt | 1 Unit test for 32-bit and 64-bit bit count operation.
|
/art/test/577-checker-fp2int/ |
D | info.txt | 1 Unit test for float/double to raw bits conversions.
|
/art/test/568-checker-onebit/ |
D | info.txt | 1 Unit test for 32-bit and 64-bit high/low-bit operations.
|
/art/cmdline/detail/ |
D | cmdline_parse_argument_detail.h | 289 void TypedCheck(typename std::enable_if<std::is_same<Unit, T>::value>::type* = 0) {
|