HomeSort by relevance Sort by last modified time
    Searched defs:m_text (Results 1 - 25 of 37) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/editing/
SplitTextNodeContainingElementCommand.h 45 RefPtr<Text> m_text; member in class:WebCore::SplitTextNodeContainingElementCommand
DeleteFromTextNodeCommand.h 55 String m_text; member in class:WebCore::DeleteFromTextNodeCommand
InsertIntoTextNodeCommand.h 54 String m_text; member in class:WebCore::InsertIntoTextNodeCommand
InsertTextCommand.h 80 String m_text; member in class:WebCore::InsertTextCommand
TextCheckingHelper.h 71 mutable String m_text; member in class:WebCore::TextCheckingParagraph
  /external/chromium_org/third_party/WebKit/Source/core/platform/text/
TextStream.h 59 StringBuilder m_text; member in class:WebCore::TextStream
TextChecking.h 81 , m_text(text)
89 String text() const { return m_text; }
97 String m_text; member in class:WebCore::TextCheckingRequestData
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/editor/
TextControlActionsManager.java 25 private final Text m_text; field in class:TextControlActionsManager
34 m_text = text;
44 m_text.selectAll();
  /external/chromium_org/third_party/WebKit/Source/core/dom/
BeforeTextInsertedEvent.h 45 const String& text() const { return m_text; }
46 void setText(const String& s) { m_text = s; }
51 String m_text; member in class:WebCore::BeforeTextInsertedEvent
  /external/emma/core/java12/com/vladium/emma/report/html/doc/
TextContent.java 22 m_text = text;
27 if (m_text != null)
29 out.write (m_text);
40 private final String m_text; field in class:TextContent
Text.java 24 m_text = text;
30 if (m_text != null)
33 out.write (Strings.HTMLEscapeSP (m_text));
35 out.write (Strings.HTMLEscape (m_text));
46 private final String m_text; field in class:Text
  /external/chromium_org/third_party/WebKit/Source/core/html/ime/
Composition.h 47 String text() const { return m_text; }
48 void setText(const String& text) { m_text = text; }
61 String m_text; member in class:WebCore::Composition
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderListMarker.h 42 const String& text() const { return m_text; }
84 String m_text; member in class:WebCore::FINAL
RenderQuote.h 60 String m_text; member in class:WebCore::FINAL
RenderText.h 55 const String& text() const { return m_text; }
72 bool is8Bit() const { return m_text.is8Bit(); }
73 const LChar* characters8() const { return m_text.impl()->characters8(); }
74 const UChar* characters16() const { return m_text.impl()->characters16(); }
75 bool hasEmptyText() const { return m_text.isEmpty(); }
76 String substring(unsigned position, unsigned length) const { return m_text.substring(position, length); }
80 unsigned textLength() const { return m_text.length(); } // non virtual implementation of length()
203 String m_text; member in class:WebCore::RenderText
  /external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
SVGTextMetricsBuilder.h 53 RenderSVGInlineText* m_text; member in class:WebCore::SVGTextMetricsBuilder
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/core/controls/
CComboBox.java 67 private Text m_text; field in class:CComboBox
155 m_text = new Text(parent, SWT.NONE);
156 new TextControlActionsManager(m_text);
158 m_text.addKeyListener(new KeyAdapter() {
208 m_text.selectAll();
218 m_text.addModifyListener(new ModifyListener() {
225 if (m_text.isFocusControl()) {
327 m_text.setBounds(
386 String lookingString = m_text.getText().toLowerCase();
444 || m_text.isFocusControl(
    [all...]
CTableCombo.java 48 protected CImageLabel m_text; field in class:CTableCombo
66 m_text = new CImageLabel(this, style & ~SWT.BORDER);
67 m_text.setBackground(Display.getDefault().getSystemColor(SWT.COLOR_LIST_BACKGROUND));
78 if (m_text == event.widget) {
138 m_text.addListener(textEvents[i], listener);
178 if (focusControl == m_text || focusControl == m_arrow) {
205 m_text.setText(item.getText());
206 m_text.setImage(item.getImage());
207 //m_text.selectAll();
298 m_text = null
    [all...]
CSpinner.java 58 private final Text m_text; field in class:CSpinner
75 m_text = new Text(this, textStyle);
76 m_text.setText("" + m_value);
77 m_text.addKeyListener(new KeyAdapter() {
89 m_value = (int) (m_format.parse(m_text.getText()).doubleValue() * m_multiplier);
91 m_text.setBackground(COLOR_INVALID);
105 m_text.getText(),
116 win32Hack.moveBelow(m_text);
134 m_text.forceFocus();
170 m_text.setEnabled(enabled)
    [all...]
CCombo3.java 42 private final CImageLabel m_text; field in class:CCombo3
58 m_text = new CImageLabel(this, SWT.NONE);
59 new DefaultControlActionsManager(m_text);
60 addEvents(m_text, m_textListener, new int[]{
97 m_text.isFocusControl()
103 m_text.setBackground(IColorConstants.listSelection);
104 m_text.setForeground(IColorConstants.listSelectionText);
106 m_text.setBackground(IColorConstants.listBackground);
107 m_text.setForeground(IColorConstants.listForeground);
164 m_text.setCapture(true)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
PlatformKeyboardEvent.h 51 , m_text(text)
71 String text() const { return m_text; }
94 String m_text; member in class:WebCore::PlatformKeyboardEvent
PlatformSpeechSynthesisUtterance.h 47 const String& text() const { return m_text; }
48 void setText(const String& text) { m_text = text; }
78 String m_text; member in class:WebCore::PlatformSpeechSynthesisUtterance
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/model/property/
ComplexProperty.java 33 private String m_text; field in class:ComplexProperty
50 m_text = text;
64 m_text = text;
71 return m_text;
  /external/eclipse-windowbuilder/propertysheet/src/org/eclipse/wb/internal/core/utils/ui/dialogs/
TextDialog.java 57 private String m_text; field in class:TextDialog
63 m_text = text;
70 return m_text;
90 m_textWidget.setText(m_text);
115 m_text = m_textWidget.getText();
  /external/chromium_org/third_party/WebKit/Source/core/rendering/style/
ContentData.h 104 const String& text() const { return m_text; }
105 void setText(const String& text) { m_text = text; }
119 : m_text(text)
125 String m_text; member in class:WebCore::TextContentData

Completed in 465 milliseconds

1 2