Home
last modified time | relevance | path

Searched refs:m_text (Results 1 – 25 of 51) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/platform/text/
DTextStream.cpp59 m_text.appendNumber(i); in operator <<()
65 m_text.appendNumber(i); in operator <<()
71 m_text.appendNumber(i); in operator <<()
77 m_text.appendNumber(i); in operator <<()
83 m_text.appendNumber(i); in operator <<()
89 m_text.appendNumber(i); in operator <<()
95 m_text.append(String::numberToStringFixedWidth(f, 2)); in operator <<()
101 m_text.append(String::numberToStringFixedWidth(d, 2)); in operator <<()
107 m_text.append(string); in operator <<()
120 m_text.append(string); in operator <<()
[all …]
DTextChecking.h82 , m_text(text) in TextCheckingRequestData()
90 String text() const { return m_text; } in text()
99 String m_text; variable
/external/chromium_org/third_party/WebKit/Source/core/editing/
DSplitTextNodeContainingElementCommand.cpp37 : CompositeEditCommand(text->document()), m_text(text), m_offset(offset) in SplitTextNodeContainingElementCommand()
39 ASSERT(m_text); in SplitTextNodeContainingElementCommand()
40 ASSERT(m_text->length() > 0); in SplitTextNodeContainingElementCommand()
45 ASSERT(m_text); in doApply()
48 splitTextNode(m_text.get(), m_offset); in doApply()
50 Element* parent = m_text->parentElement(); in doApply()
63 splitElement(parent, m_text.get()); in doApply()
68 visitor->trace(m_text); in trace()
DInsertIntoTextNodeCommand.cpp41 , m_text(text) in InsertIntoTextNodeCommand()
45 ASSERT(!m_text.isEmpty()); in InsertIntoTextNodeCommand()
60 renderText->momentarilyRevealLastTypedCharacter(m_offset + m_text.length() - 1); in doApply()
63 …m_node->insertData(m_offset, m_text, IGNORE_EXCEPTION, CharacterData::DeprecatedRecalcStyleImmedia… in doApply()
71 …m_node->deleteData(m_offset, m_text.length(), IGNORE_EXCEPTION, CharacterData::DeprecatedRecalcSty… in doUnapply()
DInsertTextCommand.cpp41 , m_text(text) in InsertTextCommand()
123 ASSERT(m_text.find('\n') == kNotFound); in doApply()
131 if (performTrivialReplace(m_text, m_selectInsertedText)) in doApply()
145 if (performOverwrite(m_text, m_selectInsertedText)) in doApply()
184 if (m_text == "\t") { in doApply()
200 insertTextIntoNode(textNode, offset, m_text); in doApply()
201 endPosition = Position(textNode, offset + m_text.length()); in doApply()
207 if (!shouldRebalanceLeadingWhitespaceFor(m_text)) in doApply()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
DCSpinner.java58 private final Text m_text; field in CSpinner
75 m_text = new Text(this, textStyle); in CSpinner()
76 m_text.setText("" + m_value); in CSpinner()
77 m_text.addKeyListener(new KeyAdapter() { in CSpinner()
89 m_value = (int) (m_format.parse(m_text.getText()).doubleValue() * m_multiplier); in CSpinner()
91 m_text.setBackground(COLOR_INVALID); in CSpinner()
105 m_text.getText(), in CSpinner()
116 win32Hack.moveBelow(m_text); in CSpinner()
134 m_text.forceFocus(); in CSpinner()
170 m_text.setEnabled(enabled); in setEnabled()
[all …]
DCCombo3.java42 private final CImageLabel m_text; field in CCombo3
58 m_text = new CImageLabel(this, SWT.NONE); in CCombo3()
59 new DefaultControlActionsManager(m_text); in CCombo3()
60 addEvents(m_text, m_textListener, new int[]{ in CCombo3()
97 m_text.isFocusControl() in CCombo3()
103 m_text.setBackground(IColorConstants.listSelection); in CCombo3()
104 m_text.setForeground(IColorConstants.listSelectionText); in CCombo3()
106 m_text.setBackground(IColorConstants.listBackground); in CCombo3()
107 m_text.setForeground(IColorConstants.listForeground); in CCombo3()
164 m_text.setCapture(true);
[all …]
DCImageLabel.java35 private String m_text; field in CImageLabel
74 return m_text; in getText()
78 m_text = text; in setText()
107 Point textExtent = m_text == null ? new Point(0, 0) : gc.textExtent(m_text); in doPaint()
115 if (m_text != null) { in doPaint()
118 gc.drawText(m_text, x, y); in doPaint()
131 Point textExtent = m_text == null ? new Point(0, 0) : gc.textExtent(m_text); in computeSize()
DCTableCombo.java48 protected CImageLabel m_text; field in CTableCombo
66 m_text = new CImageLabel(this, style & ~SWT.BORDER); in init()
67 m_text.setBackground(Display.getDefault().getSystemColor(SWT.COLOR_LIST_BACKGROUND)); in init()
78 if (m_text == event.widget) { in init()
138 m_text.addListener(textEvents[i], listener); in init()
178 if (focusControl == m_text || focusControl == m_arrow) { in handleTableEvent()
205 m_text.setText(item.getText()); in handleTableEvent()
206 m_text.setImage(item.getImage()); in handleTableEvent()
298 m_text = null; in handleComboEvent()
326 m_text.forceFocus(); in handleArrowEvent()
[all …]
DCComboBox.java67 private Text m_text; field in CComboBox
155 m_text = new Text(parent, SWT.NONE); in createText()
156 new TextControlActionsManager(m_text); in createText()
158 m_text.addKeyListener(new KeyAdapter() { in createText()
208 m_text.selectAll(); in createText()
218 m_text.addModifyListener(new ModifyListener() { in createText()
225 if (m_text.isFocusControl()) { in createText()
327 m_text.setBounds( in resizeInner()
386 String lookingString = m_text.getText().toLowerCase();
444 || m_text.isFocusControl()
[all …]
/external/emma/core/java12/com/vladium/emma/report/html/doc/
DText.java24 m_text = text; in Text()
30 if (m_text != null) in emit()
33 out.write (Strings.HTMLEscapeSP (m_text)); in emit()
35 out.write (Strings.HTMLEscape (m_text)); in emit()
46 private final String m_text; field in Text
DTextContent.java22 m_text = text; in TextContent()
27 if (m_text != null) in emit()
29 out.write (m_text); in emit()
40 private final String m_text; field in TextContent
/external/chromium_org/third_party/WebKit/Source/platform/
DPlatformKeyboardEvent.cpp56 m_text = String(); in disambiguateKeyDownEvent()
62 if (m_text.length() == 1 && (m_text[0U] >= 0xF700 && m_text[0U] <= 0xF7FF)) { in disambiguateKeyDownEvent()
66 m_text = String(); in disambiguateKeyDownEvent()
DPlatformKeyboardEvent.h51 , m_text(text) in PlatformKeyboardEvent()
70 String text() const { return m_text; } in text()
93 String m_text;
/external/chromium_org/third_party/WebKit/Source/core/rendering/
DRenderText.h58 const String& text() const { return m_text; } in text()
76 bool is8Bit() const { return m_text.is8Bit(); } in is8Bit()
77 const LChar* characters8() const { return m_text.impl()->characters8(); } in characters8()
78 const UChar* characters16() const { return m_text.impl()->characters16(); } in characters16()
79 bool hasEmptyText() const { return m_text.isEmpty(); } in hasEmptyText()
80 …String substring(unsigned position, unsigned length) const { return m_text.substring(position, len… in substring()
84 … unsigned textLength() const { return m_text.length(); } // non virtual implementation of length() in textLength()
206 String m_text; variable
DRenderText.cpp149 , m_text(str) in RenderText()
153 ASSERT(m_text); in RenderText()
159 m_isAllASCII = m_text.containsOnlyASCII(); in RenderText()
163 view()->frameView()->incrementVisuallyNonEmptyCharacterCount(m_text.length()); in RenderText()
318 …String text = m_text.substring(textBox->start(), textBox->len()).simplifyWhiteSpace(WTF::DoNotStri… in plainText()
720 ASSERT(m_text); in widthFromCache()
721 StringImpl& text = *m_text.impl(); in widthFromCache()
799 ASSERT(m_text); in trimmedPrefWidths()
800 StringImpl& text = *m_text.impl(); in trimmedPrefWidths()
907 LazyLineBreakIterator breakIterator(m_text, styleToUse->locale()); in computePreferredLogicalWidths()
[all …]
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
DTextDialog.java57 private String m_text; field in TextDialog
63 m_text = text; in setText()
70 return m_text; in getText()
90 m_textWidget.setText(m_text); in createDialogArea()
115 m_text = m_textWidget.getText(); in okPressed()
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
DTextControlActionsManager.java25 private final Text m_text; field in TextControlActionsManager
34 m_text = text; in TextControlActionsManager()
44 m_text.selectAll(); in selectAllExecuted()
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
DCSPDirective.h20 , m_text(name + ' ' + value) in CSPDirective()
25 const String& text() const { return m_text; } in text()
32 String m_text; variable
/external/chromium_org/third_party/WebKit/Source/core/events/
DBeforeTextInsertedEvent.h45 const String& text() const { return m_text; } in text()
46 void setText(const String& s) { m_text = s; } in setText()
53 String m_text; variable
/external/chromium_org/third_party/WebKit/Source/platform/speech/
DPlatformSpeechSynthesisUtterance.h47 const String& text() const { return m_text; } in text()
48 void setText(const String& text) { m_text = text; } in setText()
79 String m_text; variable
/external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
DComplexProperty.java33 private String m_text; field in ComplexProperty
50 m_text = text; in ComplexProperty()
64 m_text = text; in setText()
71 return m_text; in getText()
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
DSVGTextMetricsBuilder.cpp62 RenderSVGInlineText* m_text; member in WebCore::SVGTextMetricsCalculator
75 : m_text(text) in SVGTextMetricsCalculator()
100 RenderStyle* style = m_text->style(); in setupBidiRuns()
127 return SVGTextMetrics(m_text, textPosition, metricsLength, currentWidth, glyphId); in computeMetricsForCharacterSimple()
133 …SVGTextMetrics metrics = SVGTextMetrics::measureCharacterRange(m_text, textPosition, metricsLength… in computeMetricsForCharacterComplex()
138 …SVGTextMetrics complexStartToCurrentMetrics = SVGTextMetrics::measureCharacterRange(m_text, startP… in computeMetricsForCharacterComplex()
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
DRenderTextInfo.h35 : m_text(0) in RenderTextInfo()
40 RenderText* m_text; member
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
DContentData.h104 const String& text() const { return m_text; } in text()
105 void setText(const String& text) { m_text = text; } in setText()
119 : m_text(text) in TextContentData()
125 String m_text; variable

123