Changeset 54531 in webkit for trunk/JavaScriptCore/runtime/UString.h
- Timestamp:
- Feb 8, 2010, 11:40:57 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/UString.h
r54518 r54531 118 118 static UString from(double); 119 119 120 struct Range {121 public:122 Range(int pos, int len)123 : position(pos)124 , length(len)125 {126 }127 128 Range()129 {130 }131 132 int position;133 int length;134 };135 136 UString spliceSubstringsWithSeparators(const Range* substringRanges, int rangeCount, const UString* separators, int separatorCount) const;137 138 UString replaceRange(int rangeStart, int RangeEnd, const UString& replacement) const;139 140 120 bool getCString(CStringBuffer&) const; 141 121 … … 153 133 */ 154 134 CString UTF8String(bool strict = false) const; 155 156 UString& operator=(const char*c);157 135 158 136 const UChar* data() const { return m_rep->data(); }
Note:
See TracChangeset
for help on using the changeset viewer.