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

1 2 3 4 5 67 8 91011>>

  /external/robolectric-shadows/robolectric/src/test/java/org/robolectric/android/
XmlResourceParserImplTest.java 28 import org.w3c.dom.Document;
52 event + ". End of document reached.");
64 Document document = documentBuilder.parse( local
67 parser = new XmlResourceParserImpl(document, "file", R.class.getPackage().getName(),
75 "Cannot forge a Document from an invalid XML",
486 fail("nextText on a document with no text should have failed");
  /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/android/
XmlResourceParserImpl.java 14 import org.w3c.dom.Document;
24 * initialise this object with a {@link Document}.
49 private final Document document; field in class:XmlResourceParserImpl
62 public XmlResourceParserImpl(Document document, String fileName, String packageName,
64 this.document = document;
381 // a document, since the standard XmlPullParser interface
413 // The end document event should have been filtere
    [all...]
  /frameworks/base/packages/MtpDocumentsProvider/tests/src/com/android/mtp/
MtpDocumentsProviderTest.java 25 import android.provider.DocumentsContract.Document;
330 DocumentsContract.Document.FLAG_SUPPORTS_DELETE |
331 DocumentsContract.Document.FLAG_SUPPORTS_WRITE |
332 DocumentsContract.Document.FLAG_SUPPORTS_THUMBNAIL |
333 DocumentsContract.Document.FLAG_SUPPORTS_METADATA,
362 assertEquals(DocumentsContract.Document.MIME_TYPE_DIR, cursor.getString(1));
366 DocumentsContract.Document.FLAG_SUPPORTS_DELETE |
367 DocumentsContract.Document.FLAG_DIR_SUPPORTS_CREATE,
389 assertEquals(DocumentsContract.Document.MIME_TYPE_DIR, cursor.getString(1));
392 assertEquals(DocumentsContract.Document.FLAG_DIR_SUPPORTS_CREATE, cursor.getInt(4))
1017 final HierarchyDocument document = ids.remove(); local
    [all...]
  /frameworks/data-binding/compilerCommon/src/main/xml-gen/android/databinding/parser/
XMLParser.java 27 "document", "prolog", "content", "element", "reference", "attribute",
121 public final DocumentContext document() throws RecognitionException { method in class:XMLParser
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/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...]
  /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...]
  /prebuilts/gdb/darwin-x86/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...]
  /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/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 89 import org.eclipse.wst.xml.core.internal.document.ElementImpl;
90 import org.eclipse.wst.xml.core.internal.provisional.document.IDOMModel;
92 import org.w3c.dom.Document;
359 Document document = domModel.getDocument(); local
360 Element root = document.getDocumentElement();
377 Text indentNode = document.createTextNode('\n' + indent);
379 Element element = document.createElement(tagName);
398 Node valueNode = document.createTextNode(value);
573 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...]
  /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();
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/25.4.0-alpha1/
manifest-merger-25.4.0-alpha1.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/25.4.0-alpha3/
manifest-merger-25.4.0-alpha3.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/25.4.0-alpha5/
manifest-merger-25.4.0-alpha5.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/25.4.0-alpha6/
manifest-merger-25.4.0-alpha6.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/25.4.0-alpha7/
manifest-merger-25.4.0-alpha7.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/25.5.0-alpha-preview-01/
manifest-merger-25.5.0-alpha-preview-01.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/25.3.0/
manifest-merger-25.3.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/build/manifest-merger/25.3.0-beta1/
manifest-merger-25.3.0-beta1.jar 

Completed in 1008 milliseconds

1 2 3 4 5 67 8 91011>>