Lines Matching refs:NFRule
35 NFRule** fStuff;
40 : fStuff(capacity ? (NFRule**)uprv_malloc(capacity * sizeof(NFRule*)) : NULL)
51 NFRule* operator[](uint32_t index) const { return fStuff != NULL ? fStuff[index] : NULL; }
52 NFRule* remove(uint32_t index) { in remove()
56 NFRule* result = fStuff[index]; in remove()
63 void add(NFRule* thing) { in add()
66 fStuff = (NFRule**)uprv_realloc(fStuff, fCapacity * sizeof(NFRule*)); // assume success in add()
76 NFRule* last() const { return (fCount > 0 && fStuff != NULL) ? fStuff[fCount-1] : NULL; } in last()
77 NFRule** release() { in release()
79 NFRule** result = fStuff; in release()
86 NFRule** tmp = NULL; in deleteAll()