/third_party/boost/boost/bimap/container_adaptor/detail/ |
D | comparison_adaptor.hpp | 34 template < class Compare, class NewType, class Converter > 37 typedef NewType first_argument_type; 38 typedef NewType second_argument_type; 44 bool operator()( BOOST_DEDUCED_TYPENAME call_traits<NewType>::param_type x, in operator ()() 45 BOOST_DEDUCED_TYPENAME call_traits<NewType>::param_type y) const in operator ()() 55 template < class Compare, class NewType, class Converter > 58 typedef NewType first_argument_type; 59 typedef NewType second_argument_type; 84 template < class Compare, class NewType, class Converter > 87 typedef BOOST_DEDUCED_TYPENAME call_traits<NewType>::param_type argument_type; [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
D | WebAssemblyAddMissingPrototypes.cpp | 91 FunctionType *NewType = nullptr; in runOnModule() local 98 if (!NewType) { in runOnModule() 100 NewType = DestType; in runOnModule() 101 LLVM_DEBUG(dbgs() << "found function type: " << *NewType << "\n"); in runOnModule() 102 } else if (NewType != DestType) { in runOnModule() 107 LLVM_DEBUG(dbgs() << " "<< *NewType << "\n"); in runOnModule() 113 if (!NewType) { in runOnModule() 122 NewType = FunctionType::get(F.getFunctionType()->getReturnType(), false); in runOnModule() 126 Function::Create(NewType, F.getLinkage(), F.getName() + ".fixed_sig"); in runOnModule()
|
/third_party/boost/boost/mpl/ |
D | replace.hpp | 30 , typename NewType 34 : replace_if_impl< Sequence, same_as<OldType>, NewType, Inserter > 41 , typename NewType 45 : reverse_replace_if_impl< Sequence, same_as<OldType>, NewType, Inserter >
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/ |
D | XCoreLowerThreadLocal.cpp | 69 createLoweredInitializer(ArrayType *NewType, Constant *OriginalInitializer) { in createLoweredInitializer() argument 74 return ConstantArray::get(NewType, Elements); in createLoweredInitializer() 191 ArrayType *NewType = createLoweredType(GV->getValueType()); in lowerGlobal() local 194 NewInitializer = createLoweredInitializer(NewType, in lowerGlobal() 197 new GlobalVariable(*M, NewType, GV->isConstant(), GV->getLinkage(), in lowerGlobal()
|
/third_party/boost/libs/mpl/doc/src/refmanual/ |
D | reverse_replace.rst | 14 , typename NewType 28 has been replaced with ``NewType``. 56 | ``NewType`` | Any type | A type to replace with. |
|
D | replace_if.rst | 14 , typename NewType 28 the predicate ``Pred`` has been replaced with ``NewType``. 57 | ``NewType`` | Any type | A type to replace with. |
|
D | replace.rst | 14 , typename NewType 28 has been replaced with ``NewType``. 56 | ``NewType`` | Any type | A type to replace with. |
|
D | reverse_replace_if.rst | 28 the predicate ``Pred`` has been replaced with ``NewType``. 57 | ``NewType`` | Any type | A type to replace with. |
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
D | IceTypes.h | 170 void setReturnType(Type NewType) { ReturnType = NewType; } in setReturnType() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/ |
D | DerivedTypes.h | 629 Type *NewType = getIntNTy(getContext(), NewBitWidth); in getWithNewBitWidth() local 631 NewType = VectorType::get(NewType, getVectorElementCount()); in getWithNewBitWidth() 632 return NewType; in getWithNewBitWidth()
|
/third_party/boost/libs/hana/example/tutorial/ |
D | appendix_mpl.cpp | 290 template <typename Sequence, typename OldType, typename NewType> 295 hana::type_c<NewType> 299 template <typename Sequence, typename Pred, typename NewType> 304 hana::type_c<NewType>
|
/third_party/flatbuffers/tests/rust_usage_test/tests/flexbuffers_tests/ |
D | qc_serious.rs | 94 struct NewType(bool); struct 105 e: Array4<NewType>,
|
D | rwyw.rs | 390 NewType([i32; 3]), in serde_serious() enumerator 422 MyEnum::NewType([-1, 0, 1]), in serde_serious()
|
/third_party/boost/boost/ |
D | rational.hpp | 195 template < typename NewType > 197 …rational(rational<NewType> const &r, typename enable_if_c<rational_detail::is_compatible_integer<N… in rational() argument 202 template < typename NewType > 204 …rational(rational<NewType> const &r, typename disable_if_c<rational_detail::is_compatible_integer<… in rational() argument
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/GlobalISel/ |
D | LegalizerInfo.h | 153 LLT NewType; member 156 const LLT &NewType) in LegalizeActionStep() 157 : Action(Action), TypeIdx(TypeIdx), NewType(NewType) {} in LegalizeActionStep() 160 return std::tie(Action, TypeIdx, NewType) == 161 std::tie(RHS.Action, RHS.TypeIdx, RHS.NewType);
|
/third_party/python/Doc/library/ |
D | typing.rst | 111 NewType chapter 114 Use the :class:`NewType` helper class to create distinct types:: 116 from typing import NewType 118 UserId = NewType('UserId', int) 142 the statement ``Derived = NewType('Derived', Base)`` will make ``Derived`` a 152 from typing import NewType 154 UserId = NewType('UserId', int) 159 However, it is possible to create a :class:`NewType` based on a 'derived' ``NewType``:: 161 from typing import NewType 163 UserId = NewType('UserId', int) [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Linker/ |
D | IRMover.cpp | 916 ArrayType *NewType = ArrayType::get(EltTy, NewSize); in linkAppendingVarProto() local 920 DstM, NewType, SrcGV->isConstant(), SrcGV->getLinkage(), in linkAppendingVarProto()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | ConstantFolding.cpp | 780 Type *NewType = Ops[i]->getType()->isVectorTy() in CastGEPIndices() local 785 NewType, in CastGEPIndices() 787 Ops[i], NewType)); in CastGEPIndices()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/TableGen/ |
D | Record.cpp | 278 RecTy* NewType = resolveTypes(ListTy1->getElementType(), in resolveTypes() local 280 if (NewType) in resolveTypes() 281 return NewType->getListTy(); in resolveTypes()
|
/third_party/python/Misc/NEWS.d/ |
D | 3.10.0rc1.rst | 296 Refactor ``typing.NewType`` from function into callable class. Patch
|
D | 3.6.0a2.rst | 269 Type[], NewType(), TYPE_CHECKING, and numerous bug fixes (note that some of
|
/third_party/python/Lib/test/ |
D | test_typing.py | 22 from typing import NewType 3911 UserId = NewType('UserId', int) 3912 cls.UserName = NewType(cls.__qualname__ + '.UserName', str) 3963 UserAge = NewType('UserAge', float) 4915 typing.NewType: 'NewType', 4951 TypeName = typing.NewType('SpecialAttrsTests.TypeName', Any)
|
D | test_types.py | 787 NT = typing.NewType('NT', str) 863 UserId = typing.NewType('UserId', int)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/GlobalISel/ |
D | LegalizerHelper.cpp | 100 return narrowScalar(MI, Step.TypeIdx, Step.NewType); in legalizeInstrStep() 103 return widenScalar(MI, Step.TypeIdx, Step.NewType); in legalizeInstrStep() 106 return lower(MI, Step.TypeIdx, Step.NewType); in legalizeInstrStep() 109 return fewerElementsVector(MI, Step.TypeIdx, Step.NewType); in legalizeInstrStep() 112 return moreElementsVector(MI, Step.TypeIdx, Step.NewType); in legalizeInstrStep()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Utils/ |
D | Local.cpp | 2397 Type *NewType = Dest.getType(); in copyMetadataForLoad() local 2433 if (NewType->isPointerTy()) in copyMetadataForLoad()
|