Home
last modified time | relevance | path

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

/art/cmdline/
Dunit.h23 struct Unit { struct
27 Unit() {} in Unit() argument
28 Unit(const Unit&) = default;
29 ~Unit() {} in ~Unit() argument
30 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{}); in InitializeTypedBuilder()
400 auto&& builder = Define(ignore_name).template WithType<Unit>().IntoIgnore(); in Ignore()
Dcmdline_types.h58 struct CmdlineType<Unit> : CmdlineTypeParser<Unit> {
61 return Result::Success(Unit{});
Dcmdline_parser_test.cc571 EXPECT_KEY_VALUE(map, M::Help, Unit{}); in TEST_F()
573 EXPECT_KEY_VALUE(map, M::MethodTrace, Unit{}); 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/compiler/driver/
Dcompiler_options_map.def40 COMPILER_OPTIONS_KEY (Unit, PIC)
48 COMPILER_OPTIONS_KEY (Unit, Debuggable)
49 COMPILER_OPTIONS_KEY (Unit, Baseline)
57 COMPILER_OPTIONS_KEY (Unit, DumpCFGAppend)
62 COMPILER_OPTIONS_KEY (Unit, CountHotnessInCompiledCode)
64 COMPILER_OPTIONS_KEY (Unit, DumpTimings)
65 COMPILER_OPTIONS_KEY (Unit, DumpPassTimings)
66 COMPILER_OPTIONS_KEY (Unit, DumpStats)
/art/runtime/
Druntime_options.def37 RUNTIME_OPTIONS_KEY (Unit, Zygote)
38 RUNTIME_OPTIONS_KEY (Unit, PrimaryZygote)
39 RUNTIME_OPTIONS_KEY (Unit, Help)
40 RUNTIME_OPTIONS_KEY (Unit, ShowVersion)
45 RUNTIME_OPTIONS_KEY (Unit, CheckJni)
46 RUNTIME_OPTIONS_KEY (Unit, JniOptsForceCopy)
69 RUNTIME_OPTIONS_KEY (Unit, DumpGCPerformanceOnShutdown)
70 RUNTIME_OPTIONS_KEY (Unit, DumpRegionInfoBeforeGC)
71 RUNTIME_OPTIONS_KEY (Unit, DumpRegionInfoAfterGC)
72 RUNTIME_OPTIONS_KEY (Unit, DumpJITInfoOnShutdown)
[all …]
/art/dex2oat/
Ddex2oat_options.def50 DEX2OAT_OPTIONS_KEY (Unit, Strip)
70 DEX2OAT_OPTIONS_KEY (Unit, Host)
71 DEX2OAT_OPTIONS_KEY (Unit, DumpTiming)
72 DEX2OAT_OPTIONS_KEY (Unit, DumpPasses)
73 DEX2OAT_OPTIONS_KEY (Unit, DumpStats)
75 DEX2OAT_OPTIONS_KEY (Unit, AvoidStoringInvocation)
85 DEX2OAT_OPTIONS_KEY (Unit, ForceDeterminism)
/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/577-checker-fp2int/
Dinfo.txt1 Unit test for float/double to raw bits conversions.
/art/test/564-checker-bitcount/
Dinfo.txt1 Unit test for 32-bit and 64-bit bit count operation.
/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.h291 void TypedCheck(typename std::enable_if<std::is_same<Unit, T>::value>::type* = 0) {