Lines Matching full:temp

208   struct value *temp = name;  in get_java_utf8_name()  local
211 temp = value_struct_elt (&temp, NULL, "length", NULL, "structure"); in get_java_utf8_name()
212 name_length = (int) value_as_long (temp); in get_java_utf8_name()
213 data_addr = VALUE_ADDRESS (temp) + VALUE_OFFSET (temp) in get_java_utf8_name()
214 + TYPE_LENGTH (VALUE_TYPE (temp)); in get_java_utf8_name()
253 struct value *temp; in type_from_class() local
285 temp = clas; in type_from_class()
286 sig = value_struct_elt (&temp, NULL, "method_count", NULL, "structure"); in type_from_class()
292 temp = clas; in type_from_class()
293 utf8_name = value_struct_elt (&temp, NULL, "name", NULL, "structure"); in type_from_class()
318 temp = clas; in type_from_class()
320 temp = value_struct_elt (&temp, NULL, "methods", NULL, "structure"); in type_from_class()
321 VALUE_TYPE (temp) = lookup_pointer_type (VALUE_TYPE (clas)); in type_from_class()
322 TYPE_TARGET_TYPE (type) = type_from_class (temp); in type_from_class()
337 struct value *temp; in java_link_class_type() local
356 temp = clas; in java_link_class_type()
357 temp = value_struct_elt (&temp, NULL, "superclass", NULL, "structure"); in java_link_class_type()
366 tsuper = type_from_class (temp); in java_link_class_type()
371 temp = clas; in java_link_class_type()
372 ninterfaces = value_as_long (value_struct_elt (&temp, NULL, "interface_len", NULL, "structure")); in java_link_class_type()
375 temp = clas; in java_link_class_type()
376 nfields = value_as_long (value_struct_elt (&temp, NULL, "field_count", NULL, "structure")); in java_link_class_type()
416 temp = clas; in java_link_class_type()
417 temp = value_struct_elt (&temp, NULL, "size_in_bytes", NULL, "structure"); in java_link_class_type()
418 TYPE_LENGTH (type) = value_as_long (temp); in java_link_class_type()
435 temp = clas; in java_link_class_type()
436 fields = value_struct_elt (&temp, NULL, "fields", NULL, "structure"); in java_link_class_type()
444 temp = field; in java_link_class_type()
445 temp = value_struct_elt (&temp, NULL, "name", NULL, "structure"); in java_link_class_type()
447 get_java_utf8_name (&objfile->objfile_obstack, temp); in java_link_class_type()
448 temp = field; in java_link_class_type()
449 accflags = value_as_long (value_struct_elt (&temp, NULL, "accflags", in java_link_class_type()
451 temp = field; in java_link_class_type()
452 temp = value_struct_elt (&temp, NULL, "info", NULL, "structure"); in java_link_class_type()
453 boffset = value_as_long (value_struct_elt (&temp, NULL, "boffset", in java_link_class_type()
478 temp = field; in java_link_class_type()
479 temp = value_struct_elt (&temp, NULL, "type", NULL, "structure"); in java_link_class_type()
480 ftype = type_from_class (temp); in java_link_class_type()
487 temp = clas; in java_link_class_type()
488 nmethods = value_as_long (value_struct_elt (&temp, NULL, "method_count", in java_link_class_type()
505 temp = clas; in java_link_class_type()
506 methods = value_struct_elt (&temp, NULL, "methods", NULL, "structure"); in java_link_class_type()
516 temp = method; in java_link_class_type()
517 temp = value_struct_elt (&temp, NULL, "name", NULL, "structure"); in java_link_class_type()
518 mname = get_java_utf8_name (&objfile->objfile_obstack, temp); in java_link_class_type()
887 struct value *temp = clas; in evaluate_subexp_java() local
889 temp = value_struct_elt (&temp, NULL, "methods", in evaluate_subexp_java()
891 VALUE_TYPE (temp) = VALUE_TYPE (clas); in evaluate_subexp_java()
892 el_type = type_from_class (temp); in evaluate_subexp_java()