Lines Matching full:string
26 static const std::string FIRST_LEVEL_SEPERATOR;
27 static const std::string SECOND_LEVEL_SEPERATOR;
30 std::string recordName;
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 bool Initialize(int targetApiVersion, std::string targetApiSubVersion);
51 ArenaUnorderedMap<std::string, OriginFunctionInfo> *GetOriginFunctionInfo() in GetOriginFunctionInfo()
56 ArenaUnorderedMap<std::string, std::string> *GetOriginModuleInfo() in GetOriginModuleInfo()
61 …ArenaUnorderedMap<std::string, std::unordered_map<std::string, std::string>> *GetOriginRecordHashF… in GetOriginRecordHashFunctionNames()
71 std::string GetTargetApiSubVersion() const in GetTargetApiSubVersion()
77 bool ReadSymbolTable(const std::string &symbolTable);
78 …std::vector<std::string_view> GetStringItems(std::string_view input, const std::string &separator);
79 …void ReadRecordHashFunctionNames(const std::string &recordName, const std::string &funcInternalNam…
80 const std::string &specialFuncIndex);
83 std::string symbolTable_;
84 std::string dumpSymbolTable_;
86 std::string targetApiSubVersion_;
88 ArenaUnorderedMap<std::string, OriginFunctionInfo> originFunctionInfo_;
89 ArenaUnorderedMap<std::string, std::string> originModuleInfo_;
91 …ArenaUnorderedMap<std::string, std::unordered_map<std::string, std::string>> originRecordHashFunct…