Home
last modified time | relevance | path

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

/external/pdfium/fpdfsdk/src/javascript/
DPublicMethods.cpp1121 std::wstring w_strValue2 = w_strValue.c_str(); in AFNumber_Keystroke() local
1125 w_strSelected = w_strValue2.substr(pEvent->SelStart(), in AFNumber_Keystroke()
1127 bool bHasSign = (w_strValue2.find('-') != std::wstring::npos) && in AFNumber_Keystroke()
1151 bool bHasSep = (w_strValue2.find(cSep) != std::wstring::npos); in AFNumber_Keystroke()
1191 std::wstring w_prefix = w_strValue2.substr(0, pEvent->SelStart()); in AFNumber_Keystroke()
1193 if (pEvent->SelEnd() < (int)w_strValue2.length()) in AFNumber_Keystroke()
1194 w_postfix = w_strValue2.substr(pEvent->SelEnd()); in AFNumber_Keystroke()
1195 w_strValue2 = w_prefix + w_strChange2 + w_postfix; in AFNumber_Keystroke()
1196 w_strValue = w_strValue2.c_str(); in AFNumber_Keystroke()