Lines Matching refs:dim
2804 struct demangle_component *dim; in d_array_type() local
2811 dim = NULL; in d_array_type()
2823 dim = d_make_name (di, s, d_str (di) - s); in d_array_type()
2824 if (dim == NULL) in d_array_type()
2829 dim = d_expression (di); in d_array_type()
2830 if (dim == NULL) in d_array_type()
2837 return d_make_comp (di, DEMANGLE_COMPONENT_ARRAY_TYPE, dim, in d_array_type()
2848 struct demangle_component *dim; in d_vector_type() local
2854 dim = d_expression (di); in d_vector_type()
2857 dim = d_number_component (di); in d_vector_type()
2859 if (dim == NULL) in d_vector_type()
2865 return d_make_comp (di, DEMANGLE_COMPONENT_VECTOR_TYPE, dim, in d_vector_type()