/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
curses_tests.py | 13 def test_textpad(stdscr, insert_mode=False): 16 if insert_mode: 27 box = textpad.Textbox(win, insert_mode)
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
curses_tests.py | 13 def test_textpad(stdscr, insert_mode=False): 16 if insert_mode: 27 box = textpad.Textbox(win, insert_mode)
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/curses/ |
textpad.py | 43 def __init__(self, win, insert_mode=False): 45 self.insert_mode = insert_mode 69 if self.insert_mode: 78 if self.insert_mode:
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/curses/ |
textpad.py | 43 def __init__(self, win, insert_mode=False): 45 self.insert_mode = insert_mode 69 if self.insert_mode: 78 if self.insert_mode:
|
/external/chromium_org/ui/gfx/ |
render_text.h | 186 bool insert_mode() const { return insert_mode_; } function in class:gfx::RenderText 362 // represent a vertical line if |insert_mode| is true. Pass false for 363 // |insert_mode| to retrieve the bounds of the associated glyph. These bounds 369 Rect GetCursorBounds(const SelectionModel& caret, bool insert_mode);
|
render_text.cc | 740 bool insert_mode) { 752 insert_mode ? caret.caret_affinity() : CURSOR_FORWARD; 764 if (insert_mode) { [all...] |
/external/chromium_org/ui/views/controls/textfield/ |
native_textfield_views.h | 225 void UpdateCursorBoundsAndTextOffset(size_t cursor_pos, bool insert_mode);
|
native_textfield_views.cc | 921 if (GetRenderText()->insert_mode()) 938 if (GetRenderText()->insert_mode()) [all...] |