HomeSort by relevance Sort by last modified time
    Searched refs:xmlNode (Results 1 - 25 of 32) 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...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/
UiElementPullParser.java 152 Node xmlNode = uiNode.getXmlNode();
154 if (xmlNode != null) {
155 return xmlNode.getAttributes().item(i);
364 Node xmlNode = uiNode.getXmlNode();
366 if (xmlNode != null) {
367 if (ATTR_LAYOUT.equals(localName) && VIEW_FRAGMENT.equals(xmlNode.getNodeName())) {
368 String layout = FragmentMenu.getFragmentLayout(xmlNode);
374 Node attribute = xmlNode.getAttributes().getNamedItemNS(namespace, localName);
381 attribute = xmlNode.getAttributes().getNamedItemNS(AUTO_URI, localName);
  /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 192 Node xmlNode = node.getXmlNode();
193 layout = LayoutMetadata.getProperty(xmlNode, KEY_LV_ITEM);
211 Node xmlNode = node.getXmlNode();
212 LayoutMetadata.setProperty(delegate.getEditor(), xmlNode, type, layout);
LayoutMetadata.java 330 Node xmlNode = uiNode.getXmlNode();
332 String header = getProperty(xmlNode, KEY_LV_HEADER);
333 String footer = getProperty(xmlNode, KEY_LV_FOOTER);
334 String layout = getProperty(xmlNode, KEY_LV_ITEM);
339 if (xmlNode instanceof Element && xmlNode.getNodeName().endsWith(GRID_VIEW)) {
340 Element element = (Element) xmlNode;
LintTooltipManager.java 162 for (Node xmlNode : xmlNodes) {
163 CanvasViewInfo v = viewHierarchy.findViewInfoFor(xmlNode);
FragmentMenu.java 244 Node xmlNode = node.getXmlNode();
245 LayoutMetadata.setProperty(delegate.getEditor(), xmlNode, KEY_FRAGMENT_LAYOUT,
SelectionManager.java 552 * @param xmlNode The Node whose element we want to select.
554 /* package */ void select(Node xmlNode) {
555 if (xmlNode == null) {
557 } else if (xmlNode.getNodeType() == Node.TEXT_NODE) {
558 xmlNode = xmlNode.getParentNode();
561 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 788 * @param xmlNode The XML node to look for.
789 * @return The {@link UiElementNode} that contains xmlNode or null if not found,
791 public UiElementNode findXmlNode(Node xmlNode) {
792 if (xmlNode == null) {
795 if (getXmlNode() == xmlNode) {
800 UiElementNode found = uiChild.findXmlNode(xmlNode);
830 * @param xmlNode The XML node to mirror
833 public boolean loadFromXmlNode(Node xmlNode)
    [all...]
  /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,
tree.h 444 * xmlNode:
448 typedef struct _xmlNode xmlNode;
449 typedef xmlNode *xmlNodePtr;
    [all...]
  /prebuilts/devtools/tools/lib/
manifest-merger.jar 
  /external/libxml2/
tree.c     [all...]
valid.c     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/refactoring/
VisualRefactoring.java 205 Node xmlNode = uiNode.getXmlNode();
206 if (xmlNode instanceof IndexedRegion) {
207 IndexedRegion region = (IndexedRegion) xmlNode;
678 Node xmlNode = uiNode.getXmlNode();
679 if (xmlNode instanceof Element) {
680 Element element = (Element) xmlNode;
    [all...]
ExtractIncludeRefactoring.java 161 Node xmlNode = uiNode.getXmlNode();
162 if (xmlNode.getLocalName().equals(VIEW_INCLUDE)) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/
AdtUtils.java 800 Node xmlNode = uiNode.getXmlNode();
801 Attr attribute = ((Element) xmlNode).getAttributeNodeNS(
    [all...]

Completed in 619 milliseconds

1 2