Searched refs:leftNode (Results 1 – 7 of 7) sorted by relevance
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/ |
D | XMPUtilsImpl.java | 744 private static boolean itemValuesMatch(XMPNode leftNode, XMPNode rightNode) throws XMPException in itemValuesMatch() argument 746 PropertyOptions leftForm = leftNode.getOptions(); in itemValuesMatch() 757 if (!leftNode.getValue().equals(rightNode.getValue())) in itemValuesMatch() 761 if (leftNode.getOptions().getHasLanguage() != rightNode.getOptions().getHasLanguage()) in itemValuesMatch() 765 if (leftNode.getOptions().getHasLanguage() in itemValuesMatch() 766 && !leftNode.getQualifier(1).getValue().equals( in itemValuesMatch() 776 if (leftNode.getChildrenLength() != rightNode.getChildrenLength()) in itemValuesMatch() 781 for (Iterator it = leftNode.iterateChildren(); it.hasNext();) in itemValuesMatch() 801 for (Iterator il = leftNode.iterateChildren(); il.hasNext();) in itemValuesMatch()
|
/external/apache-commons-compress/src/main/java/org/apache/commons/compress/compressors/deflate64/ |
D | HuffmanDecoder.java | 364 node = bit == 0 ? node.leftNode : node.rightNode; in nextSymbol() 412 BinaryTreeNode leftNode; field in HuffmanDecoder.BinaryTreeNode 421 leftNode = null; in leaf() 426 if (leftNode == null && literal == -1) { in left() 427 leftNode = new BinaryTreeNode(bits + 1); in left() 429 return leftNode; in left()
|
/external/angle/src/compiler/translator/tree_ops/d3d/ |
D | RewriteExpressionsWithShaderStorageBlock.cpp | 224 TIntermTyped *leftNode = node->getLeft(); in visitBinary() local 232 leftNode = insertInitStatementAndReturnTempSymbol(node->getLeft(), &insertions); in visitBinary() 237 new TIntermBinary(node->getOp(), leftNode->deepCopy(), rightNode->deepCopy()); in visitBinary()
|
/external/angle/src/compiler/translator/TranslatorMetalDirect/ |
D | RewriteUnaddressableReferences.cpp | 339 TIntermTyped &leftNode = *binaryNode.getLeft(); in visitBinaryPre() local 342 TIntermTyped &newLeft = traverse(leftNode, disableLeft); in visitBinaryPre() 347 if (&leftNode == &newLeft && &rightNode == &newRight) in visitBinaryPre()
|
D | EmitMetal.cpp | 1477 TIntermTyped &leftNode = *binaryNode->getLeft(); in visitBinary() local 1485 const TField &field = getDirectField(leftNode, rightNode); in visitBinary() 1490 groupedTraverse(leftNode); in visitBinary() 1503 TType leftType = leftNode.getType(); in visitBinary() 1504 groupedTraverse(leftNode); in visitBinary() 1512 groupedTraverse(leftNode); in visitBinary() 1537 const TType &leftType = leftNode.getType(); in visitBinary() 1542 groupedTraverse(leftNode); in visitBinary() 1558 leftNode.traverse(this); in visitBinary() 2029 TIntermNode &leftNode = *aggregateNode->getChildNode(0); in visitAggregate() local [all …]
|
/external/dagger2/java/dagger/example/spi/ |
D | BindingGraphVisualizer.java | 203 DotEdge(Object leftNode, Object rightNode) { in DotEdge() argument 204 super(quote(leftNode.toString()) + " -> " + quote(rightNode.toString())); in DotEdge()
|
/external/jsilver/src/com/google/clearsilver/jsilver/compiler/ |
D | ExpressionTranslator.java | 356 private JavaExpression infix(Type destType, Type srcType, String infix, PExpression leftNode, in infix() argument 358 JavaExpression left = cast(srcType, leftNode); in infix()
|