Lines Matching defs:synthetic
673 // If we have a non-pointer type with a synthetic value then lets check if
674 // we have a synthetic dereference specified.
689 "Failed to dereference synthetic value: {0}", deref_error);
692 // Some synthetic plug-ins fail to set the error in Dereference
695 Status::FromErrorString("Failed to dereference synthetic value");
874 // recur to synthetic children
875 ValueObjectSP synthetic = valobj_sp->GetSyntheticValue();
876 if (!synthetic /* no synthetic */
877 || synthetic == valobj_sp) /* synthetic is the same as
886 synthetic
887 ->GetNumChildrenIgnoringErrors() /* synthetic does
896 child_valobj_sp = synthetic->GetChildAtIndex(child_index);
947 ValueObjectSP synthetic = valobj_sp->GetSyntheticValue();
948 if (no_synth_child /* synthetic is forbidden */ ||
949 !synthetic /* no synthetic */
950 || synthetic == valobj_sp) /* synthetic is the same as the
959 synthetic->GetNumChildrenIgnoringErrors() /* synthetic
967 child_valobj_sp = synthetic->GetChildAtIndex(child_index);