Lines Matching refs:fMarkerArray
23 this->fMarkerArray.push(marker);
33 SkASSERT(-1 != fMarkerArray.find(marker));
34 int index = this->fMarkerArray.find(marker);
35 this->fMarkerArray.remove(index);
39 return this->fMarkerArray.count();
43 const int numMarkers = this->fMarkerArray.count();
46 GrGpuTraceMarker& lastMarker = this->fMarkerArray[numMarkers - 1];
58 SkTQSort<GrGpuTraceMarker>(this->fMarkerArray.begin(), this->fMarkerArray.end() - 1);
63 const int numMarkers = this->fMarkerArray.count();
66 if (1 == numMarkers && -1 == this->fMarkerArray[0].fID) {
67 marker_string.append(this->fMarkerArray[0].fMarker);
72 GrGpuTraceMarker& currMarker = this->fMarkerArray[i];
102 return Iter(this, this->fMarkerArray.count());