Lines Matching refs:node
67 // Pending linear-match node, append remaining bytes to str_.
112 // the branch node.
129 // We only get here if we started in a pending linear-match node
134 int32_t node=*pos++;
135 if(node>=kMinValueLead) {
137 UBool isFinal=(UBool)(node&kValueIsFinal);
138 value_=readValue(pos, node>>1);
142 pos_=skipValue(pos, node);
149 if(node<kMinLinearMatch) {
150 if(node==0) {
151 node=*pos++;
153 pos=branchNext(pos, node+1, errorCode);
158 // Linear-match node, append length bytes to str_.
159 int32_t length=node-kMinLinearMatch+1;
183 // Branch node, needs to take the first outbound edge and push state for the rest.
198 int32_t node=*pos++;
199 UBool isFinal=(UBool)(node&kValueIsFinal);
200 int32_t value=readValue(pos, node>>1);
201 pos=skipValue(pos, node);