HomeSort by relevance Sort by last modified time
    Searched refs:xml_node (Results 1 - 8 of 8) sorted by null

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiDocumentNode.java 91 * @param xml_node The XML node to mirror
95 public boolean loadFromXmlNode(Node xml_node) {
96 boolean structure_changed = (getXmlDocument() != xml_node);
97 setXmlDocument((Document) xml_node);
98 structure_changed |= super.loadFromXmlNode(xml_node);
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/ui/tree/
PasteAction.java 82 Node xml_node = mUiNode.getUiChildren().get(0).getXmlNode();
84 if (xml_node instanceof IndexedRegion) {
85 IndexedRegion region = (IndexedRegion) xml_node;
93 Node xml_node = mUiNode.getXmlNode();
94 if (xml_node instanceof NodeContainer) {
95 NodeContainer container = (NodeContainer) xml_node;
111 Node xml_node = mUiNode.getXmlNode();
112 if (xml_node instanceof IndexedRegion) {
113 IndexedRegion region = (IndexedRegion) xml_node;
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...]
  /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...]
  /external/chromium-trace/catapult/devil/devil/android/
app_ui.py 28 def __init__(self, device, xml_node, package=None):
37 xml_node: An ElementTree instance of the node to interact with.
41 self._xml_node = xml_node
202 xml_node = element_tree.fromstring(
204 return _UiNode(self._device, xml_node, package=self._package)
  /external/libmojo/third_party/catapult/devil/devil/android/
app_ui.py 28 def __init__(self, device, xml_node, package=None):
37 xml_node: An ElementTree instance of the node to interact with.
41 self._xml_node = xml_node
202 xml_node = element_tree.fromstring(
204 return _UiNode(self._device, xml_node, package=self._package)
  /external/wpa_supplicant_8/src/utils/
xml-utils.h 13 typedef struct xml_node xml_node_t;

Completed in 258 milliseconds