Home
last modified time | relevance | path

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

/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/std/
DAsArraySerializerBase.java274 JsonNode schemaNode = null; in getSchema() local
276 schemaNode = ((SchemaAware) _elementSerializer).getSchema(provider, null); in getSchema()
278 if (schemaNode == null) { in getSchema()
279schemaNode = com.fasterxml.jackson.databind.jsonschema.JsonSchema.getDefaultSchemaNode(); in getSchema()
281 o.set("items", schemaNode); in getSchema()
/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()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/
DBeanPropertyWriter.java516 JsonNode schemaNode) { in _depositSchemaProperty() argument
517 propertiesNode.set(getName(), schemaNode); in _depositSchemaProperty() local
866 JsonNode schemaNode; in depositSchemaProperty() local
874 schemaNode = ((SchemaAware) ser).getSchema(provider, hint, in depositSchemaProperty()
877 schemaNode = com.fasterxml.jackson.databind.jsonschema.JsonSchema in depositSchemaProperty()
880 _depositSchemaProperty(propertiesNode, schemaNode); in depositSchemaProperty()
DDefaultSerializerProvider.java586 JsonNode schemaNode = (ser instanceof SchemaAware) ? in generateJsonSchema() local
588 if (!(schemaNode instanceof ObjectNode)) { in generateJsonSchema()
592 return new com.fasterxml.jackson.databind.jsonschema.JsonSchema((ObjectNode) schemaNode); in generateJsonSchema()
/external/jackson-databind/src/main/java/com/fasterxml/jackson/databind/ser/impl/
DUnwrappingBeanPropertyWriter.java181 protected void _depositSchemaProperty(ObjectNode propertiesNode, JsonNode schemaNode) in _depositSchemaProperty() argument
183 JsonNode props = schemaNode.get("properties"); in _depositSchemaProperty()