Lines Matching defs:insert
6520 xmlExpNodePtr insert;
6664 for (insert = ctxt->table[key]; insert != NULL;
6665 insert = insert->next) {
6666 if ((insert->key == kbase) &&
6667 (insert->type == type)) {
6669 if (name == insert->exp_str) {
6670 insert->ref++;
6671 return(insert);
6674 if ((insert->exp_min == min) && (insert->exp_max == max) &&
6675 (insert->exp_left == left)) {
6676 insert->ref++;
6678 return(insert);
6680 } else if ((insert->exp_left == left) &&
6681 (insert->exp_right == right)) {
6682 insert->ref++;
6685 return(insert);