OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:xmlDoc
(Results
1 - 16
of
16
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/
AndroidDocumentChange.java
106
* @param
xmlDoc
the document
113
private Attr findAttribute(IDOMDocument
xmlDoc
, String element, String attributeName,
115
NodeList nodes =
xmlDoc
.getElementsByTagName(element);
139
* @param
xmlDoc
the document
145
protected String getElementAttribute(IDOMDocument
xmlDoc
, String element,
147
NodeList nodes =
xmlDoc
.getElementsByTagName(element);
201
IDOMDocument
xmlDoc
= xmlModel.getDocument();
202
return
xmlDoc
;
212
IDOMDocument
xmlDoc
= getDOMDocument();
213
mAppPackage = getElementAttribute(
xmlDoc
, AndroidManifest.NODE_MANIFEST
[
all
...]
AndroidLayoutChange.java
165
IDOMDocument
xmlDoc
= getDOMDocument();
167
NodeList nodes =
xmlDoc
.getElementsByTagName(className);
195
IDOMDocument
xmlDoc
= xmlModel.getDocument();
196
return
xmlDoc
;
235
IDOMDocument
xmlDoc
= getDOMDocument();
237
Attr attr = findAttribute(
xmlDoc
, elementName, argumentName, oldName);
251
* @param
xmlDoc
the document
258
private Attr findAttribute(IDOMDocument
xmlDoc
, String element, String attributeName,
260
NodeList nodes =
xmlDoc
.getElementsByTagName(element);
/external/webkit/LayoutTests/fast/dom/EntityReference/script-tests/
readonly-exceptions.js
3
var
xmlDoc
= document.implementation.createDocument("http://www.w3.org/1999/xhtml", "html", null);
5
var entityReference =
xmlDoc
.createEntityReference("gt");
8
shouldBe("entityReference.ownerDocument", "
xmlDoc
")
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/animator/
AnimationEditor.java
91
* @param
xmlDoc
The XML document, if available, or null if none exists.
94
protected void xmlModelChanged(Document
xmlDoc
) {
95
Element rootElement =
xmlDoc
.getDocumentElement();
121
mUiRootNode.setXmlDocument(
xmlDoc
);
127
mUiRootNode.loadFromXmlNode(
xmlDoc
);
132
super.xmlModelChanged(
xmlDoc
);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/drawable/
DrawableEditor.java
88
protected void xmlModelChanged(Document
xmlDoc
) {
89
Element rootElement =
xmlDoc
.getDocumentElement();
110
mUiRootNode.setXmlDocument(
xmlDoc
);
116
mUiRootNode.loadFromXmlNode(
xmlDoc
);
121
super.xmlModelChanged(
xmlDoc
);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/color/
ColorEditor.java
85
protected void xmlModelChanged(Document
xmlDoc
) {
89
Element rootElement =
xmlDoc
.getDocumentElement();
92
super.xmlModelChanged(
xmlDoc
);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/core/
AndroidTypeRenameParticipant.java
244
IDOMDocument
xmlDoc
= xmlModel.getDocument();
245
NodeList nodes =
xmlDoc
265
nodes =
xmlDoc
.getElementsByTagName(className);
331
IDOMDocument
xmlDoc
= xmlModel.getDocument();
332
add(
xmlDoc
, androidElements, AndroidManifest.NODE_ACTIVITY,
334
add(
xmlDoc
, androidElements, AndroidManifest.NODE_APPLICATION,
336
add(
xmlDoc
, androidElements, AndroidManifest.NODE_PROVIDER,
338
add(
xmlDoc
, androidElements, AndroidManifest.NODE_RECEIVER,
340
add(
xmlDoc
, androidElements, AndroidManifest.NODE_SERVICE,
355
* @param
xmlDoc
the documen
[
all
...]
AndroidPackageRenameParticipant.java
357
IDOMDocument
xmlDoc
= xmlModel.getDocument();
358
NodeList nodes =
xmlDoc
.getElementsByTagName(LayoutConstants.VIEW);
386
nodes =
xmlDoc
.getElementsByTagName(className);
470
IDOMDocument
xmlDoc
= xmlModel.getDocument();
471
add(
xmlDoc
, androidElements, AndroidManifest.NODE_ACTIVITY,
473
add(
xmlDoc
, androidElements, AndroidManifest.NODE_APPLICATION,
475
add(
xmlDoc
, androidElements, AndroidManifest.NODE_PROVIDER,
477
add(
xmlDoc
, androidElements, AndroidManifest.NODE_RECEIVER,
479
add(
xmlDoc
, androidElements, AndroidManifest.NODE_SERVICE,
494
* @param
xmlDoc
the documen
[
all
...]