/external/webkit/Source/WebCore/editing/ |
D | SplitTextNodeContainingElementCommand.cpp | 37 : 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()
|
D | InsertIntoTextNodeCommand.cpp | 38 , m_text(text) in InsertIntoTextNodeCommand() 42 ASSERT(!m_text.isEmpty()); in InsertIntoTextNodeCommand() 51 m_node->insertData(m_offset, m_text, ec); in doApply() 54 …xtChangeNotification(m_node->renderer(), AXObjectCache::AXTextInserted, m_offset, m_text.length()); in doApply() 64 …extChangeNotification(m_node->renderer(), AXObjectCache::AXTextDeleted, m_offset, m_text.length()); in doUnapply() 67 m_node->deleteData(m_offset, m_text.length(), ec); in doUnapply()
|
D | DeleteFromTextNodeCommand.cpp | 53 m_text = m_node->substringData(m_offset, m_count, ec); in doApply() 72 m_node->insertData(m_offset, m_text, ec); in doUnapply()
|
/external/emma/core/java12/com/vladium/emma/report/html/doc/ |
D | Text.java | 24 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
|
D | TextContent.java | 22 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/Source/WebCore/platform/chromium/ |
D | PlatformKeyboardEventChromium.cpp | 58 m_text = String(); in disambiguateKeyDownEvent() 64 if (m_text.length() == 1 && (m_text[0U] >= 0xF700 && m_text[0U] <= 0xF7FF)) { in disambiguateKeyDownEvent() 68 m_text = String(); in disambiguateKeyDownEvent()
|
/external/webkit/Source/WebCore/platform/iphone/ |
D | KeyEventIPhone.mm | 53 , m_text(event.characters) 69 m_text = "\r"; 76 if (m_text == "\x7F") 77 m_text = "\x8"; 82 m_text = "\x9"; 97 m_text = String(); 102 if (m_text.length() == 1 && (m_text[0U] >= 0xF700 && m_text[0U] <= 0xF7FF)) { 106 m_text = String();
|
/external/webkit/Source/WebCore/platform/text/ |
D | TextStream.cpp | 88 size_t textLength = m_text.size(); in operator <<() 91 m_text.grow(textLength + stringLength); in operator <<() 93 m_text[textLength + i] = string[i]; in operator <<() 106 append(m_text, string); in operator <<() 112 return String::adopt(m_text); in release()
|
/external/webkit/Source/WebCore/platform/android/ |
D | KeyEventAndroid.cpp | 216 , 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() 273 m_text = String(); in disambiguateKeyDownEvent()
|
/external/webkit/Source/WebCore/dom/ |
D | BeforeTextInsertedEvent.h | 44 const String& text() const { return m_text; } in text() 45 void setText(const String& s) { m_text = s; } in setText() 50 String m_text; variable
|
/external/webkit/Source/WebCore/platform/gtk/ |
D | DataObjectGtk.cpp | 39 return m_text; in text() 52 m_text = newText; in setText() 53 replaceNonBreakingSpaceWithSpace(m_text); in setText() 126 m_text = ""; in clearText() 148 m_text = ""; in clear()
|
D | DataObjectGtk.h | 47 bool hasText() { return m_range || !m_text.isEmpty(); } in hasText() 71 String m_text;
|
/external/webkit/Tools/android/webkitmerge/ |
D | webkitmerge.cpp | 275 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/Source/WebKit2/Shared/ |
D | WebKeyboardEvent.cpp | 35 , m_text(text) in WebKeyboardEvent() 52 …encoder->encode(CoreIPC::In(m_text, m_unmodifiedText, m_keyIdentifier, m_windowsVirtualKeyCode, m_… in encode() 61 …if (!decoder->decode(CoreIPC::Out(t.m_text, t.m_unmodifiedText, t.m_keyIdentifier, t.m_windowsVirt… in decode()
|
D | WebPopupItem.cpp | 56 , m_text(text) in WebPopupItem() 68 …encoder->encode(CoreIPC::In(static_cast<uint32_t>(m_type), m_text, static_cast<uint64_t>(m_textDir… in encode()
|
/external/webkit/Source/WebCore/rendering/style/ |
D | ContentData.h | 76 return m_content.m_text; in text() 82 m_content.m_text = text.leakRef(); in setText() 118 StringImpl* m_text; member
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderText.cpp | 98 , m_text(str) in RenderText() 107 , m_isAllASCII(m_text.containsOnlyASCII()) in RenderText() 111 ASSERT(m_text); in RenderText() 592 ASSERT(m_text); in widthFromCache() 593 StringImpl& text = *m_text.impl(); in widthFromCache() 658 ASSERT(m_text); in trimmedPrefWidths() 659 StringImpl& text = *m_text.impl(); in trimmedPrefWidths() 943 ASSERT(m_text); in containsOnlyWhitespace() 944 StringImpl& text = *m_text.impl(); in containsOnlyWhitespace() 1127 m_text = text; in setTextInternal() [all …]
|
D | RenderText.h | 53 StringImpl* text() const { return m_text.impl(); } in text() 70 const UChar* characters() const { return m_text.characters(); } in characters() 71 … unsigned textLength() const { return m_text.length(); } // non virtual implementation of length() in textLength() 164 String m_text; variable
|
D | RenderListMarker.cpp | 1253 if (m_text.isEmpty()) in paint() 1256 TextRun textRun(m_text); in paint() 1275 bool textNeedsReversing = direction(m_text[0]) == RightToLeft; in paint() 1278 int length = m_text.length(); in paint() 1281 reversedText[length - i - 1] = m_text[i]; in paint() 1346 m_text = ""; in computePreferredLogicalWidths() 1370 m_text = listMarkerText(type, m_listItem->value()); in computePreferredLogicalWidths() 1371 logicalWidth = font.width(m_text); // no suffix for these types in computePreferredLogicalWidths() 1376 m_text = listMarkerText(type, 0); // value is ignored for these types in computePreferredLogicalWidths() 1454 m_text = listMarkerText(type, m_listItem->value()); in computePreferredLogicalWidths() [all …]
|
D | RenderListMarker.h | 43 const String& text() const { return m_text; } in text() 79 String m_text; variable
|
/external/webkit/Source/WebCore/platform/wx/ |
D | KeyboardEventWx.cpp | 356 m_text = "\r"; in PlatformKeyboardEvent() 358 m_text = wxString(event.GetUnicodeKey()); in PlatformKeyboardEvent() 359 m_unmodifiedText = m_text; in PlatformKeyboardEvent() 377 m_text = String(); in disambiguateKeyDownEvent()
|
/external/webkit/Source/WebCore/platform/mac/ |
D | KeyEventMac.mm | 193 , m_text(textFromEvent(event)) 208 m_text = "\r"; 214 m_text = "\x8"; 220 m_text = "\x9"; 235 m_text = String(); 240 if (m_text.length() == 1 && (m_text[0U] >= 0xF700 && m_text[0U] <= 0xF7FF)) { 244 m_text = String();
|
/external/webkit/Source/WebKit/wx/ |
D | WebFrame.h | 70 wxString GetText() const { return m_text; } in GetText() 71 void SetText(const wxString& text) { m_text = text; } in SetText() 90 wxString m_text; variable
|
/external/webkit/Source/WebCore/platform/efl/ |
D | PlatformKeyboardEventEfl.cpp | 193 , m_text(String::fromUTF8(event->string)) in PlatformKeyboardEvent() 210 , m_text(String::fromUTF8(event->string)) in PlatformKeyboardEvent() 231 m_text = String(); in disambiguateKeyDownEvent()
|
/external/webkit/Source/WebCore/platform/qt/ |
D | PlatformKeyboardEventQt.cpp | 585 m_text = event->text(); in PlatformKeyboardEvent() 606 m_text = String(); in disambiguateKeyDownEvent() 615 …if (m_text.isEmpty() && m_windowsVirtualKeyCode && isVirtualKeyCodeRepresentingCharacter(m_windows… in disambiguateKeyDownEvent() 616 m_text.append(UChar(m_windowsVirtualKeyCode)); in disambiguateKeyDownEvent()
|