HomeSort by relevance Sort by last modified time
    Searched refs:Backspace (Results 1 - 25 of 25) sorted by null

  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/chrome/
braille_key_types.js 89 'Backspace': 0x08,
104 'Backspace': 8,
braille_input_handler.js 214 if (event.standardKeyCode === 'Backspace' &&
287 * Handles the backspace key by deleting the last typed cell if possible.
425 case 'backspace':
426 // Note that we can't send the backspace key through the
  /external/chromium_org/ui/views/controls/textfield/
textfield_model.h 100 // the user has pressed backspace key in the textfield). Returns true if
103 bool Backspace();
textfield_model_unittest.cc 91 EXPECT_TRUE(model.Backspace());
95 // Move the cursor to start; backspace should fail.
97 EXPECT_FALSE(model.Backspace());
99 // Move the cursor to the end; delete should fail, but backspace should work.
103 EXPECT_TRUE(model.Backspace());
131 // Test Delete and backspace.
136 EXPECT_TRUE(model.Backspace());
193 EXPECT_TRUE(model.Backspace());
215 EXPECT_TRUE(model.Backspace());
232 EXPECT_TRUE(model.Backspace());
    [all...]
textfield.cc 810 // Skip backspace accelerator handling; editable textfields handle this key.
    [all...]
textfield_model.cc 231 // backspace can be merged only with backspace at the same position.
346 bool TextfieldModel::Backspace() {
491 // than beginning, unlike Delete/Backspace.
492 // TODO(oshima): Change Delete/Backspace to use DeleteSelection,
  /external/pdfium/fpdfsdk/include/pdfwindow/
PWL_EditCtrl.h 38 //2 BackSpace
134 void Backspace();
  /external/pdfium/fpdfsdk/src/pdfwindow/
PWL_EditCtrl.cpp 308 Backspace();
609 void CPWL_EditCtrl::Backspace()
612 m_pEdit->Backspace();
  /external/chromium_org/chrome/common/extensions/docs/examples/extensions/speak_selection/
options.js 96 case 8: // Backspace
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
KeyboardShortcut.js 64 Backspace: { code: 8, name: "\u21a4" },
  /external/pdfium/fpdfsdk/include/fxedit/
fx_edit.h 300 //do backspace operation.
301 virtual FX_BOOL Backspace() = 0;
fxet_edit.h 629 FX_BOOL Backspace();
690 FX_BOOL Backspace(FX_BOOL bAddUndo, FX_BOOL bPaint);
  /external/chromium_org/ui/keyboard/resources/elements/
kb-key-codes.js 34 '\b': {keyCode: 0x08, keyName: 'Backspace', shiftModifier: false},
  /external/pdfium/fpdfsdk/src/fxedit/
fxet_edit.cpp 596 m_pEdit->Backspace(FALSE,TRUE);
636 m_pEdit->Backspace(FALSE,TRUE);
666 m_pEdit->Backspace(FALSE,TRUE);
    [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/braille_ime/
braille_ime.js 26 * {type: 'backspace', requestId: string}
27 * Sent when the user presses the backspace key.
39 * Response to a {@code backspace} message indicating whether the
40 * backspace was handled by ChromeVox or should be allowed to propagate
283 if (event.code === 'Backspace' && event.type === 'keydown') {
287 {type: 'backspace', requestId: event.requestId});
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/chromevox/injected/ui/
search_widget.js 176 if (evt.keyCode == 8) { // Backspace
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
key_util.js 257 return 'Backspace';
key_sequence.js 589 evt['keyCode'] = 8; // Backspace.
  /external/chromium_org/chrome/third_party/chromevox/
chromeVoxKbExplorerScript.js 41 cvox.KeyUtil.getReadableNameForKeyCode=function(a){if(0==a)return"Power button";if(17==a)return"Control";if(18==a)return"Alt";if(16==a)return"Shift";if(9==a)return"Tab";if(91==a||93==a)return cvox.ChromeVox.isChromeOS?"Search":cvox.ChromeVox.isMac?"Cmd":"Win";if(8==a)return"Backspace";if(32==a)return"Space";if(35==a)return"end";if(36==a)return"home";if(37==a)return"Left arrow";if(38==a)return"Up arrow";if(39==a)return"Right arrow";if(40==a)return"Down arrow";if(45==a)return"Insert";if(13==a)return"Enter";
chromeVoxChromeBackgroundScript.js     [all...]
chromeVoxChromeOptionsScript.js 42 cvox.KeyUtil.getReadableNameForKeyCode=function(a){if(0==a)return"Power button";if(17==a)return"Control";if(18==a)return"Alt";if(16==a)return"Shift";if(9==a)return"Tab";if(91==a||93==a)return cvox.ChromeVox.isChromeOS?"Search":cvox.ChromeVox.isMac?"Cmd":"Win";if(8==a)return"Backspace";if(32==a)return"Space";if(35==a)return"end";if(36==a)return"home";if(37==a)return"Left arrow";if(38==a)return"Up arrow";if(39==a)return"Right arrow";if(40==a)return"Down arrow";if(45==a)return"Insert";if(13==a)return"Enter";
    [all...]
  /external/chromium_org/ui/file_manager/gallery/js/
gallery.js 814 case 'U+0008': // Backspace.
  /external/chromium_org/chrome/browser/resources/bookmark_manager/js/
main.js 78 // On Mac we also allow Meta+Backspace.
    [all...]
  /external/chromium_org/chrome/browser/resources/history/
history.js 491 // Delete or Backspace should delete the entry if allowed.
    [all...]
  /external/chromium_org/ui/file_manager/file_manager/foreground/js/
file_manager.js     [all...]

Completed in 497 milliseconds