/external/cldr/tools/java/org/unicode/cldr/util/ |
D | PluralSnapshot.java | 45 public enum Integral { enum in PluralSnapshot 75 private Integral integral; 77 private SnapshotInfo(PluralType pluralType, Integral integral) { in SnapshotInfo() 114 if (integral == Integral.fraction) { in toHtmlStringHeader() 120 + (integral == Integral.fraction ? ".x" : "")); in toHtmlStringHeader() 129 …ic final EnumMap<PluralType, EnumMap<Integral, SnapshotInfo>> SINGLETONS = new EnumMap<PluralType,… 132 SINGLETONS.put(PluralType.cardinal, new EnumMap<Integral, SnapshotInfo>(Integral.class)); in SINGLETONS.put() argument 133 SINGLETONS.put(PluralType.ordinal, new EnumMap<Integral, SnapshotInfo>(Integral.class)); in SINGLETONS.put() argument 137 public static SnapshotInfo getInstance(PluralType pluralType, Integral integral) { in getInstance() 138 EnumMap<Integral, SnapshotInfo> temp = SINGLETONS.get(pluralType); in getInstance() [all …]
|
/external/libcxx/include/ |
D | atomic | 369 template <class Integral> 370 Integral 371 atomic_fetch_add(volatile atomic<Integral>* obj, Integral op) noexcept; 373 template <class Integral> 374 Integral 375 atomic_fetch_add(atomic<Integral>* obj, Integral op) noexcept; 377 template <class Integral> 378 Integral 379 atomic_fetch_add_explicit(volatile atomic<Integral>* obj, Integral op, 381 template <class Integral> [all …]
|
/external/clang/lib/AST/ |
D | TemplateBase.cpp | 74 Integer.Kind = Integral; in TemplateArgument() 123 case Integral: in isDependent() 163 case Integral: in isInstantiationDependent() 184 case Integral: in isPackExpansion() 207 case Integral: in containsUnexpandedParameterPack() 283 case Integral: in Profile() 314 case Integral: in structurallyEquals() 343 case Integral: in getPackExpansionPattern() 393 case Integral: { in print() 464 case TemplateArgument::Integral: in getSourceRange() [all …]
|
/external/tensorflow/tensorflow/contrib/layers/python/layers/ |
D | regularizers.py | 52 if isinstance(scale, numbers.Integral): 91 if isinstance(scale, numbers.Integral): 127 if isinstance(scale_l1, numbers.Integral): 129 if isinstance(scale_l2, numbers.Integral):
|
/external/python/cpython2/Lib/test/ |
D | test_abstract_numbers.py | 5 from numbers import Complex, Real, Rational, Integral 10 self.assertTrue(issubclass(int, Integral)) 20 self.assertTrue(issubclass(long, Integral))
|
/external/python/cpython2/Lib/ |
D | numbers.py | 295 class Integral(Rational): class 390 Integral.register(int) 391 Integral.register(long)
|
D | fractions.py | 175 if isinstance(f, numbers.Integral): 188 if isinstance(dec, numbers.Integral):
|
/external/python/cpython3/Lib/test/ |
D | test_abstract_numbers.py | 6 from numbers import Complex, Real, Rational, Integral 10 self.assertTrue(issubclass(int, Integral))
|
/external/clang/include/clang/AST/ |
D | TemplateBase.h | 57 Integral, enumerator 283 assert(getKind() == Integral && "Unexpected kind"); in getAsIntegral() 295 assert(getKind() == Integral && "Unexpected kind"); in getIntegralType() 300 assert(getKind() == Integral && "Unexpected kind"); in setIntegralType() 499 assert(Argument.getKind() == TemplateArgument::Integral); in getSourceIntegralExpression()
|
/external/python/cpython2/Doc/library/ |
D | numbers.rst | 5 :synopsis: Numeric abstract base classes (Complex, Real, Integral, etc.). 74 .. class:: Integral 121 and do the operation there. For subtypes of :class:`Integral`, this 124 class MyIntegral(Integral): 139 elif isinstance(other, Integral):
|
/external/python/cpython3/Doc/library/ |
D | numbers.rst | 5 :synopsis: Numeric abstract base classes (Complex, Real, Integral, etc.). 75 .. class:: Integral 124 and do the operation there. For subtypes of :class:`Integral`, this 127 class MyIntegral(Integral): 142 elif isinstance(other, Integral):
|
/external/python/cpython3/Lib/ |
D | numbers.py | 294 class Integral(Rational): class 389 Integral.register(int)
|
D | fractions.py | 200 if isinstance(f, numbers.Integral): 211 if isinstance(dec, numbers.Integral):
|
/external/clang/test/SemaTemplate/ |
D | constexpr-instantiate.cpp | 121 constexpr bool Integral() { in Integral() function 124 template<typename T, bool Int = Integral<T>()>
|
/external/sfntly/cpp/src/sfntly/math/ |
D | fixed1616.h | 26 static inline int32_t Integral(int32_t fixed) { in Integral() function
|
/external/compiler-rt/lib/builtins/ |
D | README.txt | 31 // Integral bit manipulation 62 // Integral arithmetic 87 // Integral arithmetic with trapping overflow 110 // Integral arithmetic which returns if overflow 118 // Integral comparison: a < b -> 0 127 // Integral / floating point conversion
|
/external/fonttools/Lib/fontTools/misc/ |
D | plistlib.py | 7 from numbers import Integral 390 _make_element.register(Integral)(_integer_element) 408 elif isinstance(value, Integral):
|
/external/swiftshader/third_party/LLVM/test/Assembler/ |
D | ConstantExprFoldCast.ll | 7 @C = global i32 trunc (i64 42 to i32) ; Integral casts
|
/external/tensorflow/tensorflow/python/util/ |
D | compat.py | 129 integral_types = (_numbers.Integral, _np.integer)
|
/external/swiftshader/third_party/llvm-7.0/llvm/test/Assembler/ |
D | ConstantExprFoldCast.ll | 13 @C = global i32 trunc (i64 42 to i32) ; Integral casts
|
/external/llvm/test/Assembler/ |
D | ConstantExprFoldCast.ll | 13 @C = global i32 trunc (i64 42 to i32) ; Integral casts
|
/external/libchrome/mojo/public/interfaces/bindings/tests/ |
D | test_constants.mojom | 8 // Integral types.
|
/external/tensorflow/tensorflow/contrib/training/python/training/ |
D | hparam.py | 178 if (issubclass(param_type, numbers.Integral) and 179 not isinstance(value, numbers.Integral)):
|
/external/swiftshader/third_party/subzero/src/ |
D | IceInstX86Base.h | 203 enum SseSuffix { None, Packed, Unpack, Scalar, Integral, Pack }; enumerator 894 case InstX86Base::SseSuffix::Integral: in emit() 1431 InstX86Base::SseSuffix::Integral> { 1441 InstX86Base::SseSuffix::Integral>(Func, Dest, in InstX86Padd() 1447 InstX86Base::SseSuffix::Integral> { 1457 InstX86Base::SseSuffix::Integral>(Func, Dest, in InstX86Padds() 1463 InstX86Base::SseSuffix::Integral> { 1473 InstX86Base::SseSuffix::Integral>(Func, Dest, in InstX86Paddus() 1559 InstX86Base::SseSuffix::Integral> { 1569 InstX86Base::SseSuffix::Integral>(Func, Dest, in InstX86Psub() [all …]
|
/external/tensorflow/tensorflow/contrib/gan/python/features/python/ |
D | spectral_normalization_impl.py | 139 if isinstance(scale, numbers.Integral):
|