/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/refactorings/core/ |
RefactoringTestBase.java | 33 import org.eclipse.jface.text.Document; 172 IDocument document = new Document(); local 173 document.replace(0, 0, before); 175 edit.copy().apply(document); 176 String after = document.get();
|
/sdk/eclipse/plugins/com.android.ide.eclipse.tests/src/com/android/ide/eclipse/adt/internal/editors/ |
AndroidContentAssistTest.java | 42 import org.eclipse.jface.text.Document; 529 // match - this verifies that the document is updated correctly, the 937 IDocument document = new Document(); local [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/ |
org.eclipse.jface.text_3.6.1.r361_v20100825-0800.jar | |
org.eclipse.core.filebuffers_3.5.100.v20100520-0800.jar | |
/external/chromium/chrome/browser/resources/bookmark_manager/js/ |
main.js | 22 document.documentElement.setAttribute('os', 'mac'); 38 i18nTemplate.process(document, data); 90 var splitter = document.querySelector('.main > .splitter'); 213 if (document.activeElement != input) 231 document.querySelector('button.logo').onclick = function(e) { 876 document.addEventListener('dragstart', this.handleDragStart.bind(this)); 877 document.addEventListener('dragenter', this.handleDragEnter.bind(this)); 878 document.addEventListener('dragover', this.handleDragOver.bind(this)); 879 document.addEventListener('dragleave', this.handleDragLeave.bind(this)); 880 document.addEventListener('drop', this.handleDrop.bind(this)) [all...] |
/external/chromium/third_party/libjingle/source/talk/base/ |
httpcommon.h | 95 HE_STREAM, // Problem reading or writing to the document 301 scoped_ptr<StreamInterface> document; member in struct:talk_base::HttpData 381 void setContent(const std::string& content_type, StreamInterface* document); 382 void setDocumentAndLength(StreamInterface* document); 422 void set_success(const std::string& content_type, StreamInterface* document,
|
/external/chromium_org/chrome/browser/resources/bookmark_manager/js/ |
main.js | 135 i18nTemplate.process(document, loadTimeData); 273 if (document.activeElement != input) 520 * Helper function for handling canExecute for the list and document. 652 var commands = document.querySelectorAll('command'); 781 return (opt_target || document.activeElement) == tree ? 900 if (document.activeElement == tree) 912 if (document.activeElement == tree) { 938 if (document.activeElement == tree) { 1065 if (document.activeElement == tree) [all...] |
/external/chromium_org/chrome/browser/resources/enhanced_bookmark_manager/js/ |
main.js | 135 i18nTemplate.process(document, loadTimeData); 270 if (document.activeElement != input) 507 * Helper function for handling canExecute for the list and document. 640 if (e.target == document.activeElement) { 781 return (opt_target || document.activeElement) == tree ? 900 if (document.activeElement == tree) 912 if (document.activeElement == tree) { 938 if (document.activeElement == tree) { 1065 if (document.activeElement == tree) [all...] |
/external/chromium_org/chrome/browser/resources/local_ntp/ |
local_ntp.js | 337 document.body.style.background = background; 338 document.body.classList.toggle(CLASSES.ALTERNATE_LOGO, info.alternateLogo); 353 var head = document.head; 382 customStyleElement = document.createElement('style'); 538 var tileElement = document.createElement('div'); 557 var titleElement = document.createElement('iframe'); 589 var thumbnailElement = document.createElement('iframe'); 809 document.body.classList.toggle(CLASSES.FAKEBOX_FOCUS, focus); 816 document.body.classList.toggle(CLASSES.FAKEBOX_DRAG_FOCUS, focus); 823 return document.body.classList.contains(CLASSES.FAKEBOX_FOCUS) | [all...] |
/external/chromium_org/content/renderer/ |
render_thread_impl.cc | 178 WebDocument document = webview->mainFrame()->document(); variable 182 if (document.isPluginDocument()) 184 GURL url(document.url()); [all...] |
/external/chromium_org/ppapi/native_client/tools/browser_tester/browserdata/ |
nacltest.js | 7 return document.getElementById(id); 15 var embed = document.createElement('embed'); 292 this.localOutput.appendChild(document.createElement('br')); 294 var mNode = document.createTextNode(text); 295 var div = document.createElement('div'); 314 this.localOutput = document.createElement('div'); 318 document.body.appendChild(this.localOutput);
|
/external/chromium_org/third_party/WebKit/Source/core/accessibility/ |
AXNodeObject.cpp | 742 // NOTE: It would be more accurate to ask the document whether setFocusedNode() would 1457 Document* AXNodeObject::document() const function in class:WebCore::AXNodeObject 1623 Document* document = this->document(); local [all...] |
AXObject.cpp | 78 { "document", DocumentRole }, 161 Document* doc = document(); 170 if (Document* document = this->document()) 171 document->updateLayoutIgnorePendingStylesheets(); 527 AXObjectCache* cache = node->document().axObjectCache(); 563 Document* doc = document(); 574 Document* AXObject::document() const function in class:WebCore::AXObject [all...] |
/external/chromium_org/third_party/WebKit/Source/core/editing/ |
EditingStyle.cpp | 146 static int legacyFontSizeFromCSSValue(Document*, CSSPrimitiveValue*, bool shouldUseFixedFontDefaultSize, LegacyFontSizeMode); 1394 Document* document = position.document(); local [all...] |
Editor.cpp | 194 // normally selectable to implement copy/paste (like divs, or a document body). 216 static HTMLImageElement* imageElementFromImageDocument(Document* document) 218 if (!document) 220 if (!document->isImageDocument()) 223 HTMLElement* body = document->body(); 237 if (imageElementFromImageDocument(m_frame.document())) 300 ASSERT(m_frame.document()); 301 TypingCommand::deleteKeyPressed(*m_frame.document(), canSmartCopyOrDelete() ? TypingCommand::SmartDelete : 0, granularity); 318 ASSERT(m_frame.document()); 957 Document* document = m_frame.document(); local [all...] |
htmlediting.cpp | 33 #include "core/dom/Document.h" 158 node->document().updateLayoutIgnorePendingStylesheets(); 526 // create(Document*, const Position&, const Position&); will use deprecatedEditingOffset 528 PassRefPtr<Range> createRange(Document& document, const VisiblePosition& start, const VisiblePosition& end, ExceptionState& exceptionState) 530 RefPtr<Range> selectedRange = Range::create(document); 813 PassRefPtr<HTMLElement> createDefaultParagraphElement(Document& document) 815 switch (document.frame()->editor().defaultParagraphSeparator()) { 817 return HTMLDivElement::create(document); 1055 Document& document = *p.document(); local [all...] |
markup.cpp | 125 void wrapWithStyleNode(StylePropertySet*, Document*, bool isBlock = false); 129 void appendStyleNodeOpenTag(StringBuilder&, StylePropertySet*, Document*, bool isBlock = false); 174 void StyledMarkupAccumulator::wrapWithStyleNode(StylePropertySet* style, Document* document, bool isBlock) 177 appendStyleNodeOpenTag(openTag, style, document, isBlock); 182 void StyledMarkupAccumulator::appendStyleNodeOpenTag(StringBuilder& out, StylePropertySet* style, Document* document, bool isBlock) 190 appendAttributeValue(out, style->asText(), document->isHTMLDocument()); 228 appendStyleNodeOpenTag(out, wrappingStyle->style(), &text->document()); 261 return plainText(Range::create(node->document(), start, end).get()) 751 Document& document = paragraph->document(); local 947 Document& document = contextElement->hasTagName(templateTag) ? contextElement->document().ensureTemplateDocument() : contextElement->document(); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorIndexedDBAgent.cpp | 38 #include "core/dom/Document.h" 571 static Document* assertDocument(ErrorString* errorString, Frame* frame) 573 Document* document = frame ? frame->document() : 0; local 575 if (!document) 576 *errorString = "No document for given frame found"; 578 return document; 581 static IDBFactory* assertIDBFactory(ErrorString* errorString, Document* document) 599 Document* document = assertDocument(errorString, frame); local 624 Document* document = assertDocument(errorString, frame); local 644 Document* document = assertDocument(errorString, frame); local 756 Document* document = assertDocument(errorString, frame); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/page/scrolling/ |
ScrollingCoordinator.cpp | 31 #include "core/dom/Document.h" 110 Settings* settings = m_page->mainFrame()->document()->settings(); 309 Settings* settings = m_page->mainFrame()->document()->settings(); 393 // Find the enclosing composited layer when it's in another document (for non-composited iframes). 560 void ScrollingCoordinator::touchEventTargetRectsDidChange(const Document*) 696 static void accumulateDocumentTouchEventTargetRects(LayerHitTestRects& rects, const Document* document) 698 ASSERT(document); 699 if (!document->touchEventTargets()) 702 const TouchEventTargetSet* targets = document->touchEventTargets() 746 Document* document = m_page->mainFrame()->document(); local [all...] |
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
RenderTheme.cpp | 29 #include "core/dom/Document.h" 747 Page* page = node->document().page(); 783 Document& document = node->document(); local 784 Frame* frame = document.frame(); 785 return node == document.focusedElement() && node->shouldHaveFocusAppearance() && frame && frame->selection().isFocusedAndActive(); [all...] |
/external/chromium_org/third_party/WebKit/Source/core/xml/ |
XMLHttpRequest.cpp | 198 Document* XMLHttpRequest::document() const function in class:WebCore::XMLHttpRequest 234 Document* XMLHttpRequest::responseXML(ExceptionState& exceptionState) 237 exceptionState.throwDOMException(InvalidStateError, "The value is only accessible if the object's 'responseType' is '' or 'document' (was '" + responseType() + "')."); 248 // If it is text/html, then the responseType of "document" must have been supplied explicitly. 254 DocumentInit init = DocumentInit::fromContext(document()->contextDocument(), m_url); 258 m_responseDocument = Document::create(init); 262 m_responseDocument->setContextFeatures(document()->contextFeatures()); 334 exceptionState.throwDOMException(InvalidAccessError, "Timeouts cannot be set for synchronous requests made from a document."); 352 exceptionState.throwDOMException(InvalidAccessError, "The response type can only be changed for asynchronous HTTP requests made from a document.") [all...] |
/external/chromium_org/third_party/WebKit/Source/web/ |
WebAXObject.cpp | 44 #include "core/dom/Document.h" 757 WebDocument WebAXObject::document() const function in class:blink::WebAXObject 762 Document* document = m_private->document(); 763 if (!document) 766 return WebDocument(document); 774 Document* document = m_private->document(); [all...] |
/external/chromium_org/third_party/WebKit/Source/web/tests/ |
WebViewTest.cpp | 52 #include "core/dom/Document.h" 318 EXPECT_TRUE(frame->frame()->document()->isHTMLDocument()); 320 WebCore::HTMLDocument* document = WebCore::toHTMLDocument(frame->frame()->document()); local 321 EXPECT_TRUE(document->hasFocus()); 324 EXPECT_FALSE(document->hasFocus()); 327 EXPECT_TRUE(document->hasFocus()); 330 EXPECT_FALSE(document->hasFocus()); 333 EXPECT_FALSE(document->hasFocus()); 397 EXPECT_TRUE(frame->frame()->document()->isHTMLDocument()) 1178 WebDocument document = webView->mainFrame()->document(); local 1189 WebDocument document = webViewImpl->mainFrame()->document(); local 1324 WebCore::Document* document = webViewImpl->mainFrameImpl()->frame()->document(); local [all...] |
/external/chromium_org/third_party/libjingle/source/talk/base/ |
httpcommon.h | 95 HE_STREAM, // Problem reading or writing to the document 301 scoped_ptr<StreamInterface> document; member in struct:talk_base::HttpData 381 void setContent(const std::string& content_type, StreamInterface* document); 382 void setDocumentAndLength(StreamInterface* document); 422 void set_success(const std::string& content_type, StreamInterface* document,
|
/libcore/luni/src/test/java/libcore/xml/ |
XsltXPathConformanceTestSuite.java | 52 import org.w3c.dom.Document; 144 * Returns a JUnit test suite for the tests described by the given document. 150 * Extract the tests from an XML document with the following structure: 164 Document document = DocumentBuilderFactory.newInstance() local 166 Element testSuiteElement = document.getDocumentElement(); 412 * @param actual an XML document whose root is a {@code <result>} element. 413 * @param expected a file containing an XML document fragment. 433 * <li>Files containing XML document fragments with multiple elements: 436 * <li>Files containing XML document fragments with no elements 502 Document document = (Document) node; local [all...] |