Home
last modified time | relevance | path

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

/art/runtime/base/
Dvariant_map.h76 namespace detail {
137 struct VariantMapKey : detail::VariantMapKeyRaw {
191 namespace detail {
346 const detail::VariantMapKeyRaw* raw_key_other = kv_pair.first;
349 detail::VariantMapKeyRaw* cloned_raw_key = raw_key_other->Clone();
393 bool operator()(const detail::VariantMapKeyRaw* lhs, in operator()
394 const detail::VariantMapKeyRaw* rhs) const { in operator()
404 using StorageMap = std::map<const detail::VariantMapKeyRaw*, void*, KeyComparator>;
411 const detail::VariantMapKeyRaw* raw_ptr = key_ptr; in GetKeyValueIterator()
420 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.cc58 detail::SupportsEqualityOperator<T>::value>::type* = 0) { in UsuallyEquals()
73 typename std::enable_if<!detail::SupportsEqualityOperator<T>::value>::type* = 0 in UsuallyEquals()
94 << "expected " << detail::ToStringAny(expected) << " but got " in IsExpectedKeyValue()
95 << detail::ToStringAny(*actual); in IsExpectedKeyValue()
110 << "expected " << detail::ToStringAny(expected) << " but got " in IsExpectedDefaultKeyValue()
111 << 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.cc245 void* FindNativeMethod(Thread* self, 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()
987 std::string detail; in FindCodeForNativeMethod() local
989 void* native_method = libraries_->FindNativeMethod(self, m, detail); in FindCodeForNativeMethod()
997 LOG(ERROR) << detail; in FindCodeForNativeMethod()
998 self->ThrowNewException("Ljava/lang/UnsatisfiedLinkError;", detail.c_str()); in FindCodeForNativeMethod()
Dtrace.cc734 std::string detail(StringPrintf("Trace data write failed: %s", strerror(errno))); in FinishTracing() local
735 PLOG(ERROR) << detail; in FinishTracing()
736 ThrowRuntimeException("%s", detail.c_str()); in FinishTracing()