HomeSort by relevance Sort by last modified time
    Searched refs:Neg (Results 1 - 5 of 5) sorted by null

  /libcore/luni/src/main/java/org/apache/xpath/operations/
Neg.java 19 * $Id: Neg.java 468655 2006-10-28 07:12:06Z minchau $
30 public class Neg extends UnaryOperation
  /external/skia/src/core/
SkFloat.h 38 void negate() { fPacked = Neg(fPacked); }
49 void sub(const SkFloat& a) { fPacked = Add(fPacked, Neg(a.fPacked)); }
50 void setSub(const SkFloat& a, const SkFloat& b) { fPacked = Add(a.fPacked, Neg(b.fPacked)); }
104 static int32_t Neg(int32_t);
SkFP.h 64 #define SkFPNeg(x) SkFloat::Neg(x)
67 #define SkFPSub(a, b) SkFloat::Add(a, SkFloat::Neg(b))
SkFloat.cpp 123 int32_t SkFloat::Neg(int32_t packed)
  /libcore/luni/src/main/java/org/apache/xpath/compiler/
Compiler.java 53 import org.apache.xpath.operations.Neg;
154 expr = neg(opPos); break;
443 * @return reference to {@link org.apache.xpath.operations.Neg} instance.
447 protected Expression neg(int opPos) throws TransformerException method in class:Compiler
449 return compileUnary(new Neg(), opPos);
    [all...]

Completed in 214 milliseconds