/external/webkit/Tools/Scripts/webkitpy/tool/commands/data/rebaselineserver/ |
util.js | 38 return document.getElementById(id); 64 var typeNode = document.createElement('span'); 70 node.appendChild(document.createTextNode(text + '\n'));
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/ |
XmlFormatProcessor.java | 50 IStructuredDocument document = structuredModel.getStructuredDocument(); local 52 context.setProperty(CONTEXT_MEDIUM, document); 56 formatter.formatMaster(context, document, start, length);
|
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/ |
AndroidLayoutChange.java | 40 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMAttr; 41 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMDocument; 42 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMElement; 43 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel; 74 * @param document the document 78 public AndroidLayoutChange(IFile file, IDocument document, ITextFileBufferManager manager, 80 super("", document); //$NON-NLS-1$ 82 mDocument = document; 86 this.mModel = getModel(document); [all...] |
/external/chromium/chrome/browser/history/ |
snippet.h | 49 // Given |matches|, the match positions within |document|, compute the snippet 50 // for the document. 51 // Note that |document| is UTF-8 and the offsets in |matches| are byte 54 const std::string& document);
|
/external/clang/tools/scan-build/ |
sorttable.js | 30 if (!document.createElement || !document.getElementsByTagName) return; 34 forEach(document.getElementsByTagName('table'), function(table) { 46 the = document.createElement('thead'); 68 tfo = document.createElement('tfoot'); 100 this.removeChild(document.getElementById('sorttable_sortfwdind')); 101 sortrevind = document.createElement('span'); 113 this.removeChild(document.getElementById('sorttable_sortrevind')); 114 sortfwdind = document.createElement('span'); 129 sortfwdind = document.getElementById('sorttable_sortfwdind') [all...] |
/external/webkit/LayoutTests/fast/dom/DeviceOrientation/script-tests/ |
multiple-frames.js | 36 var childFrame = document.createElement('iframe'); 37 document.body.appendChild(childFrame);
|
/external/webkit/LayoutTests/fast/dom/Geolocation/script-tests/ |
callback-to-deleted-context.js | 15 var iframe = document.createElement('iframe'); 17 document.body.appendChild(iframe);
|
disconnected-frame-already.js | 30 var iframe = document.createElement('iframe'); 32 document.body.appendChild(iframe);
|
disconnected-frame.js | 26 var iframe = document.createElement('iframe'); 28 document.body.appendChild(iframe);
|
/external/webkit/LayoutTests/storage/domstorage/events/script-tests/ |
documentURI.js | 35 evalAndLog("document.documentURI = 'abc'"); 36 shouldBeEqualToString("document.documentURI", "abc");
|
/external/webkit/Source/WebCore/accessibility/ |
AccessibilityScrollbar.h | 58 virtual Document* document() const;
|
/external/webkit/Source/WebCore/bindings/generic/ |
BindingSecurityBase.cpp | 47 return node->document()->frame(); 55 // is accessible by code from a different domain, but window.document is not. 68 // document.setDomain(...). In these cases, the binding code can reset
|
/external/webkit/Source/WebCore/bindings/gobject/ |
DOMObjectCache.cpp | 22 #include "Document.h" 48 WebCore::Document* document = node->document(); 49 if (!document) 51 return document->frame();
|
/external/webkit/Source/WebCore/bindings/js/ |
JSHTMLDataGridElementCustom.cpp | 32 #include "Document.h" 55 static_cast<HTMLDataGridElement*>(impl())->setDataSource(JSDataGridDataSource::create(value, impl()->document()->frame()));
|
JSLazyEventListener.cpp | 78 Document* document = static_cast<Document*>(executionContext); 80 if (!document->frame()) 83 if (!document->contentSecurityPolicy()->allowInlineEventHandlers()) 86 ScriptController* script = document->frame()->script(); 116 // (and the document, and the form - see JSHTMLElement::eventHandlerScope)
|
/external/webkit/Source/WebCore/dom/ |
CharacterData.cpp | 45 document()->textRemoved(this, 0, oldLength); 110 document()->textInserted(this, offset, data.length()); 130 document()->textRemoved(this, offset, realCount); 152 document()->textRemoved(this, offset, realCount); 153 document()->textInserted(this, offset, data.length()); 173 if (document()->frame()) 174 document()->frame()->selection()->textWillBeReplaced(this, offsetOfReplacedData, oldLength, newLength); 194 if (document()->hasListenerType(Document::DOMCHARACTERDATAMODIFIED_LISTENER)) 198 InspectorInstrumentation::characterDataModified(document(), this) [all...] |
/external/webkit/Source/WebCore/editing/ |
RemoveNodePreservingChildrenCommand.cpp | 35 : CompositeEditCommand(node->document())
|
SetNodeAttributeCommand.cpp | 36 : SimpleEditCommand(element->document())
|
TypingCommand.h | 60 static void deleteSelection(Document*, Options = 0); 61 static void deleteKeyPressed(Document*, Options = 0, TextGranularity = CharacterGranularity); 62 static void forwardDeleteKeyPressed(Document*, Options = 0, TextGranularity = CharacterGranularity); 63 static void insertText(Document*, const String&, Options, TextCompositionType = TextCompositionNone); 64 static void insertText(Document*, const String&, const VisibleSelection&, Options, TextCompositionType = TextCompositionNone); 65 static void insertLineBreak(Document*, Options); 66 static void insertParagraphSeparator(Document*, Options); 67 static void insertParagraphSeparatorInQuotedContent(Document*); 85 static PassRefPtr<TypingCommand> create(Document* document, ETypingCommand command, const String& text = "", Options options = 0, TextGranularity granularity (…) [all...] |
/external/webkit/Source/WebCore/html/ |
HTMLButtonElement.cpp | 43 inline HTMLButtonElement::HTMLButtonElement(const QualifiedName& tagName, Document* document, HTMLFormElement* form) 44 : HTMLFormControlElement(tagName, document, form) 51 PassRefPtr<HTMLButtonElement> HTMLButtonElement::create(const QualifiedName& tagName, Document* document, HTMLFormElement* form) 53 return adoptRef(new HTMLButtonElement(tagName, document, form));
|
HTMLDataGridColElement.cpp | 41 inline HTMLDataGridColElement::HTMLDataGridColElement(const QualifiedName& name, Document* document) 42 : HTMLElement(name, document) 47 PassRefPtr<HTMLDataGridColElement> HTMLDataGridColElement::create(const QualifiedName& name, Document* document) 49 return adoptRef(new HTMLDataGridColElement(name, document));
|
HTMLDetailsElement.h | 30 static PassRefPtr<HTMLDetailsElement> create(const QualifiedName& tagName, Document* document); 40 HTMLDetailsElement(const QualifiedName&, Document*);
|
HTMLFontElement.cpp | 38 HTMLFontElement::HTMLFontElement(const QualifiedName& tagName, Document* document) 39 : HTMLElement(tagName, document) 44 PassRefPtr<HTMLFontElement> HTMLFontElement::create(const QualifiedName& tagName, Document* document) 46 return adoptRef(new HTMLFontElement(tagName, document));
|
HTMLPlugInElement.cpp | 30 #include "Document.h" 50 HTMLPlugInElement::HTMLPlugInElement(const QualifiedName& tagName, Document* doc) 77 if (Frame* frame = document()->frame()) 87 Frame* frame = document()->frame(); 179 ASSERT(document()->frame()); 181 m_NPObject = document()->frame()->script()->createScriptObjectForPluginElement(this);
|
HTMLStyleElement.h | 35 static PassRefPtr<HTMLStyleElement> create(const QualifiedName&, Document*, bool createdByParser); 46 HTMLStyleElement(const QualifiedName&, Document*, bool createdByParser); 57 virtual bool sheetLoaded() { return StyleElement::sheetLoaded(document()); }
|