Lines Matching defs:deref
555 bool deref = false;
570 deref = true;
661 // Make sure we aren't trying to deref an objective
819 if (valobj_sp->GetCompilerType().IsPointerToScalarType() && deref) {
820 // what we have is *ptr[low]. the most similar C++ syntax is to deref
822 // done by saying ptr[low], without a deref * sign
834 deref = false;
836 deref) {
838 // arr[0] (an operation that is equivalent to deref-ing arr) and
840 // saying arr[low], without a deref * sign
851 deref = false;
1018 if (valobj_sp->GetCompilerType().IsPointerToScalarType() && deref) {
1020 // deref ptr and extract bits low thru high out of it. reading array
1022 // deref * sign
1034 deref = false;
1035 } else if (valobj_sp->GetCompilerType().IsArrayOfScalarType() && deref) {
1037 // get arr[0] (an operation that is equivalent to deref-ing arr) and
1039 // high would be done by saying arr[low-high], without a deref * sign
1050 deref = false;
1095 if (deref) {