Lines Matching defs:name

53     std::string name;
58 : name(), btype(NULL), location(UNKNOWN_LOCATION)
63 : name(a_name), btype(a_btype), location(a_location)
128 // NAME is the name of the type, and the location is where the named
130 // types with multiple results, in which case the type has no name
138 placeholder_pointer_type(const std::string& name, Location,
161 placeholder_struct_type(const std::string& name, Location) = 0;
176 placeholder_array_type(const std::string& name, Location) = 0;
192 named_type(const std::string& name, Btype*, Location) = 0;
270 named_constant_expression(Btype* btype, const std::string& name,
481 // Create a global variable. PACKAGE_NAME is the name of the
484 // option. NAME is the name of the variable. BTYPE is the type of
487 // exported (name begins with a lower case letter).
495 const std::string& name,
514 // is the name of the variable. TYPE is the type. IS_ADDRESS_TAKEN
521 local_variable(Bfunction* function, const std::string& name, Btype* type,
528 parameter_variable(Bfunction* function, const std::string& name,
534 static_chain_variable(Bfunction* function, const std::string& name,
537 // Create a temporary variable. A temporary variable has no name,
558 // NAME is the name to use for the initialized variable this will create.
577 implicit_variable(const std::string& name, Btype* type, bool is_hidden,
592 implicit_variable_set_init(Bvariable*, const std::string& name, Btype* type,
601 implicit_variable_reference(const std::string& name, Btype* type) = 0;
608 // NAME is the name to use for the initialized global variable which
629 immutable_struct(const std::string& name, bool is_hidden, bool is_common,
640 immutable_struct_set_init(Bvariable*, const std::string& name,
650 immutable_struct_reference(const std::string& name, Btype* type,
659 label(Bfunction*, const std::string& name, Location) = 0;
686 // NAME is the Go name of the function. ASM_NAME, if not the empty string, is
687 // the name that should be used in the symbol table; this will be non-empty if
699 function(Btype* fntype, const std::string& name, const std::string& asm_name,
724 // Returns NULL if no built-in function by that name exists.