/third_party/json/include/nlohmann/ |
H A D | adl_serializer.hpp | 26 template<typename BasicJsonType, typename TargetType = ValueType> 27 static auto from_json(BasicJsonType && j, TargetType& val) noexcept( 36 template<typename BasicJsonType, typename TargetType = ValueType> 38 noexcept(::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {}))) 39 -> decltype(::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {})) 41 return ::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {}); 46 template<typename BasicJsonType, typename TargetType = ValueType> 47 static auto to_json(BasicJsonType& j, TargetType && val) noexcept( 48 noexcept(::nlohmann::to_json(j, std::forward<TargetType>(val)))) 49 -> decltype(::nlohmann::to_json(j, std::forward<TargetType>(va [all...] |
/third_party/protobuf/csharp/src/Google.Protobuf/ |
H A D | ExtensionRegistry.cs | 49 return new ObjectIntPair<Type>(a.TargetType, a.FieldNumber).Equals(new ObjectIntPair<Type>(b.TargetType, b.FieldNumber)); in Equals() 53 return new ObjectIntPair<Type>(a.TargetType, a.FieldNumber).GetHashCode(); in GetHashCode() 95 extensions.Add(new ObjectIntPair<Type>(extension.TargetType, extension.FieldNumber), extension); in Add() 126 return extensions.ContainsKey(new ObjectIntPair<Type>(item.TargetType, item.FieldNumber)); in Contains() 149 extensions.Add(new ObjectIntPair<Type>(extension.TargetType, extension.FieldNumber), extension); in CopyTo() 171 return extensions.Remove(new ObjectIntPair<Type>(item.TargetType, item.FieldNumber)); in Remove()
|
H A D | Extension.cs | 42 internal abstract Type TargetType { get; } property in Google.Protobuf.Extension 82 internal override Type TargetType => typeof(TTarget); field in Google.Protobuf.Extension 110 internal override Type TargetType => typeof(TTarget); field in Google.Protobuf.RepeatedExtension
|
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/ |
H A D | PNaClTranslator.cpp | 1843 /// Returns true iff an integer truncation from SourceType to TargetType is 1845 static bool isIntTruncCastValid(Ice::Type SourceType, Ice::Type TargetType) { in isIntTruncCastValid() argument 1846 return Ice::isIntegerType(SourceType) && Ice::isIntegerType(TargetType) && in isIntTruncCastValid() 1847 simplifyOutCommonVectorType(SourceType, TargetType) && in isIntTruncCastValid() 1848 getScalarIntBitWidth(SourceType) > getScalarIntBitWidth(TargetType); in isIntTruncCastValid() 1851 /// Returns true iff a floating type truncation from SourceType to TargetType 1854 Ice::Type TargetType) { in isFloatTruncCastValid() 1855 return simplifyOutCommonVectorType(SourceType, TargetType) && in isFloatTruncCastValid() 1856 SourceType == Ice::IceType_f64 && TargetType == Ice::IceType_f32; in isFloatTruncCastValid() 1859 /// Returns true iff an integer extension from SourceType to TargetType i 1853 isFloatTruncCastValid(Ice::Type SourceType, Ice::Type TargetType) isFloatTruncCastValid() argument 1861 isIntExtCastValid(Ice::Type SourceType, Ice::Type TargetType) isIntExtCastValid() argument 1867 isFloatExtCastValid(Ice::Type SourceType, Ice::Type TargetType) isFloatExtCastValid() argument 1873 isFloatToIntCastValid(Ice::Type SourceType, Ice::Type TargetType) isFloatToIntCastValid() argument 1889 isIntToFloatCastValid(Ice::Type SourceType, Ice::Type TargetType) isIntToFloatCastValid() argument 1906 isBitcastValid(Ice::Type SourceType, Ice::Type TargetType) isBitcastValid() argument 1914 convertCastOpToIceOp(uint64_t Opcode, Ice::Type SourceType, Ice::Type TargetType, Ice::InstCast::OpKind &CastKind) convertCastOpToIceOp() argument 1972 << SourceType << " to " << TargetType; convertCastOpToIceOp() local [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | InferAddressSpaces.cpp | 506 Type *TargetType = in cloneConstantExprWithNewAddressSpace() local 515 return ConstantExpr::getBitCast(CE->getOperand(0), TargetType); in cloneConstantExprWithNewAddressSpace() 520 return ConstantExpr::getBitCast(cast<Constant>(NewOperand), TargetType); in cloneConstantExprWithNewAddressSpace() 521 return ConstantExpr::getAddrSpaceCast(CE, TargetType); in cloneConstantExprWithNewAddressSpace() 531 CE->getOperand(0), ConstantExpr::getAddrSpaceCast(Src0, TargetType), in cloneConstantExprWithNewAddressSpace() 532 ConstantExpr::getAddrSpaceCast(Src1, TargetType)); in cloneConstantExprWithNewAddressSpace() 571 NewOperands, TargetType, /*OnlyIfReduced=*/false, in cloneConstantExprWithNewAddressSpace() 575 return CE->getWithOperands(NewOperands, TargetType); in cloneConstantExprWithNewAddressSpace()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | TargetTransformInfoImpl.h | 762 Type *TargetType = nullptr; in getGEPCost() local 765 // the basis, therefore TargetType is a nullptr. in getGEPCost() 770 TargetType = GTI.getIndexedType(); in getGEPCost() 798 TargetType, const_cast<GlobalValue *>(BaseGV), in getGEPCost()
|
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/ |
H A D | ReflectionUtil.cs | 126 (IExtensionReflectionHelper)Activator.CreateInstance(typeof(ExtensionReflectionHelper<,>).MakeGenericType(extension.TargetType, extension.GetType().GenericTypeArguments[1]), extension);
|
/third_party/vk-gl-cts/modules/glshared/ |
H A D | glsShaderLibraryCase.cpp | 611 enum TargetType enum in deqp::gls::BeforeDrawValidator 619 BeforeDrawValidator (const glw::Functions& gl, glw::GLuint target, TargetType targetType); 629 const TargetType m_targetType; 635 BeforeDrawValidator::BeforeDrawValidator (const glw::Functions& gl, glw::GLuint target, TargetType targetType) in BeforeDrawValidator()
|
/third_party/node/src/ |
H A D | node_options.h | 339 typedef Options TargetType; typedef in node::options_parser::OptionsParser
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/ |
H A D | MicrosoftDemangleNodes.h | 426 TypeNode *TargetType = nullptr; member
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/ |
H A D | MicrosoftDemangle.cpp | 725 COIN->TargetType = FSN->Signature->ReturnType; in demangleEncodedSymbol() 746 if (!COIN->TargetType) { in demangleDeclarator()
|
H A D | MicrosoftDemangleNodes.cpp | 363 TargetType->output(OS, Flags); in output()
|
/third_party/json/tests/abi/include/nlohmann/ |
H A D | json_v3_10_5.hpp | 4929 template<typename BasicJsonType, typename TargetType = ValueType> 4930 static auto from_json(BasicJsonType && j, TargetType& val) noexcept( 4939 template<typename BasicJsonType, typename TargetType = ValueType> 4941 noexcept(::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {}))) 4942 -> decltype(::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {})) 4944 return ::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {}); 4949 template<typename BasicJsonType, typename TargetType = ValueType> 4950 static auto to_json(BasicJsonType& j, TargetType && val) noexcept( 4951 noexcept(::nlohmann::to_json(j, std::forward<TargetType>(val)))) 4952 -> decltype(::nlohmann::to_json(j, std::forward<TargetType>(va [all...] |
/third_party/json/single_include/nlohmann/ |
H A D | json.hpp | 5765 template<typename BasicJsonType, typename TargetType = ValueType> 5766 static auto from_json(BasicJsonType && j, TargetType& val) noexcept( 5775 template<typename BasicJsonType, typename TargetType = ValueType> 5777 noexcept(::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {}))) 5778 -> decltype(::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {})) 5780 return ::nlohmann::from_json(std::forward<BasicJsonType>(j), detail::identity_tag<TargetType> {}); 5785 template<typename BasicJsonType, typename TargetType = ValueType> 5786 static auto to_json(BasicJsonType& j, TargetType && val) noexcept( 5787 noexcept(::nlohmann::to_json(j, std::forward<TargetType>(val)))) 5788 -> decltype(::nlohmann::to_json(j, std::forward<TargetType>(va [all...] |
/third_party/node/deps/v8/src/parsing/ |
H A D | parser-base.h | 362 enum TargetType { TARGET_FOR_ANONYMOUS, TARGET_FOR_NAMED_ONLY }; enum in v8::internal::ParseFunctionFlag::ParserBase::Target 366 ZonePtrList<const AstRawString>* own_labels, TargetType target_type) in Target() 398 const TargetType target_type_;
|