HomeSort by relevance Sort by last modified time
    Searched defs:TextEvent (Results 1 - 3 of 3) sorted by null

  /external/webkit/WebCore/dom/
TextEvent.cpp 28 #include "TextEvent.h"
34 TextEvent::TextEvent()
40 TextEvent::TextEvent(PassRefPtr<AbstractView> view, const String& data)
48 TextEvent::~TextEvent()
52 void TextEvent::initTextEvent(const AtomicString& type, bool canBubble, bool cancelable, PassRefPtr<AbstractView> view, const String& data)
62 bool TextEvent::isTextEvent() const
TextEvent.h 34 class TextEvent : public UIEvent {
36 static PassRefPtr<TextEvent> create()
38 return adoptRef(new TextEvent);
40 static PassRefPtr<TextEvent> create(PassRefPtr<AbstractView> view, const String& data)
42 return adoptRef(new TextEvent(view, data));
44 virtual ~TextEvent();
61 TextEvent();
62 TextEvent(PassRefPtr<AbstractView>, const String& data);
  /libcore/luni/src/main/java/org/apache/harmony/xml/
ExpatPullParser.java 663 static class TextEvent extends Event {
667 public TextEvent(int initialCapacity, int depth,
719 TextEvent textEvent = null;
794 if (textEvent != null) {
795 last.setNext(textEvent);
796 last = textEvent;
797 textEvent = null;
888 if (textEvent == null) {
889 textEvent = new TextEvent(length, this.depth
    [all...]

Completed in 73 milliseconds