/third_party/rust/crates/cxx/gen/build/src/syntax/ |
H A D | discriminant.rs | 25 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 D | discriminant.rs | 25 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 D | discriminant.rs | 25 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 D | discriminant.rs | 25 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 D | discriminant.rs | 25 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 D | APFloat.h | 478 /// \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 D | APFloat.h | 467 /// \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 D | bitfield-enum-basic.hpp | 7 Negative = -3, enumerator 14 Negative = -3, member in Buz
|
H A D | newtype-global-enum.hpp | 7 Negative = -3, enumerator
|
H A D | newtype-enum.hpp | 7 Negative = -3, enumerator
|
H A D | bitfield-enum-repr-transparent.hpp | 7 Negative = -3, enumerator
|
H A D | bitfield-enum-repr-c.hpp | 7 Negative = -3, enumerator
|
/third_party/node/deps/v8/tools/testrunner/outproc/ |
H A D | mozilla.py | 25 class NegOutProc(base.Negative, OutProc): 28 class NegPassOutProc(base.Negative, PassOutProc):
|
H A D | base.py | 79 class Negative(object): class 95 class NegPassOutProc(Negative, PassOutProc):
|
/third_party/googletest/googletest/samples/ |
H A D | sample1_unittest.cc | 76 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 D | AArch64ConditionOptimizer.cpp | 248 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 D | bitfield-enum-basic.rs | 18 pub const Negative: Foo = Foo(-3); consts 59 pub const Negative: Buz = Buz(-3); consts
|
H A D | newtype-enum.rs | 18 pub const Negative: Foo = Foo(-3); consts
|
H A D | bitfield-enum-repr-transparent.rs | 18 pub const Negative: Foo = Foo(-3); consts
|
H A D | bitfield-enum-repr-c.rs | 18 pub const Negative: Foo = Foo(-3); consts
|
/third_party/skia/third_party/externals/angle2/src/tests/gl_tests/gles1/ |
H A D | MatrixModeTest.cpp | 41 TEST_P(MatrixModeTest, Negative) in TEST_P()
|
H A D | ShadeModelTest.cpp | 43 // Negative test for shade model. 44 TEST_P(ShadeModelTest, Negative) in TEST_P()
|
H A D | ClientActiveTextureTest.cpp | 42 // Negative test: Checks against invalid use of glClientActiveTexture. 43 TEST_P(ClientActiveTextureTest, Negative) in TEST_P()
|
H A D | ClientStateEnable.cpp | 62 // 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 D | string_number_conversions.cc | 154 } else if (!Negative::Invoke(begin + 1, end, output)) { in Invoke() 230 class Negative : public Base<Negative> { class in base::__anon2852::IteratorRangeToNumber
|