Lines Matching refs:status
68 UErrorCode status = U_ZERO_ERROR;
69 fFirstPosSet = new UVector(status); // TODO - get a real status from somewhere
70 fLastPosSet = new UVector(status);
71 fFollowPos = new UVector(status);
97 UErrorCode status = U_ZERO_ERROR;
98 fFirstPosSet = new UVector(status); // TODO - get a real status from somewhere
99 fLastPosSet = new UVector(status);
100 fFollowPos = new UVector(status);
264 void RBBINode::findNodes(UVector *dest, RBBINode::NodeType kind, UErrorCode &status) {
266 if (U_FAILURE(status)) {
271 dest->addElement(this, status);
274 fLeftChild->findNodes(dest, kind, status);
277 fRightChild->findNodes(dest, kind, status);