Searched refs:Negative (Results 1 - 19 of 19) sorted by relevance

/external/llvm/include/llvm/ADT/
H A DAPFloat.h194 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) {
195 return APFloat(Sem, fcZero, Negative);
197 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) {
198 return APFloat(Sem, fcInfinity, Negative);
203 /// \param Negative - True iff the NaN generated should be negative.
206 static APFloat getNaN(const fltSemantics &Sem, bool Negative = false,
210 return getQNaN(Sem, Negative, &fill);
212 return getQNaN(Sem, Negative, 0);
218 bool Negative = false,
220 return makeNaN(Sem, false, Negative, payloa
[all...]
/external/chromium/testing/gtest/samples/
H A Dsample1_unittest.cc79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
119 TEST(IsPrimeTest, Negative) {
/external/gtest/samples/
H A Dsample1_unittest.cc79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
119 TEST(IsPrimeTest, Negative) {
/external/protobuf/gtest/samples/
H A Dsample1_unittest.cc79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
119 TEST(IsPrimeTest, Negative) {
/external/jmonkeyengine/engine/src/core/com/jme3/math/
H A DPlane.java58 Negative enum constant in enum:Plane.Side
193 return Side.Negative;
/external/webkit/Source/WebCore/xml/
H A DXPathPredicate.h59 class Negative : public Expression { class in namespace:WebCore::XPath
H A DXPathPredicate.cpp64 Value Negative::evaluate() const
H A DXPathGrammar.y549 $$ = new Negative;
/external/chromium/base/
H A Dstring_number_conversions.cc187 if (!Negative::Invoke(begin + 1, end, output)) {
262 class Negative : public Base<Negative> { class in class:base::__anon1596::IteratorRangeToNumber
/external/llvm/lib/Support/
H A DAPFloat.cpp634 void APFloat::makeNaN(bool SNaN, bool Negative, const APInt *fill)
637 sign = Negative;
681 APFloat APFloat::makeNaN(const fltSemantics &Sem, bool SNaN, bool Negative,
684 value.makeNaN(SNaN, Negative, fill);
2003 // Negative zero can't be represented as an int.
2058 /* Negative numbers cannot be represented as unsigned. */
3259 APFloat APFloat::getLargest(const fltSemantics &Sem, bool Negative) {
3260 APFloat Val(Sem, fcNormal, Negative);
3263 // sign = {Negative}
3284 APFloat APFloat::getSmallest(const fltSemantics &Sem, bool Negative) {
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/bounding/
H A DIntersection.java273 if (bbox.whichSide(p) == Plane.Side.Negative) {
H A DBoundingSphere.java447 return Plane.Side.Negative;
H A DBoundingBox.java351 return Plane.Side.Negative;
/external/llvm/unittests/ADT/
H A DAPFloatTest.cpp399 bool SNaN, bool Negative, uint64_t fill) {
402 return APFloat::getSNaN(Sem, Negative, &apfill).bitcastToAPInt();
404 return APFloat::getQNaN(Sem, Negative, &apfill).bitcastToAPInt();
398 nanbits(const fltSemantics &Sem, bool SNaN, bool Negative, uint64_t fill) argument
/external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
H A DSimpleWaterProcessor.java576 refractionCam.setClipPlane(refractionClipPlane, Plane.Side.Negative);//,-1
/external/jmonkeyengine/engine/src/core/com/jme3/renderer/
H A DCamera.java387 if (side == Plane.Side.Negative) {
1032 if (side == Plane.Side.Negative) {
/external/llvm/include/llvm/
H A DConstants.h261 static ConstantFP *getInfinity(Type *Ty, bool Negative = false);
/external/llvm/lib/VMCore/
H A DConstants.cpp581 ConstantFP *ConstantFP::getInfinity(Type *Ty, bool Negative) { argument
584 APFloat::getInf(Semantics, Negative));
/external/antlr/antlr-3.4/runtime/Delphi/Sources/Antlr3.Runtime/
H A DAntlr.Runtime.pas74 /// Negative indexes are allowed. LA(-1) is previous token (token just matched).

Completed in 480 milliseconds