OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:arrayNode
(Results
1 - 6
of
6
) sorted by null
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPNodeUtils.java
555
* @param
arrayNode
an array node
561
private static int findIndexedItem(XMPNode
arrayNode
, String segment, boolean createNodes)
581
if (createNodes && index ==
arrayNode
.getChildrenLength() + 1)
586
arrayNode
.addChild(newItem);
598
* @param
arrayNode
604
private static int lookupFieldSelector(XMPNode
arrayNode
, String fieldName, String fieldValue)
609
for (int index = 1; index <=
arrayNode
.getChildrenLength() && result < 0; index++)
611
XMPNode currItem =
arrayNode
.getChild(index);
644
* @param
arrayNode
an array node
652
private static int lookupQualSelector(XMPNode
arrayNode
, String qualName,
[
all
...]
XMPMetaImpl.java
115
XMPNode
arrayNode
= XMPNodeUtils.findNode(tree, arrayPath, false, null);
117
if (
arrayNode
!= null)
121
if (!
arrayNode
.getOptions().isArray())
125
// if (arrayOptions != null && !arrayOptions.equalArrayTypes(
arrayNode
.getOptions()))
135
arrayNode
= XMPNodeUtils.findNode(tree, arrayPath, true, arrayOptions);
136
if (
arrayNode
== null)
149
doSetArrayItem(
arrayNode
, ARRAY_LAST_ITEM, itemValue, itemOptions, true);
173
XMPNode
arrayNode
= XMPNodeUtils.findNode(tree, arrayPath, false, null);
175
if (
arrayNode
== null)
180
if (
arrayNode
.getOptions().isArray()
[
all
...]
XMPUtilsImpl.java
99
XMPNode
arrayNode
= null;
105
arrayNode
= XMPNodeUtils.findNode(xmpImpl.getRoot(), arrayPath, false, null);
106
if (
arrayNode
== null)
110
else if (!
arrayNode
.getOptions().isArray() ||
arrayNode
.getOptions().isArrayAlternate())
126
for (Iterator it =
arrayNode
.iterateChildren(); it.hasNext();)
183
XMPNode
arrayNode
= separateFindCreateArray(schemaNS, arrayName, arrayOptions, xmpImpl);
315
for (int oldChild = 1; oldChild <=
arrayNode
.getChildrenLength(); oldChild++)
317
if (itemValue.equals(
arrayNode
.getChild(oldChild).getValue()))
328
arrayNode
.addChild(newItem)
[
all
...]
XMPNormalizer.java
145
XMPNode
arrayNode
= XMPNodeUtils.findChildNode(currSchema, "exif:UserComment",
147
if (
arrayNode
!= null)
149
repairAltText(
arrayNode
);
165
XMPNode
arrayNode
= XMPNodeUtils.findChildNode(currSchema, "xmpRights:UsageTerms",
167
if (
arrayNode
!= null)
169
repairAltText(
arrayNode
);
239
* @param
arrayNode
the property node of the array to repair.
242
private static void repairAltText(XMPNode
arrayNode
) throws XMPException
244
if (
arrayNode
== null ||
245
!
arrayNode
.getOptions().isArray()
[
all
...]
XMPSerializerRDF.java
1138
* @param
arrayNode
an array node
1143
private void emitRDFArrayTag(XMPNode
arrayNode
, boolean isStartTag, int indent)
1146
if (isStartTag ||
arrayNode
.hasChildren())
1151
if (
arrayNode
.getOptions().isArrayAlternate())
1155
else if (
arrayNode
.getOptions().isArrayOrdered())
1164
if (isStartTag && !
arrayNode
.hasChildren())
[
all
...]
/external/v8/src/inspector/build/closure-compiler/
closure-compiler.jar
Completed in 80 milliseconds