Lines Matching defs:identifier

26    identifier.  This identifier is used as the function's or
37 returns an identifier containing the mangled name for a decl.
467 ::std::identifier<char>, where identifier is
475 /* Check NODE's name is ::std::identifier. */
1158 <source-name> ::= </length/ number> <identifier> */
1161 write_source_name (tree identifier)
1163 MANGLE_TRACE_TREE ("source-name", identifier);
1167 if (IDENTIFIER_TEMPLATE (identifier))
1168 identifier = IDENTIFIER_TEMPLATE (identifier);
1170 write_unsigned_number (IDENTIFIER_LENGTH (identifier));
1171 write_identifier (IDENTIFIER_POINTER (identifier));
1362 /* Non-terminal <identifier>.
1364 <identifier> ::= </unqualified source code identifier> */
1367 write_identifier (const char *identifier)
1369 MANGLE_TRACE ("identifier", identifier);
1370 write_string (identifier);
2123 if (operator_name_info[i].identifier == member)
2135 else if (assignment_operator_name_info[i].identifier
2600 allocated on the obstack used by the identifier hash table. */
2610 /* Create an identifier for the external mangled name of DECL. */
2634 /* Create an identifier for the mangled name of a special component
2661 /* Create an identifier for the mangled representation of the typeinfo
2670 /* Create an identifier for the mangled name of the NTBS containing
2679 /* Create an identifier for the mangled name of the vtable for TYPE. */
2687 /* Returns an identifier for the mangled name of the VTT for TYPE. */
2695 /* Return an identifier for a construction vtable group. TYPE is
2751 /* Return an identifier for the mangled name of a this-adjusting or
2829 /* Return an identifier for the mangled unqualified name for a
2837 tree identifier;
2847 identifier = (tree)*slot;
2848 if (!identifier)
2855 identifier = get_identifier (buffer);
2856 *slot = identifier;
2858 /* Hang TYPE off the identifier so it can be found easily later
2860 TREE_TYPE (identifier) = type;
2862 /* Set bits on the identifier so we know later it's a conversion. */
2863 IDENTIFIER_OPNAME_P (identifier) = 1;
2864 IDENTIFIER_TYPENAME_P (identifier) = 1;
2867 return identifier;
2870 /* Return an identifier for the name of an initialization guard
2887 /* Return an identifier for the name of a temporary variable used to