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

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/components/autofill/content/browser/wallet/
wallet_client_unittest.cc 1090 base::DictionaryValue document; local
    [all...]
  /external/chromium_org/components/autofill/content/renderer/
form_autofill_util.cc 546 input_element->document().frame()->unmarkText();
684 bool ClickElement(const WebDocument& document,
692 element = document.querySelector(web_descriptor, ec);
698 element = document.getElementById(web_descriptor);
840 const WebFrame* frame = form_element.document().frame();
849 form->origin = frame->document().url();
850 form->action = frame->document().completeURL(form_element.action());
1111 blink::WebDocument document = frame->document(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLConstructionSite.cpp 255 task.child = Text::create(task.parent->document(), substring);
314 HTMLConstructionSite::HTMLConstructionSite(Document* document, ParserContentPolicy parserContentPolicy)
315 : m_document(document)
316 , m_attachmentRoot(document)
320 , m_inQuirksMode(document->inQuirksMode())
326 : m_document(&fragment->document())
331 , m_inQuirksMode(fragment->document().inQuirksMode())
342 // document and that we'll always queue some additional task to cause it to flush.
421 setCompatibilityMode(Document::QuirksMode)
735 Document& document = ownerDocumentForCurrentNode(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/shadow/
DateTimeEditElement.cpp 146 Document& document = m_editElement.document(); local
150 RefPtr<DateTimeFieldElement> field = DateTimeDayFieldElement::create(document, m_editElement, m_parameters.placeholderForDay, m_dayRange);
161 RefPtr<DateTimeFieldElement> field = DateTimeHour11FieldElement::create(document, m_editElement, m_hour23Range, step);
172 RefPtr<DateTimeFieldElement> field = DateTimeHour12FieldElement::create(document, m_editElement, m_hour23Range, step);
183 RefPtr<DateTimeFieldElement> field = DateTimeHour23FieldElement::create(document, m_editElement, m_hour23Range, step);
194 RefPtr<DateTimeFieldElement> field = DateTimeHour24FieldElement::create(document, m_editElement, m_hour23Range, step);
205 RefPtr<DateTimeNumericFieldElement> field = DateTimeMinuteFieldElement::create(document, m_editElement, m_minuteRange, step);
228 field = DateTimeSymbolicMonthFieldElement::create(document, m_editElement, fieldType == DateTimeFormat::FieldTypeMonth ? m_parameters.locale.shortMonthLabels (…)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/track/vtt/
VTTCue.cpp 127 VTTCueBox::VTTCueBox(Document& document, VTTCue* cue)
128 : HTMLDivElement(document)
202 VTTCue::VTTCue(Document& document, double startTime, double endTime, const String& text)
212 , m_cueBackgroundBox(HTMLDivElement::create(document))
236 m_displayTree = VTTCueBox::create(document(), this);
406 // Clear the document fragment but don't bother to create it again just yet as we can do that
416 m_vttNodeTree = VTTParser::createDocumentFragmentFromCueText(document(), m_text);
424 clonedNode = toVTTElement(node)->createEquivalentHTMLElement(document());
1104 Document& VTTCue::document() const function in class:WebCore::VTTCue
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/loader/
DocumentLoader.cpp 34 #include "core/dom/Document.h"
126 Document* DocumentLoader::document() const function in class:WebCore::DocumentLoader
129 return m_frame->document();
212 // one document at a time, but one document may have many related resources.
226 // Attempt to stop the frame if the document loader is loading, or if it is done loading but
228 Document* doc = m_frame->document();
244 // document and let the resourceLoaders send individual cancelled messages below
921 RefPtr<Document> document = frame->domWindow()->installNewDocument(mimeType, init); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/page/
DragController.cpp 34 #include "core/dom/Document.h"
159 Document& document = context->ownerDocument(); local
168 RefPtr<HTMLAnchorElement> anchor = HTMLAnchorElement::create(document);
177 RefPtr<Node> anchorText = document.createTextNode(title);
179 RefPtr<DocumentFragment> fragment = document.createDocumentFragment();
198 // FIXME: This method is poorly named. We're just clearing the selection from the document this drag is exiting.
273 void DragController::mouseMovedIntoDocument(Document* newDocument)
278 // If we were over another document clear the selection
313 // This can return null if an empty document is loaded
    [all...]
FocusController.cpp 33 #include "core/dom/Document.h"
85 if (Frame* frame = root->document().frame())
119 return FocusNavigationScope(frame->contentFrame()->document());
128 static inline void dispatchEventsOnWindowAndFocusedNode(Document* document, bool focused)
135 if (Page* page = document->page()) {
140 if (!focused && document->focusedElement()) {
141 RefPtr<Element> focusedElement(document->focusedElement());
143 if (focusedElement == document->focusedElement()) {
145 if (focusedElement == document->focusedElement()
335 Document* document = frame->document(); local
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderImage.cpp 68 RenderImage* RenderImage::createAnonymous(Document* document)
71 image->setDocumentForAnonymous(document);
183 if (!m_altText.isEmpty() && document().hasPendingStyleRecalc()) {
407 Document& document = this->document(); local
409 if (document.printing() || !document.frame()->selection().isFocusedAndActive())
415 Element* focusedElement = document.focusedElement()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/svg/
SVGElement.cpp 35 #include "core/dom/Document.h"
73 SVGElement::SVGElement(const QualifiedName& tagName, Document& document, ConstructionType constructionType)
74 : Element(tagName, &document, constructionType)
123 document().accessSVGExtensions()->rebuildAllElementReferencesForTarget(this);
124 document().accessSVGExtensions()->removeAllElementReferencesForTarget(this);
144 Document& document = this->document(); local
148 SVGDocumentExtensions* extensions = document.accessSVGExtensions()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/web/
FrameLoaderClientImpl.cpp 56 #include "core/dom/Document.h"
127 Document* document = m_webFrame->frame()->document(); local
128 if (document) {
129 WheelController::from(document);
131 DeviceMotionController::from(document);
133 DeviceOrientationController::from(document);
522 DocumentFullscreen::webkitCancelFullScreen(m_webFrame->frame()->document());
626 FrameLoadRequest frameRequest(m_webFrame->frame()->document(),
    [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 76 SMILDocument document = null; local
78 // Try to load SMIL document from existing part.
80 document = getSmilDocument(smilPart);
83 if (document == null) {
84 // Create a new SMIL document.
85 document = createSmilDocument(pb);
88 return document;
128 Log.v(TAG, "Parsing SMIL document.");
133 SMILDocument document = new SmilXmlParser().parse(bais); local
134 return validate(document);
175 SMILDocument document = new SmilDocumentImpl(); local
256 SMILDocument document = new SmilDocumentImpl(); local
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
Standard_Suite.py 405 Required argument: the object to save, usually a document or window
407 Keyword argument as: the file type of the document in which to save the data
501 """selection - the selection visible to the user. Use the \xd4select\xd5 command to set a new selection; use \xd4contents of selection\xd5 to get or change information in the document. """
523 """contents - the information currently selected. Use \xd4contents of selection\xd5 to get or change information in a document. """
573 class document(aetools.ComponentItem): class in inherits:aetools.ComponentItem
574 """document - A document of a scriptable application """
577 """modified - Has the document been modified since the last save? """
581 documents = document
630 document._superclassnames = [
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
DomUtilities.java 41 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
44 import org.w3c.dom.Document;
94 * Returns all elements below the given node (which can be a document,
119 * Returns the depth of the given node (with the document node having depth 0,
120 * and the document element having depth 1)
123 * @return the depth in the document
153 * Returns the DOM document for the given file
156 * @return the document, or null if not found or not parsed properly (no
160 public static Document getDocument(@NonNull IFile file) {
188 * Returns the DOM document for the given edito
819 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 74 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMDocument;
75 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
479 IStructuredDocument document = model.getStructuredDocument(); local
480 indent = AndroidXmlEditor.getIndent(document, lastChild);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/
ManifestInfo.java 74 import org.w3c.dom.Document;
210 Document document = null; local
218 document = builder.parse(is);
220 Element root = document.getDocumentElement();
222 NodeList activities = document.getElementsByTagName(NODE_ACTIVITY);
641 IDocument document = provider.getDocument(resource);
642 if (document != null) {
643 String matchText = document.get(match.getOffset(),
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
LintFixGenerator.java 173 IDocument document = sourceViewer.getDocument(); local
175 file, document, invocationContext.getOffset());
299 IStructuredDocument document = editor.getStructuredDocument(); local
300 fixes.get(0).apply(document);
356 public void apply(IDocument document) {
361 public Point getSelection(IDocument document) {
432 public void apply(IDocument document) {
437 public Point getSelection(IDocument document) {
535 public void apply(IDocument document) {
540 public Point getSelection(IDocument document) {
    [all...]
LintListDialog.java 252 IStructuredDocument document = editor.getStructuredDocument(); local
253 fix.apply(document);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/core/
AndroidTypeRenameParticipant.java 77 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
370 IStructuredDocument document = model.getStructuredDocument(); local
378 addManifestReplacements(edits, root, document);
380 addValueReplacements(edits, root, document);
383 addLayoutReplacements(edits, root, document);
416 @NonNull IStructuredDocument document) {
419 int start = RefactoringUtil.getTagNameRangeStart(element, document);
428 int start = RefactoringUtil.getAttributeValueRangeStart(classNode, document);
440 int start = RefactoringUtil.getAttributeValueRangeStart(classNode, document);
449 int start = RefactoringUtil.getAttributeValueRangeStart(classNode, document);
    [all...]
RenameResourceParticipant.java 79 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
505 IStructuredDocument document = model.getStructuredDocument(); local
511 addReplacements(edits, root, document, folderType);
543 @NonNull IStructuredDocument document,
558 int start = RefactoringUtil.getAttributeValueRangeStart(nameNode, document);
577 int start = RefactoringUtil.getAttributeValueRangeStart(attr, document);
615 int start = RefactoringUtil.getAttributeValueRangeStart(attr, document);
628 addReplacements(edits, (Element) child, document, folderType);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/resources/
ResourceHelper.java 90 import org.eclipse.wst.xml.core.internal.document.ElementImpl;
91 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
93 import org.w3c.dom.Document;
358 Document document = domModel.getDocument(); local
359 Element root = document.getDocumentElement();
376 Text indentNode = document.createTextNode('\n' + indent);
378 Element element = document.createElement(tagName);
397 Node valueNode = document.createTextNode(value);
572 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);
124 edits.apply(document);
126 edit.apply(document);
133 String actual = document.get();
135 // Ensure that the document is still valid to make sure the edits don't
137 org.w3c.dom.Document doc = DomUtilities.parseDocument(actual, true)
164 IDocument document = new Document(); local
    [all...]

Completed in 359 milliseconds

1 2 3 4 5 6 7 8 91011>>