HomeSort by relevance Sort by last modified time
    Searched refs:Negative (Results 1 - 25 of 36) sorted by null

1 2

  /external/google-breakpad/src/testing/gtest/samples/
sample1_unittest.cc 78 // Tests factorial of negative numbers.
79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
118 // Tests negative input.
119 TEST(IsPrimeTest, Negative) {
  /external/protobuf/gtest/samples/
sample1_unittest.cc 78 // Tests factorial of negative numbers.
79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
118 // Tests negative input.
119 TEST(IsPrimeTest, Negative) {
  /ndk/sources/third_party/googletest/googletest/samples/
sample1_unittest.cc 78 // Tests factorial of negative numbers.
79 TEST(FactorialTest, Negative) {
80 // This test is named "Negative", and belongs to the "FactorialTest"
118 // Tests negative input.
119 TEST(IsPrimeTest, Negative) {
  /external/llvm/include/llvm/ADT/
APFloat.h 210 /// Factory for Positive and Negative Zero.
212 /// \param Negative True iff the number should be negative.
213 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) {
215 Val.makeZero(Negative);
219 /// Factory for Positive and Negative Infinity.
221 /// \param Negative True iff the number should be negative.
222 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) {
224 Val.makeInf(Negative);
    [all...]
  /external/jmonkeyengine/engine/src/core/com/jme3/math/
Plane.java 42 * plane. The distance is pseudo due to the fact that it can be negative if the
58 Negative
169 * a provided point. If the point is on the negative side of the plane the
170 * distance returned is negative, otherwise it is positive. If the point is
193 return Side.Negative;
  /external/llvm/lib/Target/AArch64/
AArch64ConditionOptimizer.cpp 221 // CMN (compare with negative immediate) is an alias to ADDS (as
222 // "operand - negative" == "operand + positive")
223 bool Negative = (Opc == AArch64::ADDSWri || Opc == AArch64::ADDSXri);
226 // Negate Correction value for comparison with negative immediate (CMN).
227 if (Negative) {
236 if (OldImm == 0 && ((Negative && Correction == 1) ||
237 (!Negative && Correction == -1))) {
  /external/v8/test/mjsunit/
array-indexing.js 52 // Negative cases.
58 // Negative index out of range.
60 // Negative index in rage.
120 // Negative cases.
131 // Negative index in range.
mod.js 39 // Negative case.
42 // Check for negative zero.
46 // Check for negative zero.
array-concat.js 96 // Negative indices don't get concated.
168 // Negative indices don't get concated.
regexp-capture-3.js 176 NoHang(/(?!(((.*)*)*x)?)foo/); // Negative lookahead is filtered.
177 NoHang(/(?!(((.*)*)*x))?/); // Continuation branch of negative lookahead.
date-parse.js 286 // Negative tests.
  /external/skia/src/sfnt/
SkOTTable_OS_2_V0.h 116 Negative,
SkOTTable_OS_2_VA.h 116 Negative,
SkOTTable_OS_2_V1.h 359 Negative,
SkOTTable_OS_2_V2.h 374 Negative,
SkOTTable_OS_2_V3.h 384 Negative,
SkOTTable_OS_2_V4.h 416 Negative,
  /prebuilts/misc/common/swig/include/2.0.11/
constraints.i 21 Number NEGATIVE - Negative number (not zero)
24 Number NONPOSITIVE - Negative number (including zero)
98 // Negative numbers
101 int NEGATIVE,
102 short NEGATIVE,
103 long NEGATIVE,
104 unsigned int NEGATIVE,
105 unsigned short NEGATIVE,
106 unsigned long NEGATIVE,
    [all...]
  /external/llvm/lib/Support/
APFloat.cpp 164 bool negative, overflow;
169 negative = *p == '-';
195 if (negative)
203 exponent = negative ? -32768: 32767;
617 void APFloat::makeNaN(bool SNaN, bool Negative, const APInt *fill)
620 sign = Negative;
664 APFloat APFloat::makeNaN(const fltSemantics &Sem, bool SNaN, bool Negative,
667 value.makeNaN(SNaN, Negative, fill);
    [all...]
  /external/clang/test/SemaCXX/
compare.cpp 231 // All negative shorts are cast towards the max unsigned range. Relation
242 // When negative one is converted to an unsigned value, it becomes the max
243 // unsigned. Likewise, a negative one short can also be converted to max
344 Negative = -1,
  /external/jmonkeyengine/engine/src/core/com/jme3/bounding/
Intersection.java 273 if (bbox.whichSide(p) == Plane.Side.Negative) {
BoundingSphere.java 447 return Plane.Side.Negative;
  /external/jmonkeyengine/engine/src/core-effects/com/jme3/water/
SimpleWaterProcessor.java 576 refractionCam.setClipPlane(refractionClipPlane, Plane.Side.Negative);//,-1
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Camera.java 387 if (side == Plane.Side.Negative) {
998 * on the negative side of the plane is can be culled out.
    [all...]
  /external/v8/test/mjsunit/harmony/
string-contains.js 74 msg: "Negative number -1", val: -1

Completed in 1325 milliseconds

1 2