reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
232 E.Name = Tok.Value; 238 E.ExtName = E.Name; 238 E.ExtName = E.Name; 239 E.Name = Tok.Value; 245 if (!isDecorated(E.Name, MingwDef)) 246 E.Name = (std::string("_").append(E.Name)); 246 E.Name = (std::string("_").append(E.Name)); 247 if (!E.ExtName.empty() && !isDecorated(E.ExtName, MingwDef)) 247 if (!E.ExtName.empty() && !isDecorated(E.ExtName, MingwDef)) 248 E.ExtName = (std::string("_").append(E.ExtName)); 248 E.ExtName = (std::string("_").append(E.ExtName)); 257 Tok.Value.getAsInteger(10, E.Ordinal); 258 } else if (Tok.Value.drop_front().getAsInteger(10, E.Ordinal)) { 262 Info.Exports.push_back(E); 268 E.Noname = true; 275 E.Data = true; 279 E.Constant = true; 283 E.Private = true; 288 E.AliasTarget = Tok.Value; 289 if (Machine == IMAGE_FILE_MACHINE_I386 && !isDecorated(E.AliasTarget, MingwDef)) 290 E.AliasTarget = std::string("_").append(E.AliasTarget); 290 E.AliasTarget = std::string("_").append(E.AliasTarget); 294 Info.Exports.push_back(E);