Home
last modified time | relevance | path

Searched refs:ROp (Results 1 – 5 of 5) sorted by relevance

/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.pas6009 ROp, PrevROp: IReplaceOp;
6020 if (not Supports(Op, IReplaceOp, ROp)) then
6028 if (IOp.Index >= ROp.Index) and (IOp.Index <= ROp.LastIndex) then
6040 if (PrevROp.Index >= ROp.Index) and (PrevROp.LastIndex <= ROp.LastIndex) then
6047 Disjoint := (PrevROp.LastIndex < ROp.Index) or (PrevROp.Index > ROp.LastIndex);
6048 Same := (PrevROp.Index = ROp.Index) and (PrevROp.LastIndex = ROp.LastIndex);
6051 + ROp.ToString + ' overlap with previous ' + PrevROp.ToString);
6085 if (IOp.Index = ROp.Index) then
6087 ROp.Text := CatOpText(IOp.Text, ROp.Text);
6091 if (IOp.Index >= ROp.Index) and (IOp.Index <= ROp.LastIndex) then
[all …]
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
DInstructionCombining.cpp313 Instruction::BinaryOps ROp) { in LeftDistributesOverRight() argument
320 switch (ROp) { in LeftDistributesOverRight()
330 switch (ROp) { in LeftDistributesOverRight()
340 switch (ROp) { in LeftDistributesOverRight()
352 Instruction::BinaryOps ROp) { in RightDistributesOverLeft() argument
353 if (Instruction::isCommutative(ROp)) in RightDistributesOverLeft()
354 return LeftDistributesOverRight(ROp, LOp); in RightDistributesOverLeft()
/external/llvm/lib/Transforms/InstCombine/
DInstructionCombining.cpp333 Instruction::BinaryOps ROp) { in LeftDistributesOverRight() argument
340 switch (ROp) { in LeftDistributesOverRight()
350 switch (ROp) { in LeftDistributesOverRight()
360 switch (ROp) { in LeftDistributesOverRight()
372 Instruction::BinaryOps ROp) { in RightDistributesOverLeft() argument
373 if (Instruction::isCommutative(ROp)) in RightDistributesOverLeft()
374 return LeftDistributesOverRight(ROp, LOp); in RightDistributesOverLeft()
385 switch (ROp) { in RightDistributesOverLeft()
/external/llvm/lib/TableGen/
DRecord.cpp806 DefInit *ROp = dyn_cast<DefInit>(RHSs->getOperator()); in Fold() local
807 if (!LOp || !ROp || LOp->getDef() != ROp->getDef()) in Fold()
/external/swiftshader/third_party/LLVM/lib/TableGen/
DRecord.cpp894 DefInit *ROp = dynamic_cast<DefInit*>(RHSs->getOperator()); in Fold() local
895 if (LOp == 0 || ROp == 0 || LOp->getDef() != ROp->getDef()) in Fold()