Lines Matching refs:column
153 // the first bit: the column after transferring.
156 // the fourth bit: the column before transferring.
201 LOG_ECMA(ERROR) << "SourceMap find failed, line: " << row << ", column: " << col;
257 void SourceMap::GetPosInfo(const std::string& temp, int32_t start, std::string& line, std::string& column)
261 // find line, column
268 column = temp[i] + column;
337 bool SourceMap::TranslateUrlPositionBySourceMap(std::string& url, int& line, int& column)
357 ret = GetLineAndColumnNumbers(line, column, *(iterData->second), isReplaces);
377 ret = GetLineAndColumnNumbers(line, column, *(modularMap), isReplaces);
386 bool SourceMap::GetLineAndColumnNumbers(int& line, int& column, SourceMapData& targetMap, bool& isReplaces)
391 mapInfo = Find(line - offSet + OFFSET_PREVIEW, column, targetMap, isReplaces);
393 mapInfo = Find(line - offSet, column, targetMap, isReplaces);
399 column = mapInfo.col;