OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:xml_node
(Results
1 - 3
of
3
) sorted by null
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiTextValueNode.java
54
Node
xml_node
= parent.getXmlNode();
local
55
if (
xml_node
!= null) {
56
for (Node xml_child =
xml_node
.getFirstChild();
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/manifest/pages/
ApplicationToggle.java
239
* Validates that the given
xml_node
is still either the root node or one of its
243
* @param
xml_node
The XML node to find.
244
* @return Returns
xml_node
if it is, otherwise returns null.
246
private Node validateNode(Node root_node, Node
xml_node
) {
247
if (root_node ==
xml_node
) {
248
return
xml_node
;
252
if (root_node ==
xml_node
|| validateNode(node,
xml_node
) != null) {
253
return
xml_node
;
267
Node
xml_node
= getUiElementNode().getXmlNode()
local
[
all
...]
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
CopyCutAction.java
122
Node
xml_node
= uiNode.getXmlNode();
local
123
if (
xml_node
== null) {
127
String data = getXmlTextFromEditor(
xml_node
);
133
data = getXmlTextFromSerialization(
xml_node
);
163
private String getXmlTextFromEditor(Node
xml_node
) {
168
if (
xml_node
instanceof NodeContainer) {
170
data = ((NodeContainer)
xml_node
).getSource();
171
} else if (
xml_node
instanceof IndexedRegion && sse_doc != null) {
173
IndexedRegion region = (IndexedRegion)
xml_node
;
196
private String getXmlTextFromSerialization(Node
xml_node
) throws IOException
[
all
...]
Completed in 89 milliseconds