Lines Matching refs:varValue
1392 std::string varValue; in CmptEvaluateValue() local
1396 varValue = Trim(expression.substr(indexEqual + 1, expression.length())); in CmptEvaluateValue()
1401 if (varValue.empty()) { in CmptEvaluateValue()
1409 Local<JSValueRef> value = ConvertToLocal(varValue); in CmptEvaluateValue()
1428 Local<JSValueRef> DebuggerImpl::ConvertToLocal(const std::string &varValue) in ConvertToLocal() argument
1431 if (varValue == "false") { in ConvertToLocal()
1433 } else if (varValue == "true") { in ConvertToLocal()
1435 } else if (varValue == "undefined") { in ConvertToLocal()
1437 } else if (varValue[0] == '\"' && varValue[varValue.length() - 1] == '\"') { in ConvertToLocal()
1439 … taggedValue = StringRef::NewFromUtf8(vm_, varValue.substr(1, varValue.length() - 2).c_str()); in ConvertToLocal()
1441 auto begin = reinterpret_cast<const uint8_t *>((varValue.c_str())); in ConvertToLocal()
1442 … auto end = begin + varValue.length(); // NOLINT(cppcoreguidelines-pro-bounds-pointer-arithmetic) in ConvertToLocal()