OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:schemaNode
(Results
1 - 5
of
5
) sorted by null
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPUtilsImpl.java
454
XMPNode
schemaNode
= XMPNodeUtils.findSchemaNode(xmpImpl.getRoot(), schemaNS, false);
455
if (
schemaNode
!= null)
457
if (removeSchemaChildren(
schemaNode
, doAllProperties))
459
xmpImpl.getRoot().removeChild(
schemaNode
);
566
* @param
schemaNode
572
private static boolean removeSchemaChildren(XMPNode
schemaNode
, boolean doAllProperties)
574
for (Iterator it =
schemaNode
.iterateChildren(); it.hasNext();)
578
|| !Utils.isInternalProperty(
schemaNode
.getName(), currProp.getName()))
584
return !
schemaNode
.hasChildren();
[
all
...]
XMPNodeUtils.java
100
XMPNode
schemaNode
= tree.findChildByName(namespaceURI);
102
if (
schemaNode
== null && createNodes)
104
schemaNode
= new XMPNode(namespaceURI,
107
schemaNode
.setImplicit(true);
125
schemaNode
.setValue(prefix);
127
tree.addChild(
schemaNode
);
130
return
schemaNode
;
ParseRDF.java
1022
XMPNode
schemaNode
= XMPNodeUtils.findSchemaNode(xmp.getRoot(), namespace,
1024
schemaNode
.setImplicit(false); // Clear the implicit node bit.
1026
xmpParent =
schemaNode
;
1034
schemaNode
.setHasAliases(true);
[
all
...]
XMPSerializerRDF.java
789
* @param
schemaNode
a schema node
793
private void serializePrettyRDFSchema(XMPNode
schemaNode
) throws IOException, XMPException
803
declareUsedNamespaces(
schemaNode
, usedPrefixes, 4);
809
for (Iterator it =
schemaNode
.iterateChildren(); it.hasNext();)
[
all
...]
/external/chromium_org/chrome/renderer/resources/extensions/
binding.js
116
function isPlatformSupported(
schemaNode
, platform) {
117
return !
schemaNode
.platforms ||
118
schemaNode
.platforms.indexOf(platform) > -1;
121
function isManifestVersionSupported(
schemaNode
, manifestVersion) {
122
return !
schemaNode
.maximumManifestVersion ||
123
manifestVersion <=
schemaNode
.maximumManifestVersion;
126
function isSchemaNodeSupported(
schemaNode
, platform, manifestVersion) {
127
return isPlatformSupported(
schemaNode
, platform) &&
128
isManifestVersionSupported(
schemaNode
, manifestVersion);
Completed in 1214 milliseconds