HomeSort by relevance Sort by last modified time
    Searched defs:document (Results 151 - 175 of 253) sorted by null

1 2 3 4 5 67 8 91011

  /external/webkit/Source/WebCore/editing/
EditingStyle.cpp 724 void EditingStyle::mergeTypingStyle(Document* document)
726 ASSERT(document);
728 RefPtr<EditingStyle> typingStyle = document->frame()->selection()->typingStyle();
805 Document* document = position.anchorNode() ? position.anchorNode()->document() : 0; local
806 if (!style || !style->style() || !document || !document->frame())
    [all...]
markup.cpp 129 void wrapWithStyleNode(CSSStyleDeclaration*, Document*, bool isBlock = false);
159 void StyledMarkupAccumulator::wrapWithStyleNode(CSSStyleDeclaration* style, Document* document, bool isBlock)
170 appendAttributeValue(openTag, style->cssText(), document->isHTMLDocument());
222 return plainText(Range::create(node->document(), start, end).get());
242 RefPtr<CSSRuleList> matchedRules = element->document()->styleSelector()->styleRulesForElement(element, authorOnly);
257 bool documentIsHTML = element->document()->isHTMLDocument();
531 Document* document = range->ownerDocument();
532 if (!document)
706 Document* document = paragraph->document(); local
773 Document* document = styleNode->document(); local
    [all...]
  /external/webkit/Source/WebCore/html/
HTMLElement.cpp 59 PassRefPtr<HTMLElement> HTMLElement::create(const QualifiedName& tagName, Document* document)
61 return adoptRef(new HTMLElement(tagName, document));
69 if (document()->isHTMLDocument() && !tagQName().hasPrefix())
109 Settings* settings = document()->settings();
329 RefPtr<Text> textNode = Text::create(element->document(), text);
343 Document* document = contextElement->document(); local
346 fragment = DocumentFragment::create(document);
    [all...]
  /external/webkit/Source/WebCore/inspector/
InspectorResourceAgent.cpp 39 #include "Document.h"
81 static const char document[] = "Document"; member in namespace:WebCore::ResourceType
157 *textEncodingName = frame->document()->inputEncoding();
186 CachedResource* cachedResource = frame->document()->cachedResourceLoader()->cachedResource(url);
357 type = ResourceType::document;
420 frameObject->setString("url", frame->document()->url().string());
434 const CachedResourceLoader::DocumentResourceMap& allResources = frame->document()->cachedResourceLoader()->allCachedResources();
  /external/webkit/Source/WebCore/page/
Chrome.cpp 26 #include "Document.h"
360 Document* document = result.innerNode()->document(); local
361 if (document && document->isDNSPrefetchEnabled())
DragController.cpp 34 #include "Document.h"
108 Document* document = context->ownerDocument(); local
109 ASSERT(document);
110 if (document && dragData->containsCompatibleContent()) {
118 RefPtr<HTMLAnchorElement> anchor = HTMLAnchorElement::create(document);
127 RefPtr<Node> anchorText = document->createTextNode(title);
130 RefPtr<DocumentFragment> fragment = document->createDocumentFragment();
149 // FIXME: This method is poorly named. We're just clearing the selection from the document this drag is exiting.
221 void DragController::mouseMovedIntoDocument(Document* newDocument
    [all...]
Frame.cpp 130 return ownerElement->document()->frame();
270 // Detach the document now, so any onUnload handlers get run - if
296 void Frame::setDocument(PassRefPtr<Document> newDoc)
314 // Update the cached 'document' property, which is now stale.
325 if (Document* doc = document())
547 Document* doc = document();
614 Document* doc = document();
1030 Document* document = this->document(); local
    [all...]
  /external/webkit/Source/WebCore/platform/graphics/gstreamer/
WebKitWebSourceGStreamer.cpp 23 #include "Document.h"
420 Document* document = priv->frame->document(); local
421 if (document)
422 request.setHTTPReferrer(document->documentURI());
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivateQt.cpp 210 // Grab the current document
211 Document* document = element->document(); local
212 if (!document)
213 document = element->ownerDocument();
216 Frame* frame = document ? document->frame() : 0;
231 QUrl documentUrl = QUrl(QString(document->documentURI()));
  /external/webkit/Source/WebCore/xml/
XMLHttpRequest.cpp 31 #include "Document.h"
205 Document* XMLHttpRequest::document() const function in class:WebCore::XMLHttpRequest
208 return static_cast<Document*>(scriptExecutionContext());
216 Settings* settings = document()->settings();
235 Document* XMLHttpRequest::responseXML(ExceptionCode& ec)
250 m_responseXML = Document::create(0, m_url);
253 m_responseXML->setSecurityOrigin(document()->securityOrigin());
306 else if (responseType == "document")
326 return "document";
    [all...]
  /external/webkit/Source/WebKit/chromium/src/
EditorClientImpl.cpp 30 #include "Document.h"
134 const Document* document = frame->document(); local
135 if (!document)
137 const Node* node = document->focusedNode();
571 Frame* frame = evt->target()->toNode()->document()->frame();
694 WebFrameImpl* webframe = WebFrameImpl::fromFrame(inputElement->document()->frame());
790 WebFrameImpl* webframe = WebFrameImpl::fromFrame(inputElement->document()->frame());
    [all...]
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
DumpRenderTreeSupportGtk.cpp 30 #include "Document.h"
127 Document* document = jsDocument->impl(); local
128 RefPtr<NodeList> nodes = document->nodesFromRect(x, y, top, right, bottom, left, ignoreClipping);
190 Element* documentElement = coreFrame->document()->documentElement();
231 Element* coreElement = coreFrame->document()->getElementById(AtomicString(id));
255 Element* coreElement = coreFrame->document()->getElementById(AtomicString(id));
314 return coreFrame->document()->isPageBoxVisible(pageNumber);
376 Element* coreElement = core(frame)->document()->getElementById(AtomicString(element));
385 Element* coreElement = core(frame)->document()->getElementById(AtomicString(element))
395 Document* document = core(frame)->document(); local
    [all...]
  /external/webkit/Source/WebKit/qt/Api/
qwebelement.cpp 30 #include "Document.h"
77 A QWebElement object allows easy access to the document model, represented
79 the document element and can be accessed using
88 The first list contains all \c span elements in the document. The second
95 Alternatively you can traverse the document manually using firstChild() and
294 formatted before insertion into the document.
317 document containing the element. This means the return value will obey XML
318 formatting rules, such as self-closing tags, only if the document is
334 into the document.
356 document containing the element. This means the return value will obey XM
691 QWebElement QWebElement::document() const function in class:QWebElement
    [all...]
  /libcore/luni/src/main/java/java/util/prefs/
XMLParser.java 39 import org.w3c.dom.Document;
332 // load XML document
333 Document doc = builder.parse(new InputSource(in));
452 Document document = builder.parse(new InputSource(reader)); local
453 NodeList entries = selectNodeList(document.getDocumentElement(), "entry");
  /libcore/luni/src/test/java/libcore/xml/
DomTest.java 47 import org.w3c.dom.Document;
98 private Document document; field in class:DomTest
133 document = builder.parse(new InputSource(new StringReader(xml)));
136 doctype = document.getDoctype();
144 // document nodes
145 menu = document.getDocumentElement();
177 allNodes.addAll(Arrays.asList(document, doctype, menu, item, itemXmlns,
208 assertEquals(null, document.lookupNamespaceURI("a"));
233 assertEquals(null, document.lookupNamespaceURI(null))
    [all...]
  /libcore/luni/src/test/java/tests/api/javax/xml/parsers/
DocumentBuilderFactoryTest.java 20 import org.w3c.dom.Document;
384 Document document = parser.parse(getClass().getResourceAsStream( local
389 goThroughDocument((Node) document, "");
412 Document document = parser.parse(getClass().getResourceAsStream( local
417 goThroughDocument((Node) document, "");
447 Document document = parser.parse(getClass().getResourceAsStream( local
452 assertNotNull(document);
470 Document document = parser.parse(getClass().getResourceAsStream( local
545 Document document = parser.parse(getClass().getResourceAsStream( local
568 Document document = parser.parse(getClass().getResourceAsStream( local
594 Document document = parser.parse(getClass().getResourceAsStream( local
613 Document document = parser.parse(getClass().getResourceAsStream( local
637 Document document = parser.parse(getClass().getResourceAsStream( local
656 Document document = parser.parse(getClass().getResourceAsStream( local
    [all...]
  /packages/apps/Mms/src/com/android/mms/model/
SmilHelper.java 83 SMILDocument document = null; local
85 // Try to load SMIL document from existing part.
87 document = getSmilDocument(smilPart);
90 if (document == null) {
91 // Create a new SMIL document.
92 document = createSmilDocument(pb);
95 return document;
135 Log.v(TAG, "Parsing SMIL document.");
140 SMILDocument document = new SmilXmlParser().parse(bais); local
141 return validate(document);
182 SMILDocument document = new SmilDocumentImpl(); local
263 SMILDocument document = new SmilDocumentImpl(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlPrettyPrinter.java 28 import org.eclipse.wst.xml.core.internal.document.DocumentTypeImpl;
29 import org.eclipse.wst.xml.core.internal.document.ElementImpl;
30 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMNode;
32 import org.w3c.dom.Document;
103 * Pretty-prints the given XML document, which must be well-formed. If it is not,
104 * the original unformatted XML document is returned
111 * @return the formatted document (or if a parsing error occurred, returns the
112 * unformatted document)
116 Document document = DomUtilities.parseStructuredDocument(xml) local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilities.java 36 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
39 import org.w3c.dom.Document;
89 * Returns all elements below the given node (which can be a document,
113 * Returns the depth of the given node (with the document node having depth 0,
114 * and the document element having depth 1)
117 * @return the depth in the document
148 * document.
150 * @param document The document to look in
154 public static Node getNode(IDocument document, int offset)
793 IStructuredDocument document = model.getStructuredDocument(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
ExtractStyleRefactoring.java 70 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMDocument;
71 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
476 IStructuredDocument document = model.getStructuredDocument(); local
477 indent = AndroidXmlEditor.getIndent(document, lastChild);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 71 import org.w3c.dom.Document;
186 Document document = null; local
194 document = builder.parse(is);
196 Element root = document.getDocumentElement();
198 NodeList activities = document.getElementsByTagName(NODE_ACTIVITY);
509 IDocument document = provider.getDocument(resource);
510 if (document != null) {
511 String matchText = document.get(match.getOffset(),
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
AndroidPackageRenameParticipant.java 64 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMDocument;
65 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
441 IDocument document; local
443 document = getDocument();
454 document = null;
460 model = StructuredModelManager.getModelManager().getExistingModelForRead(document);
462 if (document instanceof IStructuredDocument) {
463 IStructuredDocument structuredDocument = (IStructuredDocument) document;
494 * @param xmlDoc the document
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceHelper.java 83 import org.eclipse.wst.xml.core.internal.document.ElementImpl;
84 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
86 import org.w3c.dom.Document;
382 Document document = domModel.getDocument(); local
383 Element root = document.getDocumentElement();
400 Text indentNode = document.createTextNode('\n' + indent);
402 Element element = document.createElement(tagName);
421 Node valueNode = document.createTextNode(value);
576 Document document = builder.parse(is) local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
RefactoringTest.java 33 import org.eclipse.jface.text.Document;
44 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
107 IDocument document = new Document(); local
113 document.set(xml);
121 edits.apply(document);
123 edit.apply(document);
130 String actual = document.get();
132 // Ensure that the document is still valid to make sure the edits don't
134 org.w3c.dom.Document doc = DomUtilities.parseDocument(actual, true)
160 IDocument document = new Document(); local
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/
AndroidContentAssistTest.java 41 import org.eclipse.jface.text.Document;
485 // match - this verifies that the document is updated correctly, the
871 IDocument document = new Document(); local
    [all...]

Completed in 1442 milliseconds

1 2 3 4 5 67 8 91011