Home | History | Annotate | Download | only in common

Lines Matching defs:status

62     UErrorCode     status = U_ZERO_ERROR;
63 fFirstPosSet = new UVector(status); // TODO - get a real status from somewhere
64 fLastPosSet = new UVector(status);
65 fFollowPos = new UVector(status);
89 UErrorCode status = U_ZERO_ERROR;
90 fFirstPosSet = new UVector(status); // TODO - get a real status from somewhere
91 fLastPosSet = new UVector(status);
92 fFollowPos = new UVector(status);
252 void RBBINode::findNodes(UVector *dest, RBBINode::NodeType kind, UErrorCode &status) {
254 if (U_FAILURE(status)) {
258 dest->addElement(this, status);
261 fLeftChild->findNodes(dest, kind, status);
264 fRightChild->findNodes(dest, kind, status);