Home
last modified time | relevance | path

Searched refs:S (Results 1 – 25 of 152) sorted by relevance

1234567

/expo/ios/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/private/base/
H A DSkTo.h16 template <typename D, typename S> constexpr D SkTo(S s) { in SkTo()
21 template <typename S> constexpr int8_t SkToS8(S x) { return SkTo<int8_t>(x); } in SkToS8()
22 template <typename S> constexpr uint8_t SkToU8(S x) { return SkTo<uint8_t>(x); } in SkToU8()
23 template <typename S> constexpr int16_t SkToS16(S x) { return SkTo<int16_t>(x); } in SkToS16()
24 template <typename S> constexpr uint16_t SkToU16(S x) { return SkTo<uint16_t>(x); } in SkToU16()
25 template <typename S> constexpr int32_t SkToS32(S x) { return SkTo<int32_t>(x); } in SkToS32()
26 template <typename S> constexpr uint32_t SkToU32(S x) { return SkTo<uint32_t>(x); } in SkToU32()
27 template <typename S> constexpr int64_t SkToS64(S x) { return SkTo<int64_t>(x); } in SkToS64()
28 template <typename S> constexpr uint64_t SkToU64(S x) { return SkTo<uint64_t>(x); } in SkToU64()
29 template <typename S> constexpr int SkToInt(S x) { return SkTo<int>(x); } in SkToInt()
[all …]
H A DSkTLogic.h29 template <typename D, typename S> using copy_const_t = typename copy_const<D, S>::type;
34 template <typename D, typename S> using copy_volatile_t = typename copy_volatile<D, S>::type;
36 template <typename D, typename S> struct copy_cv {
37 using type = copy_volatile_t<copy_const_t<D, S>, S>;
39 template <typename D, typename S> using copy_cv_t = typename copy_cv<D, S>::type;
44 template <typename D, typename S> using same_const = copy_const<std::remove_const_t<D>, S>;
45 template <typename D, typename S> using same_const_t = typename same_const<D, S>::type;
46 template <typename D, typename S> using same_volatile =copy_volatile<std::remove_volatile_t<D>,S>;
47 template <typename D, typename S> using same_volatile_t = typename same_volatile<D, S>::type;
48 template <typename D, typename S> using same_cv = copy_cv<std::remove_cv_t<D>, S>;
[all …]
H A DSkTFitsIn.h71 template <typename D, typename S>
73 typename std::enable_if<(std::is_integral<S>::value || std::is_enum<S>::value) &&
75 /*bool*/ SkTFitsIn(S src) {
77 using Sa = typename sk_strip_enum<S>::type;
85 (S)0 <= src :
89 src <= (S)std::numeric_limits<Da>::max() :
93 (S)(D)src == src;
/expo/ios/vendored/unversioned/@shopify/react-native-skia/cpp/skia/include/private/base/
H A DSkTo.h16 template <typename D, typename S> constexpr D SkTo(S s) { in SkTo()
21 template <typename S> constexpr int8_t SkToS8(S x) { return SkTo<int8_t>(x); } in SkToS8()
22 template <typename S> constexpr uint8_t SkToU8(S x) { return SkTo<uint8_t>(x); } in SkToU8()
23 template <typename S> constexpr int16_t SkToS16(S x) { return SkTo<int16_t>(x); } in SkToS16()
24 template <typename S> constexpr uint16_t SkToU16(S x) { return SkTo<uint16_t>(x); } in SkToU16()
25 template <typename S> constexpr int32_t SkToS32(S x) { return SkTo<int32_t>(x); } in SkToS32()
26 template <typename S> constexpr uint32_t SkToU32(S x) { return SkTo<uint32_t>(x); } in SkToU32()
27 template <typename S> constexpr int64_t SkToS64(S x) { return SkTo<int64_t>(x); } in SkToS64()
28 template <typename S> constexpr uint64_t SkToU64(S x) { return SkTo<uint64_t>(x); } in SkToU64()
29 template <typename S> constexpr int SkToInt(S x) { return SkTo<int>(x); } in SkToInt()
[all …]
H A DSkTLogic.h29 template <typename D, typename S> using copy_const_t = typename copy_const<D, S>::type;
34 template <typename D, typename S> using copy_volatile_t = typename copy_volatile<D, S>::type;
36 template <typename D, typename S> struct copy_cv {
37 using type = copy_volatile_t<copy_const_t<D, S>, S>;
39 template <typename D, typename S> using copy_cv_t = typename copy_cv<D, S>::type;
44 template <typename D, typename S> using same_const = copy_const<std::remove_const_t<D>, S>;
45 template <typename D, typename S> using same_const_t = typename same_const<D, S>::type;
46 template <typename D, typename S> using same_volatile =copy_volatile<std::remove_volatile_t<D>,S>;
47 template <typename D, typename S> using same_volatile_t = typename same_volatile<D, S>::type;
48 template <typename D, typename S> using same_cv = copy_cv<std::remove_cv_t<D>, S>;
[all …]
H A DSkTFitsIn.h71 template <typename D, typename S>
73 typename std::enable_if<(std::is_integral<S>::value || std::is_enum<S>::value) &&
75 /*bool*/ SkTFitsIn(S src) {
77 using Sa = typename sk_strip_enum<S>::type;
85 (S)0 <= src :
89 src <= (S)std::numeric_limits<Da>::max() :
93 (S)(D)src == src;
/expo/ios/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/private/base/
H A DSkTo.h16 template <typename D, typename S> constexpr D SkTo(S s) { in SkTo()
21 template <typename S> constexpr int8_t SkToS8(S x) { return SkTo<int8_t>(x); } in SkToS8()
22 template <typename S> constexpr uint8_t SkToU8(S x) { return SkTo<uint8_t>(x); } in SkToU8()
23 template <typename S> constexpr int16_t SkToS16(S x) { return SkTo<int16_t>(x); } in SkToS16()
24 template <typename S> constexpr uint16_t SkToU16(S x) { return SkTo<uint16_t>(x); } in SkToU16()
25 template <typename S> constexpr int32_t SkToS32(S x) { return SkTo<int32_t>(x); } in SkToS32()
26 template <typename S> constexpr uint32_t SkToU32(S x) { return SkTo<uint32_t>(x); } in SkToU32()
27 template <typename S> constexpr int64_t SkToS64(S x) { return SkTo<int64_t>(x); } in SkToS64()
28 template <typename S> constexpr uint64_t SkToU64(S x) { return SkTo<uint64_t>(x); } in SkToU64()
29 template <typename S> constexpr int SkToInt(S x) { return SkTo<int>(x); } in SkToInt()
[all …]
H A DSkTLogic.h29 template <typename D, typename S> using copy_const_t = typename copy_const<D, S>::type;
34 template <typename D, typename S> using copy_volatile_t = typename copy_volatile<D, S>::type;
36 template <typename D, typename S> struct copy_cv {
37 using type = copy_volatile_t<copy_const_t<D, S>, S>;
39 template <typename D, typename S> using copy_cv_t = typename copy_cv<D, S>::type;
44 template <typename D, typename S> using same_const = copy_const<std::remove_const_t<D>, S>;
45 template <typename D, typename S> using same_const_t = typename same_const<D, S>::type;
46 template <typename D, typename S> using same_volatile =copy_volatile<std::remove_volatile_t<D>,S>;
47 template <typename D, typename S> using same_volatile_t = typename same_volatile<D, S>::type;
48 template <typename D, typename S> using same_cv = copy_cv<std::remove_cv_t<D>, S>;
[all …]
H A DSkTFitsIn.h71 template <typename D, typename S>
73 typename std::enable_if<(std::is_integral<S>::value || std::is_enum<S>::value) &&
75 /*bool*/ SkTFitsIn(S src) {
77 using Sa = typename sk_strip_enum<S>::type;
85 (S)0 <= src :
89 src <= (S)std::numeric_limits<Da>::max() :
93 (S)(D)src == src;
/expo/android/vendored/sdk49/@shopify/react-native-skia/cpp/skia/include/private/base/
H A DSkTo.h16 template <typename D, typename S> constexpr D SkTo(S s) { in SkTo()
21 template <typename S> constexpr int8_t SkToS8(S x) { return SkTo<int8_t>(x); } in SkToS8()
22 template <typename S> constexpr uint8_t SkToU8(S x) { return SkTo<uint8_t>(x); } in SkToU8()
23 template <typename S> constexpr int16_t SkToS16(S x) { return SkTo<int16_t>(x); } in SkToS16()
24 template <typename S> constexpr uint16_t SkToU16(S x) { return SkTo<uint16_t>(x); } in SkToU16()
25 template <typename S> constexpr int32_t SkToS32(S x) { return SkTo<int32_t>(x); } in SkToS32()
26 template <typename S> constexpr uint32_t SkToU32(S x) { return SkTo<uint32_t>(x); } in SkToU32()
27 template <typename S> constexpr int64_t SkToS64(S x) { return SkTo<int64_t>(x); } in SkToS64()
28 template <typename S> constexpr uint64_t SkToU64(S x) { return SkTo<uint64_t>(x); } in SkToU64()
29 template <typename S> constexpr int SkToInt(S x) { return SkTo<int>(x); } in SkToInt()
[all …]
H A DSkTLogic.h29 template <typename D, typename S> using copy_const_t = typename copy_const<D, S>::type;
34 template <typename D, typename S> using copy_volatile_t = typename copy_volatile<D, S>::type;
36 template <typename D, typename S> struct copy_cv {
37 using type = copy_volatile_t<copy_const_t<D, S>, S>;
39 template <typename D, typename S> using copy_cv_t = typename copy_cv<D, S>::type;
44 template <typename D, typename S> using same_const = copy_const<std::remove_const_t<D>, S>;
45 template <typename D, typename S> using same_const_t = typename same_const<D, S>::type;
46 template <typename D, typename S> using same_volatile =copy_volatile<std::remove_volatile_t<D>,S>;
47 template <typename D, typename S> using same_volatile_t = typename same_volatile<D, S>::type;
48 template <typename D, typename S> using same_cv = copy_cv<std::remove_cv_t<D>, S>;
[all …]
H A DSkTFitsIn.h71 template <typename D, typename S>
73 typename std::enable_if<(std::is_integral<S>::value || std::is_enum<S>::value) &&
75 /*bool*/ SkTFitsIn(S src) {
77 using Sa = typename sk_strip_enum<S>::type;
85 (S)0 <= src :
89 src <= (S)std::numeric_limits<Da>::max() :
93 (S)(D)src == src;
/expo/ios/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/private/base/
H A DSkTo.h16 template <typename D, typename S> constexpr D SkTo(S s) { in SkTo()
21 template <typename S> constexpr int8_t SkToS8(S x) { return SkTo<int8_t>(x); } in SkToS8()
22 template <typename S> constexpr uint8_t SkToU8(S x) { return SkTo<uint8_t>(x); } in SkToU8()
23 template <typename S> constexpr int16_t SkToS16(S x) { return SkTo<int16_t>(x); } in SkToS16()
24 template <typename S> constexpr uint16_t SkToU16(S x) { return SkTo<uint16_t>(x); } in SkToU16()
25 template <typename S> constexpr int32_t SkToS32(S x) { return SkTo<int32_t>(x); } in SkToS32()
26 template <typename S> constexpr uint32_t SkToU32(S x) { return SkTo<uint32_t>(x); } in SkToU32()
27 template <typename S> constexpr int64_t SkToS64(S x) { return SkTo<int64_t>(x); } in SkToS64()
28 template <typename S> constexpr uint64_t SkToU64(S x) { return SkTo<uint64_t>(x); } in SkToU64()
29 template <typename S> constexpr int SkToInt(S x) { return SkTo<int>(x); } in SkToInt()
[all …]
H A DSkTLogic.h29 template <typename D, typename S> using copy_const_t = typename copy_const<D, S>::type;
34 template <typename D, typename S> using copy_volatile_t = typename copy_volatile<D, S>::type;
36 template <typename D, typename S> struct copy_cv {
37 using type = copy_volatile_t<copy_const_t<D, S>, S>;
39 template <typename D, typename S> using copy_cv_t = typename copy_cv<D, S>::type;
44 template <typename D, typename S> using same_const = copy_const<std::remove_const_t<D>, S>;
45 template <typename D, typename S> using same_const_t = typename same_const<D, S>::type;
46 template <typename D, typename S> using same_volatile =copy_volatile<std::remove_volatile_t<D>,S>;
47 template <typename D, typename S> using same_volatile_t = typename same_volatile<D, S>::type;
48 template <typename D, typename S> using same_cv = copy_cv<std::remove_cv_t<D>, S>;
[all …]
H A DSkTFitsIn.h71 template <typename D, typename S>
73 typename std::enable_if<(std::is_integral<S>::value || std::is_enum<S>::value) &&
75 /*bool*/ SkTFitsIn(S src) {
77 using Sa = typename sk_strip_enum<S>::type;
85 (S)0 <= src :
89 src <= (S)std::numeric_limits<Da>::max() :
93 (S)(D)src == src;
/expo/android/vendored/unversioned/@shopify/react-native-skia/cpp/skia/include/private/base/
H A DSkTo.h16 template <typename D, typename S> constexpr D SkTo(S s) { in SkTo()
21 template <typename S> constexpr int8_t SkToS8(S x) { return SkTo<int8_t>(x); } in SkToS8()
22 template <typename S> constexpr uint8_t SkToU8(S x) { return SkTo<uint8_t>(x); } in SkToU8()
23 template <typename S> constexpr int16_t SkToS16(S x) { return SkTo<int16_t>(x); } in SkToS16()
24 template <typename S> constexpr uint16_t SkToU16(S x) { return SkTo<uint16_t>(x); } in SkToU16()
25 template <typename S> constexpr int32_t SkToS32(S x) { return SkTo<int32_t>(x); } in SkToS32()
26 template <typename S> constexpr uint32_t SkToU32(S x) { return SkTo<uint32_t>(x); } in SkToU32()
27 template <typename S> constexpr int64_t SkToS64(S x) { return SkTo<int64_t>(x); } in SkToS64()
28 template <typename S> constexpr uint64_t SkToU64(S x) { return SkTo<uint64_t>(x); } in SkToU64()
29 template <typename S> constexpr int SkToInt(S x) { return SkTo<int>(x); } in SkToInt()
[all …]
H A DSkTLogic.h29 template <typename D, typename S> using copy_const_t = typename copy_const<D, S>::type;
34 template <typename D, typename S> using copy_volatile_t = typename copy_volatile<D, S>::type;
36 template <typename D, typename S> struct copy_cv {
37 using type = copy_volatile_t<copy_const_t<D, S>, S>;
39 template <typename D, typename S> using copy_cv_t = typename copy_cv<D, S>::type;
44 template <typename D, typename S> using same_const = copy_const<std::remove_const_t<D>, S>;
45 template <typename D, typename S> using same_const_t = typename same_const<D, S>::type;
46 template <typename D, typename S> using same_volatile =copy_volatile<std::remove_volatile_t<D>,S>;
47 template <typename D, typename S> using same_volatile_t = typename same_volatile<D, S>::type;
48 template <typename D, typename S> using same_cv = copy_cv<std::remove_cv_t<D>, S>;
[all …]
H A DSkTFitsIn.h71 template <typename D, typename S>
73 typename std::enable_if<(std::is_integral<S>::value || std::is_enum<S>::value) &&
75 /*bool*/ SkTFitsIn(S src) {
77 using Sa = typename sk_strip_enum<S>::type;
85 (S)0 <= src :
89 src <= (S)std::numeric_limits<Da>::max() :
93 (S)(D)src == src;
/expo/android/vendored/sdk48/@shopify/react-native-skia/cpp/skia/include/private/
H A DSkTo.h13 template <typename D, typename S> constexpr D SkTo(S s) { in SkTo()
18 template <typename S> constexpr int8_t SkToS8(S x) { return SkTo<int8_t>(x); } in SkToS8()
19 template <typename S> constexpr uint8_t SkToU8(S x) { return SkTo<uint8_t>(x); } in SkToU8()
20 template <typename S> constexpr int16_t SkToS16(S x) { return SkTo<int16_t>(x); } in SkToS16()
21 template <typename S> constexpr uint16_t SkToU16(S x) { return SkTo<uint16_t>(x); } in SkToU16()
22 template <typename S> constexpr int32_t SkToS32(S x) { return SkTo<int32_t>(x); } in SkToS32()
23 template <typename S> constexpr uint32_t SkToU32(S x) { return SkTo<uint32_t>(x); } in SkToU32()
24 template <typename S> constexpr int SkToInt(S x) { return SkTo<int>(x); } in SkToInt()
25 template <typename S> constexpr unsigned SkToUInt(S x) { return SkTo<unsigned>(x); } in SkToUInt()
26 template <typename S> constexpr size_t SkToSizeT(S x) { return SkTo<size_t>(x); } in SkToSizeT()
H A DSkTLogic.h29 template <typename D, typename S> using copy_const_t = typename copy_const<D, S>::type;
34 template <typename D, typename S> using copy_volatile_t = typename copy_volatile<D, S>::type;
36 template <typename D, typename S> struct copy_cv {
37 using type = copy_volatile_t<copy_const_t<D, S>, S>;
39 template <typename D, typename S> using copy_cv_t = typename copy_cv<D, S>::type;
44 template <typename D, typename S> using same_const = copy_const<std::remove_const_t<D>, S>;
45 template <typename D, typename S> using same_const_t = typename same_const<D, S>::type;
46 template <typename D, typename S> using same_volatile =copy_volatile<std::remove_volatile_t<D>,S>;
47 template <typename D, typename S> using same_volatile_t = typename same_volatile<D, S>::type;
48 template <typename D, typename S> using same_cv = copy_cv<std::remove_cv_t<D>, S>;
[all …]
H A DSkTFitsIn.h69 template <typename D, typename S>
71 typename std::enable_if<(std::is_integral<S>::value || std::is_enum<S>::value) &&
73 /*bool*/ SkTFitsIn(S src) {
78 (std::is_signed<S>::value && std::is_unsigned<D>::value && sizeof(S) <= sizeof(D)) ?
79 (S)0 <= src :
82 (std::is_signed<D>::value && std::is_unsigned<S>::value && sizeof(D) <= sizeof(S)) ?
83 src <= (S)std::numeric_limits<typename sk_strip_enum<D>::type>::max() :
87 (S)(D)src == src;
90 (std::is_signed<S>::value) ?
/expo/android/vendored/sdk47/@shopify/react-native-skia/cpp/skia/include/private/
H A DSkTo.h13 template <typename D, typename S> constexpr D SkTo(S s) { in SkTo()
18 template <typename S> constexpr int8_t SkToS8(S x) { return SkTo<int8_t>(x); } in SkToS8()
19 template <typename S> constexpr uint8_t SkToU8(S x) { return SkTo<uint8_t>(x); } in SkToU8()
20 template <typename S> constexpr int16_t SkToS16(S x) { return SkTo<int16_t>(x); } in SkToS16()
21 template <typename S> constexpr uint16_t SkToU16(S x) { return SkTo<uint16_t>(x); } in SkToU16()
22 template <typename S> constexpr int32_t SkToS32(S x) { return SkTo<int32_t>(x); } in SkToS32()
23 template <typename S> constexpr uint32_t SkToU32(S x) { return SkTo<uint32_t>(x); } in SkToU32()
24 template <typename S> constexpr int SkToInt(S x) { return SkTo<int>(x); } in SkToInt()
25 template <typename S> constexpr unsigned SkToUInt(S x) { return SkTo<unsigned>(x); } in SkToUInt()
26 template <typename S> constexpr size_t SkToSizeT(S x) { return SkTo<size_t>(x); } in SkToSizeT()
H A DSkTLogic.h29 template <typename D, typename S> using copy_const_t = typename copy_const<D, S>::type;
34 template <typename D, typename S> using copy_volatile_t = typename copy_volatile<D, S>::type;
36 template <typename D, typename S> struct copy_cv {
37 using type = copy_volatile_t<copy_const_t<D, S>, S>;
39 template <typename D, typename S> using copy_cv_t = typename copy_cv<D, S>::type;
44 template <typename D, typename S> using same_const = copy_const<std::remove_const_t<D>, S>;
45 template <typename D, typename S> using same_const_t = typename same_const<D, S>::type;
46 template <typename D, typename S> using same_volatile =copy_volatile<std::remove_volatile_t<D>,S>;
47 template <typename D, typename S> using same_volatile_t = typename same_volatile<D, S>::type;
48 template <typename D, typename S> using same_cv = copy_cv<std::remove_cv_t<D>, S>;
[all …]
H A DSkTFitsIn.h69 template <typename D, typename S>
71 typename std::enable_if<(std::is_integral<S>::value || std::is_enum<S>::value) &&
73 /*bool*/ SkTFitsIn(S src) {
78 (std::is_signed<S>::value && std::is_unsigned<D>::value && sizeof(S) <= sizeof(D)) ?
79 (S)0 <= src :
82 (std::is_signed<D>::value && std::is_unsigned<S>::value && sizeof(D) <= sizeof(S)) ?
83 src <= (S)std::numeric_limits<typename sk_strip_enum<D>::type>::max() :
87 (S)(D)src == src;
90 (std::is_signed<S>::value) ?
/expo/packages/@expo/cli/src/start/server/type-generation/__typetests__/fixtures/
H A Dbasic.ts42 type SingleRoutePart<S extends string> = S extends `${string}/${string}`
44 : S extends `${string}${SearchOrHash}`
46 : S extends ''
48 : S extends `(${string})`
50 : S extends `[${string}]`
52 : S;
57 type CatchAllRoutePart<S extends string> = S extends `${string}${SearchOrHash}`
59 : S extends ''
61 : S extends `${string}(${string})${string}`
63 : S extends `${string}[${string}]${string}`
[all …]

1234567