/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/ |
D | NativeFormatting.cpp | 52 IntegerStyle Style, bool IsNegative) { in write_unsigned_impl() argument 61 if (IsNegative) in write_unsigned_impl() 78 IntegerStyle Style, bool IsNegative = false) { in write_unsigned() argument 82 IsNegative); in write_unsigned() 84 write_unsigned_impl(S, N, MinDigits, Style, IsNegative); in write_unsigned()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-subzero/lib/Support/ |
D | NativeFormatting.cpp | 53 IntegerStyle Style, bool IsNegative) { in write_unsigned_impl() argument 62 if (IsNegative) in write_unsigned_impl() 79 IntegerStyle Style, bool IsNegative = false) { in write_unsigned() argument 83 IsNegative); in write_unsigned() 85 write_unsigned_impl(S, N, MinDigits, Style, IsNegative); in write_unsigned()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/ |
D | MicrosoftDemangle.cpp | 894 bool IsNegative = MangledName.consumeFront('?'); in demangleNumber() local 899 return {Ret, IsNegative}; in demangleNumber() 907 return {Ret, IsNegative}; in demangleNumber() 921 bool IsNegative = false; in demangleUnsigned() local 923 std::tie(Number, IsNegative) = demangleNumber(MangledName); in demangleUnsigned() 924 if (IsNegative) in demangleUnsigned() 930 bool IsNegative = false; in demangleSigned() local 932 std::tie(Number, IsNegative) = demangleNumber(MangledName); in demangleSigned() 936 return IsNegative ? -I : I; in demangleSigned() 1280 bool IsNegative = false; in demangleStringLiteral() local [all …]
|
D | MicrosoftDemangleNodes.cpp | 188 if (IsNegative) in output()
|
/third_party/node/deps/v8/third_party/test262-harness/src/ |
D | test262.py | 147 if self.case.IsNegative(): 158 elif self.case.IsNegative(): 218 elif self.case.IsNegative(): 253 if not self.IsNegative(): 277 def IsNegative(self): member in TestCase 527 positive = [c for c in progress.failed_tests if not c.case.IsNegative()] 528 negative = [c for c in progress.failed_tests if c.case.IsNegative()] 597 if result.case.IsNegative(): 605 elif result.case.IsNegative():
|
/third_party/typescript/tests/cases/conformance/types/literal/ |
D | templateLiteralTypes1.ts | 212 type IsNegative<T extends number> = `${T}` extends `-${string}` ? true : false; alias 215 …[true, true] extends [IsNegative<T>, IsNegative<Q>] ? 'Every thing is ok!' : ['strange', IsNegativ…
|
/third_party/typescript/tests/baselines/reference/ |
D | templateLiteralTypes1.js | 210 type IsNegative<T extends number> = `${T}` extends `-${string}` ? true : false; 213 …[true, true] extends [IsNegative<T>, IsNegative<Q>] ? 'Every thing is ok!' : ['strange', IsNegativ…
|
D | templateLiteralTypes1.symbols | 851 type IsNegative<T extends number> = `${T}` extends `-${string}` ? true : false; 852 >IsNegative : Symbol(IsNegative, Decl(templateLiteralTypes1.ts, 204, 76)) 861 …[true, true] extends [IsNegative<T>, IsNegative<Q>] ? 'Every thing is ok!' : ['strange', IsNegativ… 862 >IsNegative : Symbol(IsNegative, Decl(templateLiteralTypes1.ts, 204, 76)) 864 >IsNegative : Symbol(IsNegative, Decl(templateLiteralTypes1.ts, 204, 76)) 866 >IsNegative : Symbol(IsNegative, Decl(templateLiteralTypes1.ts, 204, 76)) 868 >IsNegative : Symbol(IsNegative, Decl(templateLiteralTypes1.ts, 204, 76))
|
D | templateLiteralTypes1.errors.txt | 236 type IsNegative<T extends number> = `${T}` extends `-${string}` ? true : false; 239 …[true, true] extends [IsNegative<T>, IsNegative<Q>] ? 'Every thing is ok!' : ['strange', IsNegativ…
|
D | templateLiteralTypes1.types | 520 type IsNegative<T extends number> = `${T}` extends `-${string}` ? true : false; 521 >IsNegative : IsNegative<T> 528 …[true, true] extends [IsNegative<T>, IsNegative<Q>] ? 'Every thing is ok!' : ['strange', IsNegativ…
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/ |
D | MicrosoftDemangleNodes.h | 554 IntegerLiteralNode(uint64_t Value, bool IsNegative) in IntegerLiteralNode() 555 : Node(NodeKind::IntegerLiteral), Value(Value), IsNegative(IsNegative) {} in IntegerLiteralNode() 560 bool IsNegative = false; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/AsmParser/ |
D | WebAssemblyAsmParser.cpp | 342 void parseSingleInteger(bool IsNegative, OperandVector &Operands) { in parseSingleInteger() argument 345 if (IsNegative) in parseSingleInteger() 353 bool parseSingleFloat(bool IsNegative, OperandVector &Operands) { in parseSingleFloat() argument 358 if (IsNegative) in parseSingleFloat() 367 bool parseSpecialFloatMaybe(bool IsNegative, OperandVector &Operands) { in parseSpecialFloatMaybe() argument 380 if (IsNegative) in parseSpecialFloatMaybe()
|
/third_party/node/deps/v8/third_party/test262-harness/test/ |
D | test_test262.py | 32 def IsNegative(self): member in MockTest
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/ |
D | MathExtras.h | 938 const bool IsNegative = (X < 0) ^ (Y < 0); 939 Result = IsNegative ? (0 - UResult) : UResult; 948 if (IsNegative)
|
/third_party/node/deps/v8/src/objects/ |
D | bigint.h | 197 bool IsNegative() const { return sign(); } in IsNegative() function
|
/third_party/node/deps/v8/src/compiler/ |
D | node-matchers.h | 165 bool IsNegative() const { in IsNegative() function 200 bool IsNegative() const { in IsNegative() function
|
D | machine-operator-reducer.cc | 446 if (mleftmatcher.left().IsNegative() || in Reduce() 447 mleftmatcher.right().IsNegative()) { in Reduce()
|
/third_party/googletest/docs/reference/ |
D | assertions.md | 401 bool IsNegative(T x) { 405 EXPECT_PRED1(IsNegative<int>, -5); // Must specify type for IsNegative
|
/third_party/node/tools/ |
D | test.py | 142 if test.IsNegative(): 573 def IsNegative(self): member in TestCase 653 if self.test.IsNegative():
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSelect.cpp | 711 bool IsNegative = false; in canonicalizeSaturatedSubtract() local 716 IsNegative = true; in canonicalizeSaturatedSubtract() 724 if (IsNegative && !TrueVal->hasOneUse() && !ICI->hasOneUse()) in canonicalizeSaturatedSubtract() 730 if (IsNegative) in canonicalizeSaturatedSubtract()
|
/third_party/vixl/src/aarch64/ |
D | operands-aarch64.h | 912 bool IsNegative() const { return is_negative_; } in IsNegative() function
|
D | macro-assembler-sve-aarch64.cc | 48 if (signed_imm.IsNegative()) { in AddSubHelper()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/MIRParser/ |
D | MIParser.cpp | 2666 bool IsNegative = Token.is(MIToken::minus); in parseOffset() local 2673 if (IsNegative) in parseOffset()
|
/third_party/node/deps/v8/src/debug/ |
D | debug-interface.cc | 63 if (i_bigint->IsNegative()) { in GetBigIntDescription()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonISelLowering.cpp | 913 bool IsNegative = C && C->getAPIntValue().isNegative(); in LowerSETCC() local 914 if (IsNegative || isSExtFree(LHS) || isSExtFree(RHS)) in LowerSETCC()
|