Home | History | Annotate | Download | only in test_runner

Lines Matching refs:code_str

264               const std::string code_str,
268 code_str_(code_str),
871 std::string code_str;
874 args->GetNext(&code_str);
882 sender_->ScheduleAsynchronousKeyDown(code_str, modifiers,
918 std::string code_str;
921 args->GetNext(&code_str);
929 sender_->KeyDown(code_str, modifiers, static_cast<KeyLocationCode>(location));
1217 void EventSender::KeyDown(const std::string& code_str,
1232 if ("\n" == code_str) {
1235 } else if ("rightArrow" == code_str) {
1237 } else if ("downArrow" == code_str) {
1239 } else if ("leftArrow" == code_str) {
1241 } else if ("upArrow" == code_str) {
1243 } else if ("insert" == code_str) {
1245 } else if ("delete" == code_str) {
1247 } else if ("pageUp" == code_str) {
1249 } else if ("pageDown" == code_str) {
1251 } else if ("home" == code_str) {
1253 } else if ("end" == code_str) {
1255 } else if ("printScreen" == code_str) {
1257 } else if ("menu" == code_str) {
1259 } else if ("leftControl" == code_str) {
1261 } else if ("rightControl" == code_str) {
1263 } else if ("leftShift" == code_str) {
1265 } else if ("rightShift" == code_str) {
1267 } else if ("leftAlt" == code_str) {
1269 } else if ("rightAlt" == code_str) {
1271 } else if ("numLock" == code_str) {
1273 } else if ("backspace" == code_str) {
1275 } else if ("escape" == code_str) {
1283 if (function_key_name == code_str) {
1290 WebString::fromUTF8(code_str.data(), code_str.size());
1299 if ("(" == code_str) {
1887 void EventSender::ScheduleAsynchronousKeyDown(const std::string& code_str,
1890 delegate_->PostTask(new KeyDownTask(this, code_str, modifiers, location));