Home | History | Annotate | Download | only in AST

Lines Matching refs:LVal

534   const LV &LVal = *((const LV*)(const char*)Data);
535 return ArrayRef<LValuePathEntry>(LVal.getPath(), LVal.PathLength);
546 LV &LVal = *((LV*)(char*)Data);
547 LVal.BaseAndIsOnePastTheEnd.setPointer(B);
548 LVal.BaseAndIsOnePastTheEnd.setInt(false);
549 LVal.Offset = O;
550 LVal.CallIndex = CallIndex;
551 LVal
558 LV &LVal = *((LV*)(char*)Data);
559 LVal.BaseAndIsOnePastTheEnd.setPointer(B);
560 LVal.BaseAndIsOnePastTheEnd.setInt(IsOnePastTheEnd);
561 LVal.Offset = O;
562 LVal.CallIndex = CallIndex;
563 LVal.resizePath(Path.size());
564 memcpy(LVal.getPath(), Path.data(), Path.size() * sizeof(LValuePathEntry));