Lines Matching defs:View

1248  * View adds itself as a property on the element so we can access it from Event.target.
1250 function View(element) {
1261 View.prototype = Object.create(EventEmitter.prototype);
1267 View.prototype.offsetRelativeTo = function(ancestorElement) {
1282 * @param {!View|Node} parent
1283 * @param {?View|Node=} before
1285 View.prototype.attachTo = function(parent, before) {
1286 if (parent instanceof View)
1290 if (before instanceof View)
1295 View.prototype.bindCallbackMethods = function() {
1310 * @extends View
1313 View.call(this, createElement("div", ScrollView.ClassNameScrollView));
1377 ScrollView.prototype = Object.create(View.prototype);
1553 * @param {!View|Node} parent
1554 * @param {?View|Node=} before
1558 View.prototype.attachTo.call(this, parent, before);
1571 * @extends View
1574 View.call(this, createElement("div", ListCell.ClassNameListCell));
1590 ListCell.prototype = Object.create(View.prototype);
1669 * @extends View
1672 View.call(this, createElement("div", ListView.ClassNameListView));
1711 ListView.prototype = Object.create(View.prototype);
1929 * @extends View
1933 View.call(this, createElement("div", ScrubbyScrollBar.ClassNameScrubbyScrollBar));
1983 ScrubbyScrollBar.prototype = Object.create(View.prototype);
2726 * @extends View
2731 View.call(this, createElement("div", MonthPopupView.ClassNameMonthPopupView));
2748 MonthPopupView.prototype = Object.create(View.prototype);
2785 * @extends View
2789 View.call(this, createElement("button", MonthPopupButton.ClassNameMonthPopupButton));
2817 MonthPopupButton.prototype = Object.create(View.prototype);
2857 * @extends View
2860 View.call(this, createElement("button", CalendarNavigationButton.ClassNameCalendarNavigationButton));
2878 CalendarNavigationButton.prototype = Object.create(View.prototype);
2954 * @extends View
2958 View.call(this, createElement("div", CalendarHeaderView.ClassNameCalendarHeaderView));
3012 CalendarHeaderView.prototype = Object.create(View.prototype);
3235 * @extends View
3239 View.call(this, createElement("div", "calendar-table-header-view"));
3259 CalendarTableHeaderView.prototype = Object.create(View.prototype);
3632 * @extends View
3636 View.call(this, createElement("div", CalendarPicker.ClassNameCalendarPicker));
3723 CalendarPicker.prototype = Object.create(View.prototype);
3758 * @param {!View|Node} parent
3759 * @param {?View|Node=} before
3763 View.prototype.attachTo.call(this, parent, before);