Home
last modified time | relevance | path

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

12345678910>>...122

/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/gn/
H A Dlabel_ptr.h25 using DestType = T;
47 using LabelConfigPair = LabelPtrPair<Config>;
48 using LabelTargetPair = LabelPtrPair<Target>;
50 using LabelConfigVector = std::vector<LabelConfigPair>;
51 using LabelTargetVector = std::vector<LabelTargetPair>;
/third_party/node/deps/v8/src/base/platform/
H A Dsemaphore.h59 using NativeHandle = dispatch_semaphore_t;
61 using NativeHandle = sem_t;
63 using NativeHandle = HANDLE;
65 using NativeHandle = starboard::Semaphore;
99 using typename LazyDynamicInstance<Semaphore, CreateSemaphoreTrait<N>,
/third_party/node/deps/v8/src/torque/
H A Dserver-data.h24 using DefinitionMapping = std::pair<SourcePosition, SourcePosition>;
26 using Definitions = std::vector<DefinitionMapping>;
27 using DefinitionsMap = std::map<SourceId, Definitions>;
33 using Symbols = std::vector<Declarable*>;
34 using SymbolsMap = std::map<SourceId, Symbols>;
/third_party/skia/third_party/externals/dawn/src/dawn_native/
H A DForward.h63 using CommandEncoderBase = CommandEncoder;
64 using ComputePassEncoderBase = ComputePassEncoder;
65 using RenderBundleEncoderBase = RenderBundleEncoder;
66 using RenderPassEncoderBase = RenderPassEncoder;
67 using SurfaceBase = Surface;
/third_party/skia/third_party/externals/dawn/src/dawn_wire/
H A DBufferConsumer.h62 using BufferConsumer::BufferConsumer;
63 using BufferConsumer::Next;
64 using BufferConsumer::NextN;
69 using BufferConsumer::BufferConsumer;
70 using BufferConsumer::Peek;
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/
H A DSpeculateAnalyses.h33 using ResultTy = Optional<DenseMap<StringRef, DenseSet<StringRef>>>;
57 using VisitedBlocksInfoTy = DenseMap<const BasicBlock *, WalkDirection>;
58 using BlockListTy = SmallVector<const BasicBlock *, 8>;
59 using BackEdgesInfoTy =
61 using BlockFreqInfoTy =
/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...]
H A Dcircular_deque.h132 using difference_type = std::ptrdiff_t;
133 using value_type = T;
134 using pointer = const T*;
135 using reference = const T&;
136 using iterator_category = std::random_access_iterator_tag;
327 using base = circular_deque_const_iterator<T>;
332 using difference_type = std::ptrdiff_t;
333 using value_type = T;
334 using pointer = T*;
335 using referenc
[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/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...]
/third_party/skia/third_party/externals/angle2/src/common/third_party/base/anglebase/numerics/
H A Dsafe_conversions_impl.h29 // we can compute an analog using std::numeric_limits<>::digits.
78 using SignedT = typename std::make_signed<T>::type; in ConditionalNegate()
79 using UnsignedT = typename std::make_unsigned<T>::type; in ConditionalNegate()
88 using UnsignedT = typename std::make_unsigned<T>::type; in SafeUnsignedAbs()
256 using SrcLimits = std::numeric_limits<Src>;
257 using DstLimits = typename std::numeric_limits<Dst>;
316 using SrcLimits = std::numeric_limits<Src>;
317 using DstLimits = NarrowingRange<Dst, Src, Bounds>;
337 using DstLimits = NarrowingRange<Dst, Src, Bounds>;
354 using DstLimit
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/util/
H A Dhex_float.h68 using uint_type = void;
73 using uint_type = uint32_t;
93 using uint_type = uint64_t;
115 using uint_type = uint16_t;
137 using uint_type = typename FloatProxyTraits<T>::uint_type;
213 using uint_type = void;
215 using int_type = void;
217 using underlying_type = void;
219 using native_type = void;
237 using uint_typ
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/util/
H A Dhex_float.h68 using uint_type = void;
73 using uint_type = uint32_t;
93 using uint_type = uint64_t;
115 using uint_type = uint16_t;
137 using uint_type = typename FloatProxyTraits<T>::uint_type;
213 using uint_type = void;
215 using int_type = void;
217 using underlying_type = void;
219 using native_type = void;
237 using uint_typ
[all...]
/third_party/spirv-tools/source/util/
H A Dhex_float.h68 using uint_type = void;
73 using uint_type = uint32_t;
93 using uint_type = uint64_t;
115 using uint_type = uint16_t;
137 using uint_type = typename FloatProxyTraits<T>::uint_type;
213 using uint_type = void;
216 using int_type = void;
218 using underlying_type = void;
220 using native_type = void;
238 using uint_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/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
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...]
/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...]
/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/angle2/src/common/
H A DPackedEnums.h30 using UnderlyingType = typename std::underlying_type<E>::type; in EnumSize()
44 using UnderlyingType = typename std::underlying_type<E>::type;
73 using UnderlyingType = typename std::underlying_type<E>::type;
74 using Storage = std::array<T, MaxSize>;
77 using InitPair = std::pair<E, T>;
98 using value_type = T;
99 using pointer = T *;
100 using const_pointer = const T *;
101 using reference = T &;
102 using const_referenc
[all...]

Completed in 16 milliseconds

12345678910>>...122