Lines Matching defs:SearchWidget

10 goog.provide('cvox.SearchWidget');
25 cvox.SearchWidget = function() {
58 goog.inherits(cvox.SearchWidget, cvox.Widget);
59 goog.addSingletonGetter(cvox.SearchWidget);
65 cvox.SearchWidget.prototype.show = function() {
107 cvox.SearchWidget.prototype.hide = function(opt_noSync) {
115 cvox.SearchWidget.containerNode = null;
155 cvox.SearchWidget.prototype.getNameMsg = function() {
163 cvox.SearchWidget.prototype.getHelpMsg = function() {
171 cvox.SearchWidget.prototype.onKeyDown = function(evt) {
209 cvox.SearchWidget.prototype.onKeyPress = function(evt) {
227 cvox.SearchWidget.prototype.onNavigate = function() {
235 cvox.SearchWidget.prototype.getPredicate = function() {
245 cvox.SearchWidget.prototype.nextResult = function(opt_reverse) {
260 cvox.SearchWidget.prototype.createContainerNode_ = function() {
281 cvox.SearchWidget.prototype.createOverlayNode_ = function() {
304 cvox.SearchWidget.prototype.createTextAreaNode_ = function() {
321 cvox.SearchWidget.prototype.toggleCaseSensitivity_ = function() {
323 cvox.SearchWidget.caseSensitive_ = false;
340 cvox.SearchWidget.prototype.getNextResult_ = function(searchStr) {
390 cvox.SearchWidget.prototype.beginSearch_ = function(searchStr) {
405 cvox.SearchWidget.prototype.next_ = function(searchStr, opt_reversed) {
439 cvox.SearchWidget.prototype.outputSearchResult_ = function(result, searchStr) {
479 cvox.SearchWidget.prototype.outputSearchResultToBraille_ = function(searchStr) {
519 cvox.SearchWidget.prototype.textFromCurrentDescription_ = function() {
532 cvox.SearchWidget.prototype.handleSearchChanged_ = function(evt) {
534 cvox.SearchWidget.prototype.beginSearch_(searchStr);