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 31 /// through the RopePiece class below.
47 // RopePiece Class
50 /// RopePiece - This class represents a view into a RopeRefCountString object.
54 /// For example, we could have a 1M RopePiece and want to insert something
55 /// into the middle of it. To do this, we split it into two RopePiece objects
58 struct RopePiece {
63 RopePiece() : StrData(0), StartOffs(0), EndOffs(0) {}
65 RopePiece(RopeRefCountString *Str, unsigned Start, unsigned End)
70 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 144 milliseconds