HomeSort by relevance Sort by last modified time
    Searched refs:xmlNode (Results 1 - 25 of 34) sorted by null

1 2

  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/values/uimodel/
UiItemElementNode.java 44 Node xmlNode = getXmlNode();
45 if (xmlNode != null && xmlNode instanceof Element && xmlNode.hasAttributes()) {
47 Element elem = (Element) xmlNode;
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ParseRDF.java 157 * @param xmlNode the currently processed XML node
161 private static void rdf_NodeElement(XMPMetaImpl xmp, XMPNode xmpParent, Node xmlNode,
164 int nodeTerm = getRDFTermKind (xmlNode);
176 rdf_NodeElementAttrs (xmp, xmpParent, xmlNode, isTopLevel);
177 rdf_PropertyElementList (xmp, xmpParent, xmlNode, isTopLevel);
200 * @param xmlNode the currently processed XML node
204 private static void rdf_NodeElementAttrs(XMPMetaImpl xmp, XMPNode xmpParent, Node xmlNode,
210 for (int i = 0; i < xmlNode.getAttributes().getLength(); i++)
212 Node attribute = xmlNode.getAttributes().item(i);
357 * @param xmlNode the currently processed XML nod
    [all...]
  /external/chromium/chrome/common/extensions/
update_manifest.cc 49 static bool TagNameEquals(const xmlNode* node, const char* expected_name,
58 static std::vector<xmlNode*> GetChildren(xmlNode* root, xmlNs* xml_namespace,
60 std::vector<xmlNode*> result;
61 for (xmlNode* child = root->children; child != NULL; child = child->next) {
71 static std::string GetAttribute(xmlNode* node, const char* attribute_name) {
112 static xmlNs* GetNamespace(xmlNode* node, const char* expected_href) {
126 static bool ParseSingleAppTag(xmlNode* app_node, xmlNs* xml_namespace,
137 std::vector<xmlNode*> updates = GetChildren(app_node, xml_namespace,
147 xmlNode *updatecheck = updates[0]
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/tree/
UiActions.java 279 Node xmlNode = uiNode.getXmlNode();
281 if (xmlNode == null || nodeDesc == null) {
308 xmlPrev.appendChild(xmlParent.removeChild(xmlNode));
309 outSelectXmlNode[0] = xmlNode;
317 xmlParent.removeChild(xmlNode),
319 outSelectXmlNode[0] = xmlNode;
341 xmlParent.removeChild(xmlNode),
343 outSelectXmlNode[0] = xmlNode;
461 Node xmlNode = uiNode.getXmlNode();
463 if (xmlNode == null || nodeDesc == null)
    [all...]
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/model/resources/
ResourceFile.java 168 Node xmlNode = xmlDocument.createElement(nodeToAdd.getNodeName());
180 xmlNode.appendChild(xmlDocument.createTextNode(asnrNode.getNodeValue()));
189 xmlNode.appendChild(xmlDocument.createTextNode(unknownNode.getNodeValue()));
196 NamedNodeMap xmlAttributes = xmlNode.getAttributes();
209 NamedNodeMap xmlAttributes = xmlNode.getAttributes();
222 addNode(xmlDocument, xmlNode, child);
228 addNode(xmlDocument, xmlNode, child);
233 xmlDocument.appendChild(xmlNode);
237 xmlParentNode.appendChild(xmlNode);
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/model/manifest/parser/
AndroidManifestParser.java 113 Node xmlNode;
193 xmlNode = xmlChildNodes.item(i);
195 if ((xmlNode instanceof Element) || (xmlNode instanceof Comment))
197 parseNode(xmlNode, amNode);
214 * @param xmlNode The XML Node
217 private NodeType identifyNode(Node xmlNode)
220 String nodeName = xmlNode.getNodeName();
223 if (xmlNode instanceof Comment)
  /sdk/manifmerger/src/com/android/manifmerger/
XmlUtils.java 179 * @param xmlNode Any node from a document returned by {@link #parseDocument(File, IMergerLog)}.
183 static String extractXmlFilename(@Nullable Node xmlNode) {
184 if (xmlNode != null && xmlNode.getNodeType() != Node.DOCUMENT_NODE) {
185 xmlNode = xmlNode.getOwnerDocument();
187 if (xmlNode != null) {
188 Object data = xmlNode.getUserData(DATA_ORIGIN_FILE);
192 data = xmlNode.getUserData(DATA_FILE_NAME);
236 * @param xmlNode Any node from a document returned by {@link #parseDocument(File, IMergerLog)}
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParser.java 155 Node xmlNode = uiNode.getXmlNode();
157 if (xmlNode != null) {
158 return xmlNode.getAttributes().item(i);
367 Node xmlNode = uiNode.getXmlNode();
369 if (xmlNode != null) {
370 if (ATTR_LAYOUT.equals(localName) && VIEW_FRAGMENT.equals(xmlNode.getNodeName())) {
371 String layout = FragmentMenu.getFragmentLayout(xmlNode);
377 Node attribute = xmlNode.getAttributes().getNamedItemNS(namespace, localName);
384 attribute = xmlNode.getAttributes().getNamedItemNS(AUTO_URI, localName);
  /tools/motodev/src/plugins/common/src/com/motorola/studio/android/model/manifest/
AndroidManifestFile.java 256 Node xmlNode;
261 xmlNode = xmlDocument.createComment(commentNode.getComment());
265 xmlNode = xmlDocument.createElement(nodeToAdd.getNodeName());
274 NamedNodeMap xmlAttributes = xmlNode.getAttributes();
287 NamedNodeMap xmlAttributes = xmlNode.getAttributes();
300 addNode(xmlDocument, xmlNode, child);
306 addNode(xmlDocument, xmlNode, child);
312 xmlDocument.appendChild(xmlNode);
316 xmlParentNode.appendChild(xmlNode);
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gre/
NodeProxy.java 309 Node xmlNode = uiNew.createXmlNode();
311 if (!(uiNew instanceof UiViewElementNode) || xmlNode == null) {
379 Node xmlNode = uiNode.getXmlNode();
380 if (xmlNode != null) {
381 NamedNodeMap nodeAttributes = xmlNode.getAttributes();
443 Node xmlNode = uiNode.getXmlNode();
444 if (xmlNode != null) {
445 NamedNodeMap nodeAttributes = xmlNode.getAttributes();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
ListViewTypeMenu.java 218 Node xmlNode = node.getXmlNode();
219 layout = LayoutMetadata.getProperty(xmlNode, KEY_LV_ITEM);
237 Node xmlNode = node.getXmlNode();
238 LayoutMetadata.setProperty(delegate.getEditor(), xmlNode, type, layout);
LayoutMetadata.java 382 Node xmlNode = uiNode.getXmlNode();
384 String header = getProperty(xmlNode, KEY_LV_HEADER);
385 String footer = getProperty(xmlNode, KEY_LV_FOOTER);
386 String layout = getProperty(xmlNode, KEY_LV_ITEM);
391 if (xmlNode instanceof Element && xmlNode.getNodeName().endsWith(GRID_VIEW)) {
392 Element element = (Element) xmlNode;
LintTooltipManager.java 162 for (Node xmlNode : xmlNodes) {
163 CanvasViewInfo v = viewHierarchy.findViewInfoFor(xmlNode);
FragmentMenu.java 250 Node xmlNode = node.getXmlNode();
251 LayoutMetadata.setProperty(delegate.getEditor(), xmlNode, KEY_FRAGMENT_LAYOUT,
SelectionManager.java 551 * @param xmlNode The Node whose element we want to select.
553 /* package */ void select(Node xmlNode) {
554 if (xmlNode == null) {
556 } else if (xmlNode.getNodeType() == Node.TEXT_NODE) {
557 xmlNode = xmlNode.getParentNode();
560 CanvasViewInfo vi = mCanvas.getViewHierarchy().findViewInfoFor(xmlNode);
    [all...]
LayoutCanvas.java     [all...]
OutlinePage.java 799 Node xmlNode = node.getXmlNode();
800 if (xmlNode instanceof Element) {
801 Element e = (Element) xmlNode;
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiElementNode.java 787 * @param xmlNode The XML node to look for.
788 * @return The {@link UiElementNode} that contains xmlNode or null if not found,
790 public UiElementNode findXmlNode(Node xmlNode) {
791 if (xmlNode == null) {
794 if (getXmlNode() == xmlNode) {
799 UiElementNode found = uiChild.findXmlNode(xmlNode);
829 * @param xmlNode The XML node to mirror
832 public boolean loadFromXmlNode(Node xmlNode) {
833 boolean structureChanged = (mXmlNode != xmlNode);
834 mXmlNode = xmlNode
    [all...]
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/model/resources/parser/
AbstractResourceFileParser.java 129 Node xmlNode;
160 xmlNode = xmlChildNodes.item(i);
161 parseNode(xmlNode, arNode);
201 * @param xmlNode The XML Node
204 private NodeType identifyNode(Element xmlNode)
206 String nodeName = xmlNode.getNodeName();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/
AndroidXmlEditor.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/uimodel/
UiViewElementNode.java 150 Node xmlNode = getXmlNode();
151 if (xmlNode instanceof Element) {
152 String className = ((Element) xmlNode).getAttribute(ATTR_CLASS);
  /external/chromium/chrome/browser/metrics/
metrics_service.h 43 // Forward declaration of the xmlNode to avoid having tons of gyp files
46 typedef struct _xmlNode xmlNode;
47 typedef xmlNode* xmlNodePtr;
  /external/libxml2/include/libxml/
valid.h 418 xmlValidGetValidElements(xmlNode *prev,
419 xmlNode *next,
  /external/libxml2/
tree.c     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java 206 Node xmlNode = uiNode.getXmlNode();
207 if (xmlNode instanceof IndexedRegion) {
208 IndexedRegion region = (IndexedRegion) xmlNode;
676 Node xmlNode = uiNode.getXmlNode();
677 if (xmlNode instanceof Element) {
678 Element element = (Element) xmlNode;
    [all...]

Completed in 666 milliseconds

1 2