Home
last modified time | relevance | path

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

/art/cmdline/
Dunit.h23 struct Unit { struct
26 Unit() {} in Unit() argument
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.h50 struct CmdlineType<Unit> : CmdlineTypeParser<Unit> {
53 return Result::Success(Unit{}); // NOLINT [whitespace/braces] [5]
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
Dcmdline_parser_test.cc612 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/
Druntime_options.def37 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/
Dinfo.txt1 Unit test for float/double rounding.
/art/test/575-checker-isnan/
Dinfo.txt1 Unit test for float/double isNaN() operation.
/art/test/566-checker-signum/
Dinfo.txt1 Unit test for 32-bit and 64-bit signum operations.
/art/test/565-checker-rotate/
Dinfo.txt1 Unit test for 32-bit and 64-bit rotate operations.
/art/test/567-checker-compare/
Dinfo.txt1 Unit test for 32-bit and 64-bit compare operations.
/art/test/564-checker-bitcount/
Dinfo.txt1 Unit test for 32-bit and 64-bit bit count operation.
/art/test/577-checker-fp2int/
Dinfo.txt1 Unit test for float/double to raw bits conversions.
/art/test/568-checker-onebit/
Dinfo.txt1 Unit test for 32-bit and 64-bit high/low-bit operations.
/art/cmdline/detail/
Dcmdline_parse_argument_detail.h289 void TypedCheck(typename std::enable_if<std::is_same<Unit, T>::value>::type* = 0) {