Lines Matching full:string
26 static const std::string FIRST_LEVEL_SEPERATOR;
27 static const std::string SECOND_LEVEL_SEPERATOR;
30 std::string funcName;
31 std::string funcInternalName;
32 std::string funcHash;
33 ArenaMap<uint32_t, std::pair<std::string, int>> lexenv; // lexenv: <slot, <name, type>>
34 ArenaMap<std::string, std::string> classHash;
40 SymbolTable(const std::string &inputSymbolTable, const std::string &dumpSymbolTable) in SymbolTable()
47 void WriteSymbolTable(const std::string &content);
48 ArenaUnorderedMap<std::string, OriginFunctionInfo> *GetOriginFunctionInfo() in GetOriginFunctionInfo()
53 ArenaUnorderedMap<std::string, std::string> *GetOriginModuleInfo() in GetOriginModuleInfo()
59 bool ReadSymbolTable(const std::string &symbolTable);
60 …std::vector<std::string_view> GetStringItems(std::string_view input, const std::string &separator);
63 std::string symbolTable_;
64 std::string dumpSymbolTable_;
66 ArenaUnorderedMap<std::string, OriginFunctionInfo> originFunctionInfo_;
67 ArenaUnorderedMap<std::string, std::string> originModuleInfo_;