Home
last modified time | relevance | path

Searched refs:detail (Results 1 – 12 of 12) sorted by relevance

/art/runtime/base/
Dvariant_map.h75 namespace detail {
136 struct VariantMapKey : detail::VariantMapKeyRaw {
190 namespace detail {
344 const detail::VariantMapKeyRaw* raw_key_other = kv_pair.first;
347 detail::VariantMapKeyRaw* cloned_raw_key = raw_key_other->Clone();
391 bool operator()(const detail::VariantMapKeyRaw* lhs, in operator()
392 const detail::VariantMapKeyRaw* rhs) const { in operator()
402 using StorageMap = std::map<const detail::VariantMapKeyRaw*, void*, KeyComparator>;
409 const detail::VariantMapKeyRaw* raw_ptr = key_ptr; in GetKeyValueIterator()
418 const detail::VariantMapKeyRaw* raw_ptr = key_ptr; in GetKeyValueIterator()
/art/cmdline/detail/
Dcmdline_debug_detail.h24 #define CMDLINE_DEBUG_LOG ::art::detail::debug_log_ignore()
29 namespace detail {
Dcmdline_parser_detail.h26 namespace detail {
Dcmdline_parse_argument_detail.h37 namespace detail {
/art/cmdline/
Dcmdline_parser.h54 static void AppendCompletedArgument(Builder& builder, detail::CmdlineParseArgumentAny* arg);
180 << detail::ToStringAny(value) << "'" << std::endl; in IntoKey()
185 CMDLINE_DEBUG_LOG << "Loaded value from map '" << detail::ToStringAny(value) << "'" in IntoKey()
205 CMDLINE_DEBUG_LOG << "Ignored value '" << detail::ToStringAny(value) << "'" << std::endl; in IntoIgnore()
251 new detail::CmdlineParseArgument<TArg>( in CompleteArgument()
282 detail::CmdlineParserArgumentInfo<TArg> argument_info_;
424 void AppendCompletedArgument(detail::CmdlineParseArgumentAny* arg) { in AppendCompletedArgument()
425 auto smart_ptr = std::unique_ptr<detail::CmdlineParseArgumentAny>(arg); in AppendCompletedArgument()
443 std::vector<std::unique_ptr<detail::CmdlineParseArgumentAny>> completed_arguments_;
503 std::vector<std::unique_ptr<detail::CmdlineParseArgumentAny>>&& completed_arguments) in CmdlineParser()
[all …]
Dcmdline_parse_result.h76 "actual: " + art::detail::ToStringAny(value) + in OutOfRange()
77 ", min: " + art::detail::ToStringAny(min) + in OutOfRange()
78 ", max: " + art::detail::ToStringAny(max)); in OutOfRange()
Dcmdline_parser_test.cc57 detail::SupportsEqualityOperator<T>::value>::type* = 0) { in UsuallyEquals()
72 typename std::enable_if<!detail::SupportsEqualityOperator<T>::value>::type* = 0 in UsuallyEquals()
93 << "expected " << detail::ToStringAny(expected) << " but got " in IsExpectedKeyValue()
94 << detail::ToStringAny(*actual); in IsExpectedKeyValue()
109 << "expected " << detail::ToStringAny(expected) << " but got " in IsExpectedDefaultKeyValue()
110 << detail::ToStringAny(actual); in IsExpectedDefaultKeyValue()
/art/test/201-built-in-except-detail-messages/
Dinfo.txt1 Tests of the built-in exceptions' detail messages.
/art/test/095-switch-MAX_INT/
Dinfo.txt1 Bug: http://code.google.com/p/android/issues/detail?id=22344
/art/test/958-methodhandle-stackframe/
Dinfo.txt3 an implementation detail and hence cannot be used with --mode=jvm.
/art/runtime/
Djava_vm_ext.cc238 void* FindNativeMethod(ArtMethod* m, std::string& detail) in FindNativeMethod() argument
269 detail += "No implementation found for "; in FindNativeMethod()
270 detail += m->PrettyMethod(); in FindNativeMethod()
271 detail += " (tried " + jni_short_name + " and " + jni_long_name + ")"; in FindNativeMethod()
957 std::string detail; in FindCodeForNativeMethod() local
962 native_method = libraries_->FindNativeMethod(m, detail); in FindCodeForNativeMethod()
971 LOG(ERROR) << detail; in FindCodeForNativeMethod()
972 self->ThrowNewException("Ljava/lang/UnsatisfiedLinkError;", detail.c_str()); in FindCodeForNativeMethod()
Dtrace.cc733 std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno))); in FinishTracing() local
734 PLOG(ERROR) << detail; in FinishTracing()
735 ThrowRuntimeException("%s", detail.c_str()); in FinishTracing()