Searched refs:tmp_token (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.0-release/contrib/gdb/gdb/
H A Dc-exp.y613 struct stoken tmp_token;
620 tmp_token.ptr = (char*) alloca ($4.length + 2);
621 tmp_token.length = $4.length + 1;
622 tmp_token.ptr[0] = '~';
623 memcpy (tmp_token.ptr+1, $4.ptr, $4.length);
624 tmp_token.ptr[tmp_token.length] = 0;
627 destructor_name_p (tmp_token.ptr, type);
630 write_exp_string (tmp_token);
H A Dobjc-exp.y678 struct stoken tmp_token;
688 tmp_token.ptr = (char*) alloca ($4.length + 2);
689 tmp_token.length = $4.length + 1;
690 tmp_token.ptr[0] = '~';
691 memcpy (tmp_token.ptr+1, $4.ptr, $4.length);
692 tmp_token.ptr[tmp_token.length] = 0;
695 write_exp_string (tmp_token);
H A Dc-exp.c1939 struct stoken tmp_token;
1946 tmp_token.ptr = (char*) alloca (yyvsp[0].sval.length + 2);
1947 tmp_token.length = yyvsp[0].sval.length + 1;
1948 tmp_token.ptr[0] = '~';
1949 memcpy (tmp_token.ptr+1, yyvsp[0].sval.ptr, yyvsp[0].sval.length);
1950 tmp_token.ptr[tmp_token.length] = 0;
1953 destructor_name_p (tmp_token.ptr, type);
1956 write_exp_string (tmp_token);
1936 struct stoken tmp_token; local
H A Dobjc-exp.c1997 struct stoken tmp_token;
2007 tmp_token.ptr = (char*) alloca (yyvsp[0].sval.length + 2);
2008 tmp_token.length = yyvsp[0].sval.length + 1;
2009 tmp_token.ptr[0] = '~';
2010 memcpy (tmp_token.ptr+1, yyvsp[0].sval.ptr, yyvsp[0].sval.length);
2011 tmp_token.ptr[tmp_token.length] = 0;
2014 write_exp_string (tmp_token);
1994 struct stoken tmp_token; local

Completed in 132 milliseconds