Home | History | Annotate | Download | only in unicode

Lines Matching refs:fArray

3288   // sets fArray, fCapacity, and fFlags
3382 kUsingStackBuffer=2,// fArray==fStackBuffer
3383 kRefCounted=4, // there is a refCount field before the characters in fArray
3420 int32_t fLength; // number of characters in fArray if >127; else undefined
3421 UChar *fArray; // the Unicode data (aligned at 12B (32b pointers) or 16B (64b))
3422 int32_t fCapacity; // sizeof fArray
3477 { return (fFlags&kUsingStackBuffer) ? fUnion.fStackBuffer : fUnion.fFields.fArray; }
3481 { return (fFlags&kUsingStackBuffer) ? fUnion.fStackBuffer : fUnion.fFields.fArray; }
3521 return fUnion.fFields.fArray;
4197 fUnion.fFields.fArray = array;