Home | History | Annotate | Download | only in MC

Lines Matching refs:Data

28   assert(Type == DataAtom && "Trying to add MCData to a non-data atom!");
31 Data.push_back(D);
51 // precise method depends on whether this is a data or a text atom.
53 std::vector<MCData>::iterator I = Data.begin() + (RightBegin - LeftBegin);
55 assert(I != Data.end() && "Split point not found in range!");
57 std::copy(I, Data.end(), RightAtom->Data.end());
58 Data.erase(I, Data.end());
83 Data.resize(TruncPt - Begin + 1);