Home
last modified time | relevance | path

Searched refs:commaPos (Results 1 – 1 of 1) sorted by relevance

/external/v8/src/inspector/
Dv8-debugger.cc97 size_t commaPos = dataString.find(","); in contextId() local
98 if (commaPos == String16::kNotFound) return 0; in contextId()
99 size_t commaPos2 = dataString.find(",", commaPos + 1); in contextId()
101 return dataString.substring(commaPos + 1, commaPos2 - commaPos - 1) in contextId()
112 size_t commaPos = dataString.find(","); in getGroupId() local
113 if (commaPos == String16::kNotFound) return 0; in getGroupId()
114 return dataString.substring(0, commaPos).toInteger(); in getGroupId()