HomeSort by: relevance | last modified time | path
    Searched defs:vtt (Results 1 - 6 of 6) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/cp/
class.cc 5181 /* And the VTT parm, in a complete [cd]tor. */
5186 /* If we're omitting inherited parms, that just leaves the VTT. */
5212 /* And the VTT parm, in a complete [cd]tor. */
5365 /* Base cdtors need a vtt parm if there are virtual bases. */
5366 bool vtt = CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn));
5373 build_cdtor_clones (fn, vtt, base_omits_inherited, update_methods);
7926 /* Build the VTT for T. */
9681 dump_vtt (tree t, tree vtt)
9691 fprintf (stream, "VTT for %s\n",
9693 dump_array (stream, vtt);
9796 tree vtt; local
    [all...]
call.cc 2423 /* The `this', `in_chrg' and VTT arguments to constructors are not
3517 /* We don't do deduction on the in-charge parameter, the VTT
11309 that uses virtual base classes, pass down a pointer to a VTT for
11315 tree vtt; local
11319 or destructor, then we fetch the VTT directly.
11320 Otherwise, we look it up using the VTT we were given. */
11321 vtt = DECL_CHAIN (CLASSTYPE_VTABLES (current_class_type));
11322 vtt = decay_conversion (vtt, complain);
11323 if (vtt == error_mark_node
    [all...]
pt.cc 2283 classes with virtual bases, the VTT parameter. A
2284 full specialization of a constructor will have a VTT
2572 tree vtt = NULL_TREE; local
2603 vtt = spec_types;
2615 if (vtt)
2616 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2617 TREE_VALUE (vtt),
  /src/external/gpl3/gcc.old/dist/gcc/cp/
class.cc 4890 /* And the VTT parm, in a complete [cd]tor. */
4895 /* If we're omitting inherited parms, that just leaves the VTT. */
4921 /* And the VTT parm, in a complete [cd]tor. */
5072 /* Base cdtors need a vtt parm if there are virtual bases. */
5073 bool vtt = CLASSTYPE_VBASECLASSES (DECL_CONTEXT (fn));
5080 build_cdtor_clones (fn, vtt, base_omits_inherited, update_methods);
7616 /* Build the VTT for T. */
9290 dump_vtt (tree t, tree vtt)
9300 fprintf (stream, "VTT for %s\n",
9302 dump_array (stream, vtt);
9405 tree vtt; local
    [all...]
pt.cc 2302 classes with virtual bases, the VTT parameter. A
2303 full specialization of a constructor will have a VTT
2591 tree vtt = NULL_TREE; local
2622 vtt = spec_types;
2634 if (vtt)
2635 new_spec_types = hash_tree_cons (TREE_PURPOSE (vtt),
2636 TREE_VALUE (vtt),
call.cc 2335 /* The `this', `in_chrg' and VTT arguments to constructors are not
3416 /* We don't do deduction on the in-charge parameter, the VTT
10628 that uses virtual base classes, pass down a pointer to a VTT for
10634 tree vtt; local
10638 or destructor, then we fetch the VTT directly.
10639 Otherwise, we look it up using the VTT we were given. */
10640 vtt = DECL_CHAIN (CLASSTYPE_VTABLES (current_class_type));
10641 vtt = decay_conversion (vtt, complain);
10642 if (vtt == error_mark_node
    [all...]

Completed in 163 milliseconds