Searched defs:RopeImpl (Results 1 - 1 of 1) sorted by relevance

/external/webkit/Source/JavaScriptCore/runtime/
H A DRopeImpl.h33 class RopeImpl : public StringImplBase { class in namespace:JSC
35 // A RopeImpl is composed from a set of smaller strings called Fibers.
36 // Each Fiber in a rope is either StringImpl or another RopeImpl.
39 // Creates a RopeImpl comprising of 'fiberCount' Fibers.
40 // The RopeImpl is constructed in an uninitialized state - initialize must be called for each Fiber in the RopeImpl.
41 static PassRefPtr<RopeImpl> tryCreateUninitialized(unsigned fiberCount)
44 if (tryFastMalloc(sizeof(RopeImpl) + (fiberCount - 1) * sizeof(Fiber)).getValue(allocation))
45 return adoptRef(new (allocation) RopeImpl(fiberCount));
57 static_cast<RopeImpl*>(fibe
80 RopeImpl(unsigned fiberCount) function in class:JSC::RopeImpl
[all...]

Completed in 55 milliseconds