HomeSort by: relevance | last modified time | path
    Searched refs:stripped_init (Results 1 - 5 of 5) sorted by relevancy

  /src/external/gpl3/gcc/dist/gcc/cp/
typeck2.cc 1204 tree stripped_init = init;
1213 stripped_init = TREE_OPERAND (init, 0);
1215 stripped_init = tree_strip_any_location_wrapper (stripped_init);
1239 && TREE_CODE (stripped_init) == STRING_CST)
1268 stripped_init = copy_node (stripped_init);
1269 TREE_OPERAND (init, 0) = stripped_init;
1270 TREE_TYPE (stripped_init) = type;
1282 if (size < TREE_STRING_LENGTH (stripped_init))
1201 tree stripped_init = init; local
    [all...]
decl.cc 7227 tree stripped_init = tree_strip_any_location_wrapper (init);
7234 if (BRACE_ENCLOSED_INITIALIZER_P (stripped_init))
7236 if (CONSTRUCTOR_NELTS (stripped_init) > 2)
7271 if (TREE_CODE (stripped_init) == CONSTRUCTOR
7273 && !CONSTRUCTOR_IS_DIRECT_INIT (stripped_init)
7274 && BRACE_ENCLOSED_INITIALIZER_P (stripped_init)) /* p7626.C */
7286 || (CONSTRUCTOR_NELTS (stripped_init) > 0
7288 (CONSTRUCTOR_ELT (stripped_init,0)->value))))
7350 tree stripped_str_init = stripped_init;
7384 if (TREE_CODE (stripped_init) == CONSTRUCTOR
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/cp/
typeck2.cc 1170 tree stripped_init = init;
1179 stripped_init = TREE_OPERAND (init, 0);
1181 stripped_init = tree_strip_any_location_wrapper (stripped_init);
1205 && TREE_CODE (stripped_init) == STRING_CST)
1234 stripped_init = copy_node (stripped_init);
1235 TREE_OPERAND (init, 0) = stripped_init;
1236 TREE_TYPE (stripped_init) = type;
1248 if (size < TREE_STRING_LENGTH (stripped_init))
1167 tree stripped_init = init; local
    [all...]
decl.cc 6868 tree stripped_init = tree_strip_any_location_wrapper (init);
6875 if (BRACE_ENCLOSED_INITIALIZER_P (stripped_init))
6877 if (CONSTRUCTOR_NELTS (stripped_init) > 2)
6912 if (TREE_CODE (stripped_init) == CONSTRUCTOR
6914 && !CONSTRUCTOR_IS_DIRECT_INIT (stripped_init)
6915 && BRACE_ENCLOSED_INITIALIZER_P (stripped_init)) /* p7626.C */
6927 || (CONSTRUCTOR_NELTS (stripped_init) > 0
6929 (CONSTRUCTOR_ELT (stripped_init,0)->value))))
6991 tree stripped_str_init = stripped_init;
7025 if (TREE_CODE (stripped_init) == CONSTRUCTOR
    [all...]
pt.cc 30468 tree stripped_init = tree_strip_any_location_wrapper (init);
30471 if (REFERENCE_REF_P (stripped_init)
30472 && !REF_PARENTHESIZED_P (stripped_init))
30473 stripped_init = TREE_OPERAND (stripped_init, 0);
30474 const bool id = (DECL_P (stripped_init)
30475 || ((TREE_CODE (stripped_init) == COMPONENT_REF
30476 || TREE_CODE (stripped_init) == SCOPE_REF)
30477 && !REF_PARENTHESIZED_P (stripped_init)));

Completed in 39 milliseconds