OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:currChild
(Results
1 - 4
of
4
) sorted by null
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPNormalizer.java
256
XMPNode
currChild
= (XMPNode) it.next();
257
if (
currChild
.getOptions().isCompositeProperty())
262
else if (!
currChild
.getOptions().getHasLanguage())
264
String childValue =
currChild
.getValue();
274
currChild
.addQualifier(repairLang);
ParseRDF.java
285
Node
currChild
= xmlParent.getChildNodes().item(i);
286
if (isWhitespaceNode(
currChild
))
290
else if (
currChild
.getNodeType() != Node.ELEMENT_NODE)
296
rdf_PropertyElement(xmp, xmpParent,
currChild
, isTopLevel);
452
Node
currChild
= xmlNode.getChildNodes().item(i);
453
if (
currChild
.getNodeType() != Node.TEXT_NODE)
526
Node
currChild
= null;
531
currChild
= xmlNode.getChildNodes().item(i);
532
if (!isWhitespaceNode(
currChild
))
534
if (
currChild
.getNodeType() == Node.ELEMENT_NODE && !found
[
all
...]
/external/chromium_org/third_party/WebKit/Source/core/rendering/
RenderInline.cpp
377
RenderBoxModelObject*
currChild
= this;
402
// *after*
currChild
and append them all to the clone.
403
o =
currChild
->nextSibling();
413
currChild
= curr;
421
// Now take all the children after
currChild
and remove them from the fromBlock
423
o =
currChild
->nextSibling();
[
all
...]
RenderBlock.cpp
534
RenderBoxModelObject*
currChild
= this;
535
RenderObject* currChildNextSibling =
currChild
->nextSibling();
560
// *after*
currChild
and append them all to the clone.
564
currChild
= curr;
565
currChildNextSibling =
currChild
->nextSibling();
572
// Now take all the children after
currChild
and remove them from the fromBlock
[
all
...]
Completed in 340 milliseconds