Lines Matching refs:options

467             var ranges = lexer.options && lexer.options.ranges;
530 }, this.options.ranges && (this.yylloc.range = [ 0, 0 ]), this.offset = 0, this;
538 this.options.ranges && this.yylloc.range[1]++, this._input = this._input.slice(1),
556 }, this.options.ranges && (this.yylloc.range = [ r[0], r[0] + this.yyleng - len ]),
565 …return this.options.backtrack_lexer ? (this._backtrack = !0, this) : this.parseError("Lexical erro…
593 if (this.options.backtrack_lexer && (// save context
613 …}, this.options.ranges && (backup.yylloc.range = this.yylloc.range.slice(0))), lines = match[0].ma…
620 … this.options.ranges && (this.yylloc.range = [ this.offset, this.offset += this.yyleng ]),
639 if (match = tempMatch, index = i, this.options.backtrack_lexer) {
648 if (!this.options.flex) break;
686 options: {
948 var BaseTheme = function(diagram, options) { argument
949 this.init(diagram, options);
955 init: function(diagram, options) { argument
1301 var SnapTheme = function(diagram, options, resume) { argument
1302 _.defaults(options, {
1308 this.init(diagram, options, resume);
1313 init: function(diagram, options, resume) { argument
1317 this.cssClass_ = options['css-class'] || undefined;
1319 'font-size': options['font-size'],
1320 'font-family': options['font-family']
1526 var SnapHandTheme = function(diagram, options, resume) { argument
1527 _.defaults(options, {
1533 this.init(diagram, options, resume);
1585 Diagram.prototype.drawSVG = function(container, options) { argument
1590 options = _.defaults(options || {}, defaultOptions);
1592 if (!(options.theme in Diagram.themes)) {
1593 throw new Error('Unsupported theme: ' + options.theme);
1602 var Theme = Diagram.themes[options.theme];
1603 new Theme(this, options, function(drawing) {
1615 $.fn.sequenceDiagram = function(options) { argument
1620 diagram.drawSVG(this, options);