Changeset 57748 in webkit for trunk/JavaScriptCore/runtime
- Timestamp:
- Apr 16, 2010, 2:50:05 PM (15 years ago)
- Location:
- trunk/JavaScriptCore/runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/JavaScriptCore/runtime/UStringImpl.cpp
r56092 r57748 128 128 } 129 129 130 PassRefPtr<UStringImpl> UStringImpl::create( PassRefPtr<SharedUChar> sharedBuffer, const UChar* buffer, unsigned length)130 PassRefPtr<UStringImpl> UStringImpl::create(const UChar* buffer, unsigned length, PassRefPtr<SharedUChar> sharedBuffer) 131 131 { 132 132 if (!length) -
trunk/JavaScriptCore/runtime/UStringImpl.h
r55943 r57748 188 188 static PassRefPtr<UStringImpl> create(const char*, unsigned length); 189 189 static PassRefPtr<UStringImpl> create(const char*); 190 static PassRefPtr<UStringImpl> create( PassRefPtr<SharedUChar>, const UChar*, unsigned length);190 static PassRefPtr<UStringImpl> create(const UChar*, unsigned length, PassRefPtr<SharedUChar>); 191 191 static PassRefPtr<UStringImpl> create(PassRefPtr<UStringImpl> rep, unsigned offset, unsigned length) 192 192 {
Note:
See TracChangeset
for help on using the changeset viewer.