Lines Matching refs:NFRule
37 NFRule** fStuff;
42 : fStuff(capacity ? (NFRule**)uprv_malloc(capacity * sizeof(NFRule*)) : NULL)
53 NFRule* operator[](uint32_t index) const { return fStuff != NULL ? fStuff[index] : NULL; }
54 NFRule* remove(uint32_t index) { in remove()
58 NFRule* result = fStuff[index]; in remove()
65 void add(NFRule* thing) { in add()
68 fStuff = (NFRule**)uprv_realloc(fStuff, fCapacity * sizeof(NFRule*)); // assume success in add()
78 NFRule* last() const { return (fCount > 0 && fStuff != NULL) ? fStuff[fCount-1] : NULL; } in last()
79 NFRule** release() { in release()
81 NFRule** result = fStuff; in release()
88 NFRule** tmp = NULL; in deleteAll()