HomeSort by relevance Sort by last modified time
    Searched refs:document (Results 226 - 250 of 3972) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/WebCore/html/shadow/
DetailsMarkerControl.cpp 42 DetailsMarkerControl::DetailsMarkerControl(Document* document)
43 : HTMLDivElement(divTag, document)
TextControlInnerElements.cpp 31 #include "Document.h"
50 TextControlInnerElement::TextControlInnerElement(Document* document, HTMLElement* shadowParent)
51 : HTMLDivElement(divTag, document)
58 return adoptRef(new TextControlInnerElement(shadowParent->document(), shadowParent));
99 inline TextControlInnerTextElement::TextControlInnerTextElement(Document* document, HTMLElement* shadowParent)
100 : TextControlInnerElement(document, shadowParent)
104 PassRefPtr<TextControlInnerTextElement> TextControlInnerTextElement::create(Document* document, HTMLElement* shadowParent
    [all...]
  /external/webkit/Source/WebCore/rendering/
ShadowElement.h 41 : BaseElement(name, shadowParent->document())
47 : BaseElement(name, shadowParent->document(), form, createdByParser)
  /external/webkit/Source/WebCore/svg/
SVGStyledLocatableElement.cpp 32 SVGStyledLocatableElement::SVGStyledLocatableElement(const QualifiedName& tagName, Document* document)
33 : SVGStyledElement(tagName, document)
  /external/webkit/Source/WebCore/wml/
WMLIntrinsicEvent.h 33 class Document;
37 static PassRefPtr<WMLIntrinsicEvent> create(Document* document, const String& targetURL)
39 return adoptRef(new WMLIntrinsicEvent(document, targetURL));
50 WMLIntrinsicEvent(Document*, const String& targetURL);
  /external/webkit/Source/WebKit2/WebProcess/FullScreen/
WebFullScreenManager.cpp 118 m_element->document()->webkitWillEnterFullScreenForElement(m_element.get());
119 m_element->document()->setFullScreenRendererBackgroundColor(Color::transparent);
125 m_element->document()->webkitDidEnterFullScreenForElement(m_element.get());
126 m_element->document()->setFullScreenRendererBackgroundColor(Color::black);
132 m_element->document()->webkitWillExitFullScreenForElement(m_element.get());
133 m_element->document()->setFullScreenRendererBackgroundColor(Color::transparent);
139 m_element->document()->webkitDidExitFullScreenForElement(m_element.get());
140 m_element->document()->setFullScreenRendererBackgroundColor(Color::black);
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
LeafNodeImpl.java 41 LeafNodeImpl(DocumentImpl document) {
42 super(document);
NotationImpl.java 40 NotationImpl(DocumentImpl document, String notationName, String publicID,
42 super(document);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/
AndroidTypeMoveChange.java 35 * @param document the document
41 IDocument document, Map<String, String> elements, String newName, String oldName) {
42 super(androidManifest, manager, document, elements, newName, oldName);
  /external/webkit/Source/WebCore/page/
FocusController.cpp 32 #include "Document.h"
65 static inline void dispatchEventsOnWindowAndFocusedNode(Document* document, bool focused)
72 if (Page* page = document->page()) {
77 if (!focused && document->focusedNode())
78 document->focusedNode()->dispatchBlurEvent();
79 document->dispatchWindowEvent(Event::create(focused ? eventNames().focusEvent : eventNames().blurEvent, false, false));
80 if (focused && document->focusedNode())
81 document->focusedNode()->dispatchFocusEvent();
108 oldFrame->document()->dispatchWindowEvent(Event::create(eventNames().blurEvent, false, false))
157 Document* document = owner->contentFrame()->document(); local
206 Document* document = frame->document(); local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLScriptElement.cpp 27 #include "Document.h"
39 inline HTMLScriptElement::HTMLScriptElement(const QualifiedName& tagName, Document* document, bool wasInsertedByParser, bool alreadyStarted)
40 : HTMLElement(tagName, document)
46 PassRefPtr<HTMLScriptElement> HTMLScriptElement::create(const QualifiedName& tagName, Document* document, bool wasInsertedByParser)
48 return adoptRef(new HTMLScriptElement(tagName, document, wasInsertedByParser, false));
90 Document* document = element->document();
    [all...]
HTMLDataGridElement.cpp 41 inline HTMLDataGridElement::HTMLDataGridElement(const QualifiedName& tagName, Document* document)
42 : HTMLElement(tagName, document)
48 PassRefPtr<HTMLDataGridElement> HTMLDataGridElement::create(const QualifiedName& tagName, Document* document)
50 return adoptRef(new HTMLDataGridElement(tagName, document));
HTMLFrameElement.cpp 37 inline HTMLFrameElement::HTMLFrameElement(const QualifiedName& tagName, Document* document)
38 : HTMLFrameElementBase(tagName, document)
46 PassRefPtr<HTMLFrameElement> HTMLFrameElement::create(const QualifiedName& tagName, Document* document)
48 return adoptRef(new HTMLFrameElement(tagName, document));
  /external/collada/include/dae/
daeDatabase.h 44 * Creates a new document, defining its root as the <tt><i>dom</i></tt> object; returns an error if the document name already exists.
45 * @param name Name of the new document, must be a valid URI.
46 * @param dom Existing @c domCOLLADA root element of the document
47 * @param document Pointer to a @c daeDocument pointer that receives the document created
48 * @param zaeRootDocument Indicates if the new document is the root document of a ZAE archive.
50 * @return Returns @c DAE_OK if the document was created successfully, otherwise returns a negative value as defined in daeError.h.
54 virtual daeInt insertDocument(daeString name, daeElement* dom, daeDocument** document = NULL, bool zaeRootDocument = false, const std::string& extractedFileURI = "") = 0
    [all...]
  /external/webkit/Source/WebCore/dom/
ScriptElement.cpp 30 #include "Document.h"
190 // FIXME: If script is parser inserted, verify it's still in the original document.
193 // viewless document but this'll do for now.
195 if (!m_element->document()->frame())
198 if (!m_element->document()->frame()->script()->canExecuteScripts(AboutToExecuteScript))
215 m_characterEncoding = m_element->document()->charset();
226 else if (!hasSourceAttribute() && m_parserInserted && !m_element->document()->haveStylesheetsLoaded()) {
231 m_element->document()->scriptRunner()->queueScriptForExecution(this, m_cachedScript, ScriptRunner::IN_ORDER_EXECUTION);
236 executeScript(ScriptSourceCode(scriptContent(), m_element->document()->url(), scriptStartPosition));
243 RefPtr<Document> originalDocument = m_element->document()
    [all...]
InputElement.cpp 37 #include "Document.h"
60 Document* document = element->document();
61 if (inputElement->isPasswordField() && document->frame())
62 document->setUseSecureKeyboardEntryWhenActive(true);
70 Document* document = element->document();
71 Frame* frame = document->frame()
91 Document* document = element->document(); local
250 Document* document = element->document(); local
    [all...]
  /build/tools/droiddoc/templates-pdk/
trailer.cs 5 var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
6 document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
  /build/tools/droiddoc/templates-sdk/
trailer.cs 5 var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
6 document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
  /external/chromium/chrome/common/extensions/docs/examples/api/infobars/sandwichbar/
contentscript.js 7 matches = document.body.innerText.match(regex);
  /external/webkit/LayoutTests/fast/events/touch/resources/
touch-stale-node-crash.js 0 document.ontouchstart = touchStartHandler;
6 document.body.removeChild(target);
  /external/webkit/LayoutTests/storage/resources/
database-common.js 14 document.getElementById("console").innerText += message + "\n";
27 document.getElementById("console").innerText = "";
  /external/webkit/Source/WebCore/bindings/js/
ScriptState.cpp 73 Document* document = node->document();
74 if (!document)
76 Frame* frame = document->frame();
  /external/webkit/Source/WebCore/css/
CSSCanvasValue.cpp 70 if (HTMLCanvasElement* elt = element(renderer->document()))
75 HTMLCanvasElement* CSSCanvasValue::element(Document* document)
78 m_element = document->getCSSCanvasElement(m_name);
89 HTMLCanvasElement* elt = element(renderer->document());
  /external/webkit/Source/WebCore/editing/
ModifySelectionListLevel.h 38 ModifySelectionListLevelCommand(Document*);
51 static bool canIncreaseSelectionListLevel(Document*);
52 static PassRefPtr<Node> increaseSelectionListLevel(Document*);
53 static PassRefPtr<Node> increaseSelectionListLevelOrdered(Document*);
54 static PassRefPtr<Node> increaseSelectionListLevelUnordered(Document*);
58 static PassRefPtr<Node> increaseSelectionListLevel(Document*, Type);
60 static PassRefPtr<IncreaseSelectionListLevelCommand> create(Document* document, Type type)
62 return adoptRef(new IncreaseSelectionListLevelCommand(document, type));
65 IncreaseSelectionListLevelCommand(Document*, Type)
    [all...]
RemoveFormatCommand.cpp 41 RemoveFormatCommand::RemoveFormatCommand(Document* document)
42 : CompositeEditCommand(document)
80 Frame* frame = document()->frame();
90 applyCommandToComposite(ApplyStyleCommand::create(document(), defaultStyle.get(), isElementForRemoveFormatCommand, editingAction()));

Completed in 486 milliseconds

1 2 3 4 5 6 7 8 91011>>