Lines Matching refs:text

1170 	map.text =
9606 BodyHandler.prototype.handleText = function(text) { argument
9607 this.body = (this.body || '') + text;
9697 ElementHandler.prototype.handleText = function(text) { argument
9704 throw error$1('unexpected body text <' + text + '>');
9707 BodyHandler.prototype.handleText.call(this, text); argument
10233 function handleCData(text, getContext) { argument
10236 stack.peek().handleText(text);
10242 function handleText(text, getContext) { argument
10247 if (!text.trim()) {
10251 handleCData(text, getContext);
10288 .on('text', function(text, decodeEntities, getContext) { argument
10289 handleText(decodeEntities(text), getContext);
16557 function setLabel(element, text, isExternal) { argument
16564 semantic['categoryValueRef'].value = text;
16566 semantic[attr] = text;
17118 var text = textRenderer.createText(label || '', options);
17120 classes(text).add('djs-label');
17122 append(parentGfx, text);
17124 return text;
17162 function renderLaneLabel(parentGfx, text, element) { argument
17163 var textBox = renderLabel(parentGfx, text, {
17817 var text = getSemantic(element).name;
17818 renderLaneLabel(parentGfx, text, element);
17849 var text = semantic.name;
17850 renderLaneLabel(parentGfx, text, element);
18305 var text = getSemantic(element).text || '';
18306 renderLabel(parentGfx, text, {
18617 function getTextBBox(text, fakeText) { argument
18619 fakeText.textContent = text;
18625 emptyLine = text === '';
18629 fakeText.textContent = emptyLine ? 'dummy' : text;
18692 text: fitLine
18807 Text.prototype.createText = function(text, options) { argument
18808 return this.layoutText(text, options).element;
18819 Text.prototype.getDimensions = function(text, options) { argument
18820 return this.layoutText(text, options).dimensions;
18839 Text.prototype.layoutText = function(text, options) { argument
18850 var lines = text.split(/\u00AD?\r?\n/),
18923 tspan.textContent = line.text;
18982 this.getExternalLabelBounds = function(bounds, text) { argument
18984 var layoutedDimensions = textUtil.getDimensions(text, {
19012 this.getTextAnnotationBounds = function(bounds, text) { argument
19014 var layoutedDimensions = textUtil.getDimensions(text, {
19037 this.createText = function(text, options) { argument
19038 return textUtil.createText(text, options || {});
19937 text,
19942 text = getLabel(element);
19944 if (text) {
19947 bounds = this._textRenderer.getExternalLabelBounds(bounds, text);
30643 var text;
30648 text = e.clipboardData.getData('text/plain');
30652 text = window.clipboardData.getData('Text');
30655 this.insertText(text);
30666 TextBox.prototype.insertText = function(text) { argument
30667 text = normalizeEndOfLineSequences(text);
30670 var success = document.execCommand('insertText', false, text);
30676 this._insertTextIE(text);
30679 TextBox.prototype._insertTextIE = function(text) { argument
30699 + text
30703 offset = startOffset + text.length;
30706 var textNode = document.createTextNode(text);
30721 text +
30729 offset = startOffset + text.length;
31000 previousText = active.context.text;
31009 active.provider.update(active.element, newText, active.context.text, {
31077 context.text,
39219 var text = getLabel(element);
39221 if (text === undefined) {
39226 text: text property in AnonymousFunctionf8d14cd140100.context
42600 modeling.updateLabel(element, properties.text, newBounds);
51521 var text = label && getBusinessObject(label).name;
51523 if (!text) {
51529 var newLabelBounds = this._textRenderer.getExternalLabelBounds(label, text);
52348 function setText(element, text) { argument
52355 setLabel(label, text);
52417 var text = getLabel(label);
52421 newBounds = textRenderer.getExternalLabelBounds(label, text);
57266 var text = createHtmlText(tokens);
57268 childNode.innerHTML = text;
57413 function matchAndSplit(text, pattern) { argument
57415 originalText = text;
57417 if (!text) {
57421 text = text.toLowerCase();
57424 var i = text.indexOf(pattern);
57437 if (pattern.length + i < text.length) {
57439 normal: originalText.substr(pattern.length + i, text.length)