OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RopeRefCountString
(Results
1 - 2
of
2
) sorted by null
/external/clang/include/clang/Rewrite/Core/
RewriteRope.h
25
//
RopeRefCountString
Class
28
///
RopeRefCountString
- This struct is allocated with 'new char[]' from the
32
struct
RopeRefCountString
{
50
/// RopePiece - This class represents a view into a
RopeRefCountString
object.
56
/// that both refer to the same underlying
RopeRefCountString
(just with
59
RopeRefCountString
*StrData;
65
RopePiece(
RopeRefCountString
*Str, unsigned Start, unsigned End)
188
RopeRefCountString
*AllocBuffer;
/external/clang/lib/Rewrite/Core/
RewriteRope.cpp
763
///
RopeRefCountString
, and return a RopePiece that represents it. This uses
780
unsigned Size = End-Start+sizeof(
RopeRefCountString
)-1;
781
RopeRefCountString
*Res =
782
reinterpret_cast<
RopeRefCountString
*>(new char[Size]);
795
unsigned AllocSize = offsetof(
RopeRefCountString
, Data) + AllocChunkSize;
796
AllocBuffer = reinterpret_cast<
RopeRefCountString
*>(new char[AllocSize]);
Completed in 119 milliseconds