Home
last modified time | relevance | path

Searched refs:using (Results 201 - 225 of 3158) sorted by relevance

12345678910>>...127

/third_party/node/src/crypto/
H A Dcrypto_util.h57 using X509Pointer = DeleteFnPtr<X509, X509_free>;
58 using BIOPointer = DeleteFnPtr<BIO, BIO_free_all>;
59 using SSLCtxPointer = DeleteFnPtr<SSL_CTX, SSL_CTX_free>;
60 using SSLSessionPointer = DeleteFnPtr<SSL_SESSION, SSL_SESSION_free>;
61 using SSLPointer = DeleteFnPtr<SSL, SSL_free>;
62 using PKCS8Pointer = DeleteFnPtr<PKCS8_PRIV_KEY_INFO, PKCS8_PRIV_KEY_INFO_free>;
63 using EVPKeyPointer = DeleteFnPtr<EVP_PKEY, EVP_PKEY_free>;
64 using EVPKeyCtxPointer = DeleteFnPtr<EVP_PKEY_CTX, EVP_PKEY_CTX_free>;
65 using EVPMDPointer = DeleteFnPtr<EVP_MD_CTX, EVP_MD_CTX_free>;
66 using RSAPointe
[all...]
/third_party/skia/src/core/
H A DSkZip.h25 using ReturnTuple = std::tuple<Ts&...>;
29 using value_type = ReturnTuple;
30 using difference_type = ptrdiff_t;
31 using pointer = value_type*;
32 using reference = value_type;
33 using iterator_category = std::input_iterator_tag;
64 using CanConvertToConst = typename std::integral_constant<bool,
135 using U = typename std::remove_cv<typename std::remove_reference<T>::type>::type;
136 using type = typename std::conditional<std::is_pointer<U>::value, U, T>::type;
138 template<typename T> using DecayPointer
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DCasting.h34 using SimpleType = From; // The real type this represents...
41 using NonConstSimpleType = typename simplify_type<From>::SimpleType;
42 using SimpleType =
44 using RetType =
119 // When From != SimplifiedType, we can simplify the type some more by using
165 using ret_type = To &; // Normal case, return Ty&
168 using ret_type = const To &; // Normal case, return Ty&
172 using ret_type = To *; // Pointer arg case, return Ty*
176 using ret_type = const To *; // Constant pointer arg case, return const Ty*
180 using ret_typ
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DSparseMultiSet.h120 using KeyT = typename KeyFunctorT::argument_type;
121 using DenseT = SmallVector<SMSNode, 8>;
185 using value_type = ValueT;
186 using reference = ValueT &;
187 using const_reference = const ValueT &;
188 using pointer = ValueT *;
189 using const_pointer = const ValueT *;
190 using size_type = unsigned;
250 using super = std::iterator<std::bidirectional_iterator_tag, ValueT>;
251 using value_typ
[all...]
H A DSTLExtras.h12 // No library is required when using these functions.
45 // using SFINAE to test for the existence of member functions.
51 using IterOfRange = decltype(std::begin(std::declval<RangeT &>()));
69 using type =
74 using type = typename std::add_lvalue_reference<
83 using argument_type = Ty;
146 using std::begin;
154 using std::end;
162 using std::swap;
244 using ye
[all...]
H A DSmallPtrSet.h87 using size_type = unsigned;
268 using PtrTraits = PointerLikeTypeTraits<PtrTy>;
271 using value_type = PtrTy;
272 using reference = PtrTy;
273 using pointer = PtrTy;
274 using difference_type = std::ptrdiff_t;
275 using iterator_category = std::forward_iterator_tag;
344 using ConstPtrType = typename add_const_past_pointer<PtrType>::type;
345 using PtrTraits = PointerLikeTypeTraits<PtrType>;
346 using ConstPtrTrait
[all...]
H A DDAGDeltaAlgorithm.h18 /// directed acyclic graphs using a predicate function.
42 using change_ty = unsigned;
43 using edge_ty = std::pair<change_ty, change_ty>;
46 using changeset_ty = std::set<change_ty>;
47 using changesetlist_ty = std::vector<changeset_ty>;
/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dfixed_array.h84 using AllocatorTraits = std::allocator_traits<A>;
88 using EnableIfForwardIterator = absl::enable_if_t<std::is_convertible<
104 using allocator_type = typename AllocatorTraits::allocator_type;
105 using value_type = typename AllocatorTraits::value_type;
106 using pointer = typename AllocatorTraits::pointer;
107 using const_pointer = typename AllocatorTraits::const_pointer;
108 using reference = value_type&;
109 using const_reference = const value_type&;
110 using size_type = typename AllocatorTraits::size_type;
111 using difference_typ
[all...]
/third_party/gn/src/base/files/
H A Dplatform_file.h24 using PlatformFile = HANDLE;
25 using ScopedPlatformFile = ::base::win::ScopedHandle;
34 using PlatformFile = int;
35 using ScopedPlatformFile = ::base::ScopedFD;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
H A DSpeculation.h43 using AliaseeDetails = std::pair<SymbolStringPtr, JITDylib *>;
44 using Alias = SymbolStringPtr;
45 using ImapTy = DenseMap<Alias, AliaseeDetails>;
67 using TargetFAddr = JITTargetAddress;
68 using FunctionCandidatesMap = DenseMap<SymbolStringPtr, SymbolNameSet>;
69 using StubAddrLikelies = DenseMap<TargetFAddr, SymbolNameSet>;
178 using IRlikiesStrRef = Optional<DenseMap<StringRef, DenseSet<StringRef>>>;
179 using ResultEval = std::function<IRlikiesStrRef(Function &)>;
180 using TargetAndLikelies = DenseMap<SymbolStringPtr, SymbolNameSet>;
/third_party/skia/third_party/externals/abseil-cpp/absl/random/
H A Dgaussian_distribution.h41 // using the ziggurat tables generated by the gaussian_distribution_gentables
89 using result_type = RealType;
93 using distribution_type = gaussian_distribution;
120 "using a floating-point type.");
195 using result_type = typename gaussian_distribution<RealType>::result_type; in operator >>()
196 using param_type = typename gaussian_distribution<RealType>::param_type; in operator >>()
212 using random_internal::GeneratePositiveTag; in zignor_fallback()
213 using random_internal::GenerateRealFromBits; in zignor_fallback()
231 using random_internal::GeneratePositiveTag; in zignor()
232 using random_interna in zignor()
[all...]
/third_party/gn/src/base/containers/
H A Dspan.h38 using IsSpan = IsSpanImpl<std::decay_t<T>>;
47 using IsStdArray = IsStdArrayImpl<std::decay_t<T>>;
50 using IsCArray = std::is_array<std::remove_reference_t<T>>;
53 using IsLegalDataConversion = std::is_convertible<From (*)[], To (*)[]>;
56 using ContainerHasConvertibleData = IsLegalDataConversion<
61 using ContainerHasIntegralSize =
65 using EnableIfLegalSpanConversion =
71 using EnableIfSpanCompatibleArray =
77 using EnableIfSpanCompatibleContainer =
101 // Consider using
[all...]
/third_party/nghttp2/src/
H A Dtemplate.h70 using ResultType = typename std::result_of<typename std::decay<F>::type(
226 using traits_type = std::char_traits<char>;
227 using value_type = traits_type::char_type;
228 using allocator_type = std::allocator<char>;
229 using size_type = std::allocator_traits<allocator_type>::size_type;
230 using difference_type =
232 using const_reference = const value_type &;
233 using const_pointer = const value_type *;
234 using const_iterator = const_pointer;
235 using const_reverse_iterato
[all...]
/third_party/mesa3d/src/amd/compiler/
H A Daco_util.h45 using value_type = T;
46 using pointer = value_type*;
47 using const_pointer = const value_type*;
48 using reference = value_type&;
49 using const_reference = const value_type&;
50 using iterator = pointer;
51 using const_iterator = const_pointer;
52 using reverse_iterator = std::reverse_iterator<iterator>;
53 using const_reverse_iterator = std::reverse_iterator<const_iterator>;
54 using size_typ
[all...]
/third_party/node/deps/v8/src/base/
H A Dthreaded-list.h137 using iterator_category = std::forward_iterator_tag;
138 using difference_type = std::ptrdiff_t;
139 using value_type = T*;
140 using reference = value_type;
141 using pointer = value_type*;
184 using iterator_category = std::forward_iterator_tag;
185 using difference_type = std::ptrdiff_t;
186 using value_type = T*;
187 using reference = const value_type;
188 using pointe
[all...]
H A Dsafe_conversions_impl.h34 // we can compute an analog using std::numeric_limits<>::digits.
80 using SignedT = typename std::make_signed<T>::type; in ConditionalNegate()
81 using UnsignedT = typename std::make_unsigned<T>::type; in ConditionalNegate()
90 using UnsignedT = typename std::make_unsigned<T>::type; in SafeUnsignedAbs()
244 using SrcLimits = std::numeric_limits<Src>;
245 using DstLimits = typename std::numeric_limits<Dst>;
299 using SrcLimits = std::numeric_limits<Src>;
300 using DstLimits = NarrowingRange<Dst, Src, Bounds>;
316 using DstLimits = NarrowingRange<Dst, Src, Bounds>;
328 using DstLimit
[all...]
/third_party/node/deps/v8/src/objects/
H A Dslots.h20 using TData = Data;
90 // The slot's contents can be read and written using operator* and store().
93 using TObject = Object;
94 using THeapObjectSlot = FullHeapObjectSlot;
133 // The slot's contents can be read and written using operator* and store().
137 using TObject = MaybeObject;
138 using THeapObjectSlot = FullHeapObjectSlot;
167 // The slot's contents can be read and written using operator* and store().
191 // behavior in C++ code we use this iterator adaptor when using STL algorithms
240 using difference_typ
[all...]
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
H A Dsfn_virtualvalues.h68 using InstructionSet = std::set<Instr *, std::less<Instr *>, Allocator<Instr *>>;
82 using Pointer = R600_POINTER_TYPE(VirtualValue);
121 using PVirtualValue = VirtualValue::Pointer;
145 using Pointer = R600_POINTER_TYPE(Register);
204 using PRegister = Register::Pointer;
214 using Pointer = R600_POINTER_TYPE(InlineConstant);
230 using PInlineConstant = InlineConstant::Pointer;
240 using Swizzle = std::array<uint8_t, 4>;
308 using Pointer = R600_POINTER_TYPE(LiteralConstant);
322 using PLiteralVirtualValu
[all...]
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/metal/
H A Dmtl_common.h200 using TextureSwizzleChannels = MTLTextureSwizzleChannels;
201 using RenderStages = MTLRenderStages;
206 using TextureSwizzleChannels = int;
207 using RenderStages = int;
228 using ImplType = OBJ##Mtl; \
237 using ImplType = DisplayMtl;
243 using ImplType = ImageMtl;
247 using GetImplType = typename ImplTypeHelper<T>::ImplType;
311 using AutoObjCObj = AutoObjCPtr<T *>;
321 using ParentTyp
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/container/internal/
H A Dlayout.h59 // using L = Layout<size_t, size_t, double, int>;
135 // using L = Layout<size_t, char>;
217 using IntToSize = size_t;
220 using TypeToSize = size_t;
224 using type = T;
229 using type = T;
253 using Contains = absl::disjunction<std::is_same<T, Ts>...>;
256 using CopyConst =
262 using SliceType = Span<T>;
316 using EnableI
[all...]
/test/xts/acts/global_lite/i18n_lite/number_posix/src/
H A DUnitNumberTest.h26 using namespace OHOS;
27 using ::std::string;
28 using ::std::vector;
29 using namespace I18N;
/test/xts/acts/global_lite/i18n_lite/numberrecall_posix/src/
H A DUnitNumberRecallTest.h26 using namespace OHOS;
27 using ::std::string;
28 using ::std::vector;
29 using namespace I18N;
/test/xts/acts/global_lite/i18n_lite/datetimerecall_posix/src/
H A DUnitDateTimeRecallTest.h26 using namespace OHOS;
27 using namespace I18N;
28 using ::std::string;
29 using ::std::vector;
/third_party/skia/include/gpu/mtl/
H A DGrMtlTypes.h17 using GrMTLPixelFormat = unsigned int;
18 using GrMTLTextureUsage = unsigned int;
19 using GrMTLStorageMode = unsigned int;
20 using GrMTLHandle = const void*;
/third_party/gn/src/base/numerics/
H A Dsafe_conversions_impl.h25 // we can compute an analog using std::numeric_limits<>::digits.
72 using SignedT = typename std::make_signed<T>::type; in ConditionalNegate()
73 using UnsignedT = typename std::make_unsigned<T>::type; in ConditionalNegate()
82 using UnsignedT = typename std::make_unsigned<T>::type; in SafeUnsignedAbs()
240 using SrcLimits = std::numeric_limits<Src>;
241 using DstLimits = typename std::numeric_limits<Dst>;
308 using SrcLimits = std::numeric_limits<Src>;
309 using DstLimits = NarrowingRange<Dst, Src, Bounds>;
328 using DstLimits = NarrowingRange<Dst, Src, Bounds>;
343 using DstLimit
[all...]

Completed in 16 milliseconds

12345678910>>...127