Home | History | Annotate | Download | only in AST

Lines Matching defs:Equal

7327         // A constant address may compare equal to the address of a symbol.
7328 // The one exception is that address of an object cannot compare equal
7520 // If both operands are null, they compare equal. Otherwise if only one is
7523 bool Equal = !LHSValue.getDecl() && !RHSValue.getDecl();
7524 return Success(E->getOpcode() == BO_EQ ? Equal : !Equal, E);
7536 // Otherwise they compare equal if and only if they would refer to the
7540 bool Equal = LHSValue == RHSValue;
7541 return Success(E->getOpcode() == BO_EQ ? Equal : !Equal, E);