Home | History | Annotate | Download | only in cp

Lines Matching defs:binfo

139 	  tree binfo;
149 binfo = NULL_TREE;
152 binfo = lookup_base (intype_class, type_class, ba_check,
154 if (!same_p && !binfo)
157 binfo = lookup_base (type_class, intype_class, ba_check,
161 if (binfo == error_mark_node)
163 if (binfo || same_p)
165 if (binfo)
166 expr = build_base_path (code, expr, binfo, 0, complain);
282 tree binfo;
284 binfo = lookup_base (TREE_TYPE (intype), TREE_TYPE (type),
286 if (!binfo)
288 binfo = lookup_base (TREE_TYPE (type), TREE_TYPE (intype),
292 if (binfo == error_mark_node)
294 if (binfo)
296 expr = build_base_path (code, expr, binfo, 0, complain);
358 tree binfo = lookup_base (argtype, target_type, ba_check,
360 if (binfo == error_mark_node)
362 if (binfo == NULL_TREE)
364 rval = build_base_path (PLUS_EXPR, rval, binfo, 1, complain);