Home | History | Annotate | Download | only in slang

Lines Matching refs:Array

101 // particular slot).  ReflectionState generally builds up an array of
121 // an array of ForEaches in lexical order rather than in
122 // presentation (slot) order, and accesses the array randomly
480 // This class represents a fixed-length dynamically-allocated array
482 // with a cursor that traverses the array. The behavior of the
488 // b) Call BeginCollecting() with an array capacity. This allocates
489 // the array members and moves the instance to the S_Collecting
490 // state. The array size (contrast with capacity) is zero, and
493 // Each time CollectNext() is called, it extends the array size
521 // Increments the array size, advances the cursor to the new
541 // Is the cursor on the last array member?
567 // array size (not merely within its capacity).
718 void begin(ArrayWithCursor<Member> File::*Array, size_t Count) {
725 (file.*Array).BeginCollecting(Count);
727 (file.*Array).BeginUsing();