Home | History | Annotate | Download | only in views

Lines Matching defs:fFieldCount

503 	virtual int countFields() { return fFieldCount; }
506 SkASSERT((unsigned)index < (unsigned)fFieldCount);
512 for (int i = 0; i < fFieldCount; i++)
522 SkASSERT((unsigned)fieldIndex < (unsigned)fFieldCount);
524 *data = fRecords[rowIndex * fFieldCount + fieldIndex];
538 SkString* fFields; // [fFieldCount]
539 SkString* fRecords; // [fRecordCount][fFieldCount]
540 int fFieldCount, fRecordCount;
547 fFieldCount = fRecordCount = 0;
559 fFieldCount = dom.countChildren(child, "field");
560 fFields = new SkString[fFieldCount];
570 SkASSERT(n == fFieldCount);
577 fRecords = new SkString[fRecordCount * fFieldCount];
583 for (int i = 0; i < fFieldCount; i++)
584 fRecords[n * fFieldCount + i].set(dom.findAttr(child, fFields[i].c_str()));