Home
last modified time | relevance | path

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

12

/external/webkit/WebCore/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); in doApply()
DInsertIntoTextNodeCommand.cpp37 , m_text(text) in InsertIntoTextNodeCommand()
41 ASSERT(!m_text.isEmpty()); in InsertIntoTextNodeCommand()
47 m_node->insertData(m_offset, m_text, ec); in doApply()
53 m_node->deleteData(m_offset, m_text.length(), ec); in doUnapply()
DDeleteFromTextNodeCommand.cpp49 m_text = m_node->substringData(m_offset, m_count, ec); in doApply()
61 m_node->insertData(m_offset, m_text, ec); in doUnapply()
DSplitTextNodeContainingElementCommand.h45 RefPtr<Text> m_text; variable
/external/webkit/WebCore/rendering/
DRenderText.cpp58 , m_text(document()->displayStringModifiedByEncoding(str)) in RenderText()
67 , m_isAllASCII(charactersAreAllASCII(m_text.get())) in RenderText()
70 ASSERT(m_text); in RenderText()
439 char c = (*m_text)[i]; in widthFromCache()
482 if (!len || (stripFrontSpaces && m_text->containsOnlyWhitespace())) { in trimmedPrefWidths()
502 …if ((*m_text)[0] == ' ' || ((*m_text)[0] == '\n' && !style()->preserveNewline()) || (*m_text)[0] =… in trimmedPrefWidths()
525 while (i + linelen < len && (*m_text)[i + linelen] != '\n') in trimmedPrefWidths()
764 …currPos < from + len && ((*m_text)[currPos] == '\n' || (*m_text)[currPos] == ' ' || (*m_text)[curr… in containsOnlyWhitespace()
924 m_text = document()->displayStringModifiedByEncoding(text); in setTextInternal()
925 ASSERT(m_text); in setTextInternal()
[all …]
DRenderListMarker.cpp603 if (m_text.isEmpty()) in paint()
606 TextRun textRun(m_text); in paint()
610 bool textNeedsReversing = direction(m_text[0]) == RightToLeft; in paint()
613 int length = m_text.length(); in paint()
616 reversedText[length - i - 1] = m_text[i]; in paint()
676 m_text = ""; in calcPrefWidths()
699 m_text = listMarkerText(type, 0); // value is ignored for these types in calcPrefWidths()
719 m_text = listMarkerText(type, m_listItem->value()); in calcPrefWidths()
720 if (m_text.isEmpty()) in calcPrefWidths()
723 int itemWidth = font.width(m_text); in calcPrefWidths()
[all …]
DRenderText.h53 StringImpl* text() const { return m_text.get(); } in text()
66 const UChar* characters() const { return m_text->characters(); } in characters()
67 … unsigned textLength() const { return m_text->length(); } // non virtual implementation of length() in textLength()
153 RefPtr<StringImpl> m_text; variable
DRenderListMarker.h43 const String& text() const { return m_text; } in text()
77 String m_text; variable
/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/webkit/WebCore/platform/chromium/
DPlatformKeyboardEventChromium.cpp54 m_text = String(); in disambiguateKeyDownEvent()
60 if (m_text.length() == 1 && (m_text[0U] >= 0xF700 && m_text[0U] <= 0xF7FF)) { in disambiguateKeyDownEvent()
64 m_text = String(); in disambiguateKeyDownEvent()
/external/webkit/WebCore/platform/text/
DTextStream.cpp86 size_t textLength = m_text.size(); in operator <<()
87 m_text.grow(textLength + stringLength); in operator <<()
89 m_text[textLength + i] = string[i]; in operator <<()
95 append(m_text, string); in operator <<()
101 return String::adopt(m_text); in release()
/external/webkit/WebCore/platform/android/
DKeyEventAndroid.cpp216 , m_text(singleCharacterString(unichar)) in PlatformKeyboardEvent()
233 m_text = "\r"; in PlatformKeyboardEvent()
237 if (m_text == "\x7F") in PlatformKeyboardEvent()
238 m_text = "\x8"; in PlatformKeyboardEvent()
243 m_text = "\x9"; in PlatformKeyboardEvent()
264 m_text = String(); in disambiguateKeyDownEvent()
/external/webkit/WebCore/dom/
DBeforeTextInsertedEvent.h42 const String& text() const { return m_text; } in text()
43 void setText(const String& s) { m_text = s; } in setText()
48 String m_text; variable
DBeforeTextInsertedEvent.cpp34 : Event(eventNames().webkitBeforeTextInsertedEvent, false, true), m_text(text) in BeforeTextInsertedEvent()
/external/webkit/WebKitTools/android/webkitmerge/
Dwebkitmerge.cpp275 char* m_text; member in Parse
288 …Parse(char* text) : m_text(text), m_inComment(false), m_inFunction(false), m_inFindFunctionType(fa… in Parse()
296 char* openBrace = strchr(m_text, '{'); in CheckForBrace()
297 char* closeBrace = strchr(m_text, '}'); in CheckForBrace()
302 char* doubleQ = strchr(m_text, '"'); in CheckForBrace()
303 char* singleQ = strchr(m_text, '\''); in CheckForBrace()
313 m_text = quote + 1; in CheckForBrace()
317 m_text = openBrace + 1; in CheckForBrace()
318 } while (m_text[0] != '\0'); in CheckForBrace()
324 size_t textLen = strlen(m_text); in ParseLine()
[all …]
/external/webkit/WebCore/rendering/style/
DContentData.h70 StringImpl* text() const { return m_content.m_text; } in text()
75 m_content.m_text = text.releaseRef(); in setText()
98 StringImpl* m_text; member
/external/webkit/WebCore/platform/wx/
DKeyboardEventWx.cpp357 m_text = "\r"; in PlatformKeyboardEvent()
359 m_text = wxString(event.GetUnicodeKey()); in PlatformKeyboardEvent()
360 m_unmodifiedText = m_text; in PlatformKeyboardEvent()
378 m_text = String(); in disambiguateKeyDownEvent()
DKeyEventWin.cpp140 : m_text(singleCharacterString(wParam)) in PlatformKeyboardEvent()
154 m_text = String(singleCharacterString(tolower(wParam))); in PlatformKeyboardEvent()
/external/webkit/WebCore/platform/gtk/
DPasteboardGtk.cpp48 : m_text(text) in PasteboardSelectionData()
52 g_free(m_text); in ~PasteboardSelectionData()
56 const gchar* text() const { return m_text; } in text()
60 gchar* m_text; member in WebCore::PasteboardSelectionData
/external/webkit/WebKit/wx/
DWebFrame.h74 wxString GetText() const { return m_text; } in GetText()
75 void SetText(const wxString& text) { m_text = text; } in SetText()
87 wxString m_text; variable
/external/webkit/WebCore/platform/haiku/
DPlatformKeyboardEventHaiku.cpp160 m_text = String::fromUTF8(bytes.String(), bytes.Length()); in PlatformKeyboardEvent()
178 m_text = String(); in disambiguateKeyDownEvent()
/external/webkit/WebCore/platform/qt/
DPlatformKeyboardEventQt.cpp496 m_text = event->text(); in PlatformKeyboardEvent()
517 m_text = String(); in disambiguateKeyDownEvent()
526 if (m_text.isEmpty() && m_windowsVirtualKeyCode && m_qtEvent->key() < Qt::Key_Escape) in disambiguateKeyDownEvent()
527 m_text.append(UChar(m_windowsVirtualKeyCode)); in disambiguateKeyDownEvent()
/external/webkit/WebCore/platform/
DPlatformKeyboardEvent.h96 String text() const { return m_text; } in text()
164 String m_text; variable
/external/webkit/WebCore/platform/mac/
DKeyEventMac.mm813 , m_text(textFromEvent(event))
828 m_text = "\r";
835 if (m_text == "\x7F")
836 m_text = "\x8";
841 m_text = "\x9";
856 m_text = String();
861 if (m_text.length() == 1 && (m_text[0U] >= 0xF700 && m_text[0U] <= 0xF7FF)) {
865 m_text = String();

12