Home
last modified time | relevance | path

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

123

/third_party/rust/crates/cxx/gen/build/src/syntax/
H A Ddiscriminant.rs25 Negative,
69 Sign::Negative => { in insert_next()
121 Sign::Positive => Sign::Negative, in expr_to_discriminant()
122 Sign::Negative => Sign::Positive, in expr_to_discriminant()
170 Sign::Negative
186 Sign::Negative => {
191 sign: Sign::Negative,
209 if self.sign == Sign::Negative { in fmt()
218 if self.sign == Sign::Negative { in to_tokens()
231 Sign::Negative in from_str()
[all...]
/third_party/rust/crates/cxx/gen/lib/src/syntax/
H A Ddiscriminant.rs25 Negative,
69 Sign::Negative => { in insert_next()
121 Sign::Positive => Sign::Negative, in expr_to_discriminant()
122 Sign::Negative => Sign::Positive, in expr_to_discriminant()
170 Sign::Negative
186 Sign::Negative => {
191 sign: Sign::Negative,
209 if self.sign == Sign::Negative { in fmt()
218 if self.sign == Sign::Negative { in to_tokens()
231 Sign::Negative in from_str()
[all...]
/third_party/rust/crates/cxx/macro/src/syntax/
H A Ddiscriminant.rs25 Negative,
69 Sign::Negative => { in insert_next()
121 Sign::Positive => Sign::Negative, in expr_to_discriminant()
122 Sign::Negative => Sign::Positive, in expr_to_discriminant()
170 Sign::Negative
186 Sign::Negative => {
191 sign: Sign::Negative,
209 if self.sign == Sign::Negative { in fmt()
218 if self.sign == Sign::Negative { in to_tokens()
231 Sign::Negative in from_str()
[all...]
/third_party/rust/crates/cxx/syntax/
H A Ddiscriminant.rs25 Negative,
69 Sign::Negative => { in insert_next()
121 Sign::Positive => Sign::Negative, in expr_to_discriminant()
122 Sign::Negative => Sign::Positive, in expr_to_discriminant()
170 Sign::Negative
186 Sign::Negative => {
191 sign: Sign::Negative,
209 if self.sign == Sign::Negative { in fmt()
218 if self.sign == Sign::Negative { in to_tokens()
231 Sign::Negative in from_str()
[all...]
/third_party/rust/crates/cxx/gen/cmd/src/syntax/
H A Ddiscriminant.rs25 Negative,
69 Sign::Negative => { in insert_next()
121 Sign::Positive => Sign::Negative, in expr_to_discriminant()
122 Sign::Negative => Sign::Positive, in expr_to_discriminant()
170 Sign::Negative
186 Sign::Negative => {
191 sign: Sign::Negative,
209 if self.sign == Sign::Negative { in fmt()
218 if self.sign == Sign::Negative { in to_tokens()
231 Sign::Negative in from_str()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/include/llvm/ADT/
H A DAPFloat.h478 /// \param Negative - True iff the number should be negative
479 void makeSmallestNormalized(bool Negative = false);
838 /// Factory for Positive and Negative Zero.
840 /// \param Negative True iff the number should be negative.
841 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) { in getZero()
843 Val.makeZero(Negative); in getZero()
847 /// Factory for Positive and Negative Infinity.
849 /// \param Negative True iff the number should be negative.
850 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) { in getInf()
852 Val.makeInf(Negative); in getInf()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DAPFloat.h467 /// \param Negative - True iff the number should be negative
468 void makeSmallestNormalized(bool Negative = false);
872 /// Factory for Positive and Negative Zero.
874 /// \param Negative True iff the number should be negative.
875 static APFloat getZero(const fltSemantics &Sem, bool Negative = false) { in getZero()
877 Val.makeZero(Negative); in getZero()
881 /// Factory for Positive and Negative Infinity.
883 /// \param Negative True iff the number should be negative.
884 static APFloat getInf(const fltSemantics &Sem, bool Negative = false) { in getInf()
886 Val.makeInf(Negative); in getInf()
[all...]
/third_party/rust/crates/bindgen/bindgen-tests/tests/headers/
H A Dbitfield-enum-basic.hpp7 Negative = -3, enumerator
14 Negative = -3, member in Buz
H A Dnewtype-global-enum.hpp7 Negative = -3, enumerator
H A Dnewtype-enum.hpp7 Negative = -3, enumerator
H A Dbitfield-enum-repr-transparent.hpp7 Negative = -3, enumerator
H A Dbitfield-enum-repr-c.hpp7 Negative = -3, enumerator
/third_party/node/deps/v8/tools/testrunner/outproc/
H A Dmozilla.py25 class NegOutProc(base.Negative, OutProc):
28 class NegPassOutProc(base.Negative, PassOutProc):
H A Dbase.py79 class Negative(object): class
95 class NegPassOutProc(Negative, PassOutProc):
/third_party/googletest/googletest/samples/
H A Dsample1_unittest.cc76 TEST(FactorialTest, Negative) { in TEST()
77 // This test is named "Negative", and belongs to the "FactorialTest" in TEST()
113 TEST(IsPrimeTest, Negative) { in TEST()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
H A DAArch64ConditionOptimizer.cpp248 bool Negative = (Opc == AArch64::ADDSWri || Opc == AArch64::ADDSXri); in adjustCmp() local
252 if (Negative) { in adjustCmp()
261 if (OldImm == 0 && ((Negative && Correction == 1) || in adjustCmp()
262 (!Negative && Correction == -1))) { in adjustCmp()
/third_party/rust/crates/bindgen/bindgen-tests/tests/expectations/tests/
H A Dbitfield-enum-basic.rs18 pub const Negative: Foo = Foo(-3); consts
59 pub const Negative: Buz = Buz(-3); consts
H A Dnewtype-enum.rs18 pub const Negative: Foo = Foo(-3); consts
H A Dbitfield-enum-repr-transparent.rs18 pub const Negative: Foo = Foo(-3); consts
H A Dbitfield-enum-repr-c.rs18 pub const Negative: Foo = Foo(-3); consts
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/gles1/
H A DMatrixModeTest.cpp41 TEST_P(MatrixModeTest, Negative) in TEST_P()
H A DShadeModelTest.cpp43 // Negative test for shade model.
44 TEST_P(ShadeModelTest, Negative) in TEST_P()
H A DClientActiveTextureTest.cpp42 // Negative test: Checks against invalid use of glClientActiveTexture.
43 TEST_P(ClientActiveTextureTest, Negative) in TEST_P()
H A DClientStateEnable.cpp62 // Negative test: Checks that invalid enums for client state generate the proper GL error.
63 TEST_P(ClientStateEnable, Negative) in TEST_P()
/third_party/gn/src/base/strings/
H A Dstring_number_conversions.cc154 } else if (!Negative::Invoke(begin + 1, end, output)) { in Invoke()
230 class Negative : public Base<Negative> { class in base::__anon2852::IteratorRangeToNumber

Completed in 18 milliseconds

123