Home
last modified time | relevance | path

Searched refs:schemaNode (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/extensions/renderer/resources/
Dbinding.js137 function isPlatformSupported(schemaNode, platform) { argument
138 return !schemaNode.platforms ||
139 $Array.indexOf(schemaNode.platforms, platform) > -1;
142 function isManifestVersionSupported(schemaNode, manifestVersion) { argument
143 return !schemaNode.maximumManifestVersion ||
144 manifestVersion <= schemaNode.maximumManifestVersion;
147 function isSchemaNodeSupported(schemaNode, platform, manifestVersion) { argument
148 return isPlatformSupported(schemaNode, platform) &&
149 isManifestVersionSupported(schemaNode, manifestVersion);
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DXMPNodeUtils.java100 XMPNode schemaNode = tree.findChildByName(namespaceURI); in findSchemaNode() local
102 if (schemaNode == null && createNodes) in findSchemaNode()
104 schemaNode = new XMPNode(namespaceURI, in findSchemaNode()
107 schemaNode.setImplicit(true); in findSchemaNode()
125 schemaNode.setValue(prefix); in findSchemaNode()
127 tree.addChild(schemaNode); in findSchemaNode()
130 return schemaNode; in findSchemaNode()
DXMPUtilsImpl.java454 XMPNode schemaNode = XMPNodeUtils.findSchemaNode(xmpImpl.getRoot(), schemaNS, false); in removeProperties() local
455 if (schemaNode != null) in removeProperties()
457 if (removeSchemaChildren(schemaNode, doAllProperties)) in removeProperties()
459 xmpImpl.getRoot().removeChild(schemaNode); in removeProperties()
572 private static boolean removeSchemaChildren(XMPNode schemaNode, boolean doAllProperties) in removeSchemaChildren() argument
574 for (Iterator it = schemaNode.iterateChildren(); it.hasNext();) in removeSchemaChildren()
578 || !Utils.isInternalProperty(schemaNode.getName(), currProp.getName())) in removeSchemaChildren()
584 return !schemaNode.hasChildren(); in removeSchemaChildren()
DParseRDF.java1022 XMPNode schemaNode = XMPNodeUtils.findSchemaNode(xmp.getRoot(), namespace, in addChildNode() local
1024 schemaNode.setImplicit(false); // Clear the implicit node bit. in addChildNode()
1026 xmpParent = schemaNode; in addChildNode()
1034 schemaNode.setHasAliases(true); in addChildNode()
DXMPSerializerRDF.java793 private void serializePrettyRDFSchema(XMPNode schemaNode) throws IOException, XMPException in serializePrettyRDFSchema() argument
803 declareUsedNamespaces(schemaNode, usedPrefixes, 4); in serializePrettyRDFSchema()
809 for (Iterator it = schemaNode.iterateChildren(); it.hasNext();) in serializePrettyRDFSchema()