Lines Matching refs:temp

1574   string temp;
1606 /* temp is initialized in do_type */
1607 success = do_type (work, mangled, &temp);
1610 string_appends (tname, &temp);
1612 string_delete(&temp);
1941 string temp;
2015 /* temp is initialized in do_type */
2016 success = do_type (work, mangled, &temp);
2019 string_appends (tname, &temp);
2024 int len = temp.p - temp.b;
2026 memcpy (work->tmpl_argvec[i], temp.b, len);
2030 string_delete(&temp);
2071 /* temp is initialized in do_type */
2072 success = do_type (work, mangled, &temp);
2073 string_delete(&temp);
3129 string temp;
3138 string_init (&temp);
3150 string_append (&temp, work -> ktypevec[idx]);
3197 /* Pick off the names and collect them in the temp buffer in the order
3216 success = demangle_template(work, mangled, &temp,
3229 string_append (&temp, work->ktypevec[idx]);
3248 recursively_demangle(work, mangled, &temp, namelength);
3256 string_appends (&temp, &last_name);
3261 remember_Ktype (work, temp.b, LEN_STRING (&temp));
3264 string_append (&temp, SCOPE_STRING (work));
3267 remember_Btype (work, temp.b, LEN_STRING (&temp), bindex);
3276 string_append (&temp, SCOPE_STRING (work));
3278 string_append (&temp, "~");
3279 string_appends (&temp, &last_name);
3282 /* Now either prepend the temp buffer to the result, or append it,
3286 string_appends (result, &temp);
3290 string_append (&temp, SCOPE_STRING (work));
3291 string_prepends (result, &temp);
3295 string_delete (&temp);
3506 string temp;
3507 do_type (work, mangled, &temp);
3508 string_prepends (&decl, &temp);
3509 string_delete (&temp);
3513 string temp;
3514 string_init (&temp);
3515 success = demangle_template (work, mangled, &temp,
3519 string_prependn (&decl, temp.b, temp.p - temp.b);
3520 string_delete (&temp);
4137 as they are seen, rather than as they are completed, so map<temp<char> >
4138 registers map<temp<char> > as B0, and temp<char> as B1 */