Lines Matching defs:from

139                            ** popped from the stack during error processing */
282 ** from a specification in the file
720 ** list which has been built from calls to Configlist_add.
738 ** propagation links from the state under construction into the
770 struct state *stp; /* The state from which successors are computed */
807 /* The state "newstp" is reached from the state "stp" by a shift action
1289 /* Remove trailing '\n's from the error message. */
2460 /* Transfer every plink on the list "from" to the list "to" */
2461 void Plink_copy(to,from)
2463 struct plink *from;
2466 while( from ){
2467 nextpl = from->next;
2468 from->next = *to;
2469 *to = from;
2470 from = nextpl;
2493 ** name comes from malloc() and must be freed by the calling
2773 /* The first function transfers data from "in" to "out" until
3472 /* Generate code which executes every time a symbol is popped from
3707 ** from a specification in the file
3761 struct s_x1node **from; /* Previous link */
3823 if( array.ht[h] ) array.ht[h]->from = &(newnp->next);
3826 newnp->from = &(array.ht[h]);
3836 if( x1a->ht[h] ) x1a->ht[h]->from = &(np->next);
3839 np->from = &(x1a->ht[h]);
3923 struct s_x2node **from; /* Previous link */
3986 if( array.ht[h] ) array.ht[h]->from = &(newnp->next);
3990 newnp->from = &(array.ht[h]);
4001 if( x2a->ht[h] ) x2a->ht[h]->from = &(np->next);
4004 np->from = &(x2a->ht[h]);
4046 ** The array is obtained from malloc. Return NULL if memory allocation
4129 struct s_x3node **from; /* Previous link */
4192 if( array.ht[h] ) array.ht[h]->from = &(newnp->next);
4196 newnp->from = &(array.ht[h]);
4207 if( x3a->ht[h] ) x3a->ht[h]->from = &(np->next);
4210 np->from = &(x3a->ht[h]);
4233 ** The array is obtained from malloc. Return NULL if memory allocation
4275 struct s_x4node **from; /* Previous link */
4337 if( array.ht[h] ) array.ht[h]->from = &(newnp->next);
4340 newnp->from = &(array.ht[h]);
4350 if( x4a->ht[h] ) x4a->ht[h]->from = &(np->next);
4353 np->from = &(x4a->ht[h]);
4375 /* Remove all data from the table. Pass each data to the function "f"