HomeSort by relevance Sort by last modified time
    Searched refs:RopePiece (Results 1 - 2 of 2) sorted by null

  /external/clang/include/clang/Rewrite/Core/
RewriteRope.h 32 /// through the RopePiece class below.
48 // RopePiece Class
51 /// RopePiece - This class represents a view into a RopeRefCountString object.
55 /// For example, we could have a 1M RopePiece and want to insert something
56 /// into the middle of it. To do this, we split it into two RopePiece objects
59 struct RopePiece {
64 RopePiece() : StrData(nullptr), StartOffs(0), EndOffs(0) {}
66 RopePiece(RopeRefCountString *Str, unsigned Start, unsigned End)
71 RopePiece(const RopePiece &RP
    [all...]
  /external/clang/lib/Rewrite/Core/
RewriteRope.cpp 24 /// RopePiece elements. Each RopePiece represents a view on a separately
26 /// long string can be done in constant time by splitting a RopePiece that
29 /// inserting a RopePiece in between the two others. All of this is very
39 /// the RopePiece corresponding to some offset very efficiently, and it
56 /// RopePieceBTreeLeaf - Directly manages up to '2*WidthFactor' RopePiece
108 /// insert - Insert the specified ropepiece into this tree node at the
114 RopePieceBTreeNode *insert(unsigned Offset, const RopePiece &R);
128 /// RopePieceBTreeLeaf - Directly manages up to '2*WidthFactor' RopePiece
131 /// instances of RopePiece) are stored in leaves like this. To make iteratio
    [all...]

Completed in 106 milliseconds