Lines Matching refs:index

773 	                		function cropImage(index, callback)
777 if (index < toCropImgs.length - 1)
779 cropImage(index + 1, callback);
787 var shape = toCropImgs[index];
1869 function Row(index, x, y) { argument
1878 this.index = 0;
1879 this.index = index;
1908 return this.index;
1956 var index = RowFactory.getIndex(elem);
1965 if (index <= pRows.length) {
1966 parentObj = pRows[index - 1];
2020 return new com.mxgraph.io.vsdx.geometry.MoveTo(index, x, y);
2022 return new com.mxgraph.io.vsdx.geometry.LineTo(index, x, y);
2024 … return new com.mxgraph.io.vsdx.geometry.ArcTo(index, x, y, a);
2026 … return new com.mxgraph.io.vsdx.geometry.Ellipse(index, x, y, a, b, c, d);
2028 … return new com.mxgraph.io.vsdx.geometry.EllipticalArcTo(index, x, y, a, b, c, d);
2030 … return new com.mxgraph.io.vsdx.geometry.InfiniteLine(index, x, y, a, b);
2032 … return new com.mxgraph.io.vsdx.geometry.NURBSTo(index, x, y, a, b, c, d, formulaE);
2034 … return new com.mxgraph.io.vsdx.geometry.PolylineTo(index, x, y, formulaA);
2036 … return new com.mxgraph.io.vsdx.geometry.RelCubBezTo(index, x, y, a, b, c, d);
2038 … return new com.mxgraph.io.vsdx.geometry.RelEllipticalArcTo(index, x, y, a, b, c, d);
2040 … return new com.mxgraph.io.vsdx.geometry.RelLineTo(index, x, y);
2042 … return new com.mxgraph.io.vsdx.geometry.RelMoveTo(index, x, y);
2044 … return new com.mxgraph.io.vsdx.geometry.RelQuadBezTo(index, x, y, a, b);
2046 … return new com.mxgraph.io.vsdx.geometry.SplineKnot(index, x, y, a);
2048 … return new com.mxgraph.io.vsdx.geometry.SplineStart(index, x, y, a, b, c, d);
2051 return new com.mxgraph.io.vsdx.geometry.DelRow(index);
2506 this.index = 0;
2513 this.index = 0;
2515 _this.index = _this.getIndex$org_w3c_dom_Element(elem);
2516 if (parentGeo != null && _this.index < parentGeo.length) {
2517 _this.inheritGeo(/* get */ parentGeo[_this.index]);
2524 this.index = 0;
2531 this.index = 0;
2533 _this.index = _this.getIndex$org_w3c_dom_Element(elem);
2650 return this.index;
3258 var index = 1;
3260 … var path = com.mxgraph.io.mxVsdxCodec.vsdxPlaceholder + "/theme/theme" + index + ".xml";
3293 index++;
3683 var index = target.indexOf('.');
3684 if (index !== -1) {
3685 … this.parseNodes(child, model, target.substring(0, index));
4375 … /*private*/ mxVsdxTheme.prototype.addVariantColorsSet = function (index, variant) {
4377 this.isMonotoneVariant[index] = variant.hasAttribute("monotone");
4384 …this.variantsColors[index][0] = com.mxgraph.io.vsdx.theme.OoxmlColorFactory.getOoxmlColor(com.mxgr…
4387 …this.variantsColors[index][1] = com.mxgraph.io.vsdx.theme.OoxmlColorFactory.getOoxmlColor(com.mxgr…
4390 …this.variantsColors[index][2] = com.mxgraph.io.vsdx.theme.OoxmlColorFactory.getOoxmlColor(com.mxgr…
4393 …this.variantsColors[index][3] = com.mxgraph.io.vsdx.theme.OoxmlColorFactory.getOoxmlColor(com.mxgr…
4396 …this.variantsColors[index][4] = com.mxgraph.io.vsdx.theme.OoxmlColorFactory.getOoxmlColor(com.mxgr…
4399 …this.variantsColors[index][5] = com.mxgraph.io.vsdx.theme.OoxmlColorFactory.getOoxmlColor(com.mxgr…
4402 …this.variantsColors[index][6] = com.mxgraph.io.vsdx.theme.OoxmlColorFactory.getOoxmlColor(com.mxgr…
4488 var index = quickStyleVals.getQuickStyleFillMatrix() - 100;
4489 … fillStyle = this.fillStyles[this.variantFillIdx[this.themeVariant][index] - 1];
4561 var index = quickStyleLineMatrix - 100;
4563 … lineStyle = this.lineStyles[this.variantLineIdx[this.themeVariant][index] - 1];
4745 var index = quickStyleVals.getQuickStyleFontMatrix() - 100;
4750 … fontColor = fontColors[this.variantFontIdx[this.themeVariant][index] - 1];
5086 var index = entry.indexOf(asig);
5087 var key = entry.substring(0, index);
5088 var value = entry.substring(index + 1);
5156 Paragraph.prototype.getValue = function (index) { argument
5157 return this.values[index];
5162 Paragraph.prototype.getChar = function (index) { argument
5163 return this.charIndices[index];
5165 Paragraph.prototype.getField = function (index) { argument
5166 return this.fields[index];
5202 Section.prototype.getIndexedCell = function (index, cellKey) { argument
5212 } })(n, index) || index == null) {
6567 function ArcTo(index, x, y, a) { argument
6568 var _this = _super.call(this, index, x, y) || this;
6632 function DelRow(index) { argument
6633 return _super.call(this, index, null, null) || this;
6664 function Ellipse(index, x, y, a, b, c, d) { argument
6665 var _this = _super.call(this, index, x, y) || this;
6730 function EllipticalArcTo(index, x, y, a, b, c, d) { argument
6731 var _this = _super.call(this, index, x, y) || this;
6865 function InfiniteLine(index, x, y, a, b) { argument
6866 var _this = _super.call(this, index, x, y) || this;
6900 function LineTo(index, x, y) { argument
6901 return _super.call(this, index, x, y) || this;
6949 function MoveTo(index, x, y) { argument
6950 return _super.call(this, index, x, y) || this;
7000 function NURBSTo(index, x, y, a, b, c, d, e) { argument
7001 var _this = _super.call(this, index, x, y) || this;
7201 function PolylineTo(index, x, y, a) { argument
7202 var _this = _super.call(this, index, x, y) || this;
7282 function RelCubBezTo(index, x, y, a, b, c, d) { argument
7283 var _this = _super.call(this, index, x, y) || this;
7336 function RelLineTo(index, x, y) { argument
7337 return _super.call(this, index, x, y) || this;
7380 function RelMoveTo(index, x, y) { argument
7381 return _super.call(this, index, x, y) || this;
7426 function RelQuadBezTo(index, x, y, a, b) { argument
7427 var _this = _super.call(this, index, x, y) || this;
7474 function SplineKnot(index, x, y, a) { argument
7475 var _this = _super.call(this, index, x, y) || this;
7520 function SplineStart(index, x, y, a, b, c, d) { argument
7521 var _this = _super.call(this, index, x, y) || this;
7866 …llElement$java_lang_String$java_lang_String$java_lang_String = function (cellKey, index, sectKey) {
7871 elem = sect.getIndexedCell(index, cellKey);
7908 …s.style.getCellElement$java_lang_String$java_lang_String$java_lang_String(cellKey, index, sectKey);
7919 …ntStyle.getCellElement$java_lang_String$java_lang_String$java_lang_String(cellKey, index, sectKey);
7927 Style.prototype.getCellElement = function (cellKey, index, sectKey) {
7928 …typeof cellKey === 'string') || cellKey === null) && ((typeof index === 'string') || index === nul…
7929 …rn this.getCellElement$java_lang_String$java_lang_String$java_lang_String(cellKey, index, sectKey);
7931 …else if (((typeof cellKey === 'string') || cellKey === null) && index === undefined && sectKey ===…
8205 Style.prototype.getTextColor = function (index) {
8206 …a_lang_String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.COLOR, index, com.mxgraph.io.vs…
8265 Style.prototype.getTextStyle = function (index) {
8266 …a_lang_String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.STYLE, index, com.mxgraph.io.vs…
8275 Style.prototype.getTextFont = function (index) {
8276 …va_lang_String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.FONT, index, com.mxgraph.io.vs…
8285 Style.prototype.getTextPos = function (index) {
8286 …ava_lang_String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.POS, index, com.mxgraph.io.vs…
8295 Style.prototype.getTextStrike = function (index) {
8296 …g_String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.STRIKETHRU, index, com.mxgraph.io.vs…
8310 Style.prototype.getTextCase = function (index) {
8311 …va_lang_String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.CASE, index, com.mxgraph.io.vs…
8320 Style.prototype.getHorizontalAlign = function (index, html) {
8322 …ng$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.HORIZONTAL_ALIGN, index, com.mxgraph.io.vs…
8346 Style.prototype.getIndentFirst = function (index) {
8347 …String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.INDENT_FIRST, index, com.mxgraph.io.vs…
8356 Style.prototype.getIndentLeft = function (index) {
8357 …_String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.INDENT_LEFT, index, com.mxgraph.io.vs…
8366 Style.prototype.getIndentRight = function (index) {
8367 …String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.INDENT_RIGHT, index, com.mxgraph.io.vs…
8376 Style.prototype.getSpBefore = function (index) {
8377 …String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.SPACE_BEFORE, index, com.mxgraph.io.vs…
8386 Style.prototype.getSpAfter = function (index) {
8387 …_String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.SPACE_AFTER, index, com.mxgraph.io.vs…
8396 Style.prototype.getSpLine = function (index) {
8397 …g_String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.SPACE_LINE, index, com.mxgraph.io.vs…
8415 Style.prototype.getFlags = function (index) {
8416 …a_lang_String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.FLAGS, index, com.mxgraph.io.vs…
8425 Style.prototype.getLetterSpace = function (index) {
8426 …String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.LETTER_SPACE, index, com.mxgraph.io.vs…
8435 Style.prototype.getBullet = function (index) {
8436 …_lang_String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.BULLET, index, com.mxgraph.io.vs…
8821 function RelEllipticalArcTo(index, x, y, a, b, c, d) { argument
8822 return _super.call(this, index, x, y, a, b, c, d) || this;
8990 var index = filename.lastIndexOf('/');
8996 pre = filename.substring(0, index);
8997 … post = filename.substring(index, filename.length);
9010 index = target.lastIndexOf('/');
9014 … target = target.substring(index + 1, target.length);
9081 var index = target.lastIndexOf('/');
9082 target = target.substring(index + 1, target.length);
9432 Shape.prototype.getTextDirection = function (index) {
9433 var direction = this.getFlags(index);
9459 Shape.prototype.getSpcLine = function (index) {
9462 var space = this.getSpLine(index);
9485 Shape.prototype.getSpcBefore = function (index) {
9486 return this.getSpBefore(index);
9512 Shape.prototype.getRtlText = function (index) {
9513 …ang_String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.RTL_TEXT, index, com.mxgraph.io.vs…
9542 Shape.prototype.isBold = function (index) {
9544 var style = this.getTextStyle(index);
9574 Shape.prototype.isItalic = function (index) {
9576 var style = this.getTextStyle(index);
9606 Shape.prototype.isUnderline = function (index) {
9608 var style = this.getTextStyle(index);
9638 Shape.prototype.isSmallCaps = function (index) {
9640 var style = this.getTextStyle(index);
9661 Shape.prototype.getTextOpacity = function (index) {
9662 …_String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.COLOR_TRANS, index, com.mxgraph.io.vs…
9678 Shape.prototype.getTextSize = function (index) {
9679 …va_lang_String$java_lang_String(com.mxgraph.io.vsdx.mxVsdxConstants.SIZE, index, com.mxgraph.io.vs…
9813 var index = name.lastIndexOf(".");
9814 if (index !== -1) {
9815 name = name.substring(0, index);
10235 for (var index = 0; index < children.length; index++) {
10237 var node = children.item(index);
10291 VsdxShape.prototype.createHybridLabel = function (index) {
10292 … var para = (function (m, k) { return m[k] ? m[k] : null; })(this.paragraphs, index);
10293 … /* put */ (this.styleMap[mxConstants.STYLE_ALIGN] = this.getHorizontalAlign(index, false));
10294 … /* put */ (this.styleMap[mxConstants.STYLE_SPACING_LEFT] = this.getIndentLeft(index));
10295 … /* put */ (this.styleMap[mxConstants.STYLE_SPACING_RIGHT] = this.getIndentRight(index));
10296 … /* put */ (this.styleMap[mxConstants.STYLE_SPACING_TOP] = this.getSpBefore(index));
10297 … /* put */ (this.styleMap[mxConstants.STYLE_SPACING_BOTTOM] = this.getSpAfter(index));
10299 /* put */ (this.styleMap["fontColor"] = this.getTextColor(index));
10300 /* put */ (this.styleMap["fontSize"] = this.getTextSize(index));
10301 /* put */ (this.styleMap["fontFamily"] = this.getTextFont(index));
10302 var fontStyle = this.isBold(index) ? mxConstants.FONT_BOLD : 0;
10303 fontStyle |= this.isItalic(index) ? mxConstants.FONT_ITALIC : 0;
10304 fontStyle |= this.isUnderline(index) ? mxConstants.FONT_UNDERLINE : 0;
10368 for (var index = 0; index < txtChildren.length; index++) {
10369 var node = txtChildren.item(index);
12010 …llElement$java_lang_String$java_lang_String$java_lang_String = function (cellKey, index, sectKey) {
12011 …CellElement$java_lang_String$java_lang_String$java_lang_String.call(this, cellKey, index, sectKey);
12013 …erShape.getCellElement$java_lang_String$java_lang_String$java_lang_String(cellKey, index, sectKey);
12017 VsdxShape.prototype.getCellElement = function (cellKey, index, sectKey) {
12018 …typeof cellKey === 'string') || cellKey === null) && ((typeof index === 'string') || index === nul…
12019 …rn this.getCellElement$java_lang_String$java_lang_String$java_lang_String(cellKey, index, sectKey);
12021 …else if (((typeof cellKey === 'string') || cellKey === null) && index === undefined && sectKey ===…