Home | History | Annotate | Download | only in AST

Lines Matching defs:LVal

915   const LV &LVal = *((const LV *)(const char *)&Data);
916 return llvm::makeArrayRef(LVal.getPath(), LVal.PathLength);
937 LV &LVal = *((LV *)(char *)&Data);
938 LVal.Base = B;
939 LVal.IsOnePastTheEnd = false;
940 LVal.Offset = O;
941 LVal.resizePath((unsigned)-1);
942 LVal.IsNullPtr = IsNullPtr;
949 LV &LVal = *((LV *)(char *)&Data);
950 LVal.Base = B;
951 LVal.IsOnePastTheEnd = IsOnePastTheEnd;
952 LVal.Offset = O;
953 LVal.IsNullPtr = IsNullPtr;
954 LVal.resizePath(Size);
955 return {LVal.getPath(), Size};