/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/ |
H A D | TinyPtrVector.h | 32 using VecTy = SmallVector<EltTy, 4>; 33 using value_type = typename VecTy::value_type; 38 using PtrUnion = PointerUnion<EltTy, VecTy *>; 180 using iterator = EltTy *; 181 using const_iterator = const EltTy *; 182 using reverse_iterator = std::reverse_iterator<iterator>; 183 using const_reverse_iterator = std::reverse_iterator<const_iterator>;
|
H A D | ImmutableList.h | 66 using value_type = T; 67 using Factory = ImmutableListFactory<T>; 150 using ListTy = ImmutableListImpl<T>; 151 using CacheTy = FoldingSet<ListTy>;
|
H A D | SCCIterator.h | 11 /// connected components (SCCs) of a graph in O(N+E) time using Tarjan's DFS 38 /// This is implemented using Tarjan's DFS algorithm using an internal stack to 45 using NodeRef = typename GT::NodeRef; 46 using ChildItTy = typename GT::ChildIteratorType; 47 using SccTy = std::vector<NodeRef>; 48 using reference = typename scc_iterator::reference; 76 /// The current SCC, retrieved using operator*(). 89 /// Compute the next SCC using the DFS traversal.
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | MachinePipeliner.h | 37 // 3) Attempt to schedule the nodes in the specified order using the MII. 111 /// and attempts to schedule the instructions using the SMS algorithm. 144 using NodeSetType = SmallVector<NodeSet, 8>; 145 using ValueMapTy = DenseMap<unsigned, unsigned>; 146 using MBBVectorTy = SmallVectorImpl<MachineBasicBlock *>; 147 using InstrMapTy = DenseMap<MachineInstr *, MachineInstr *>; 245 /// using an anti dependence from a Phi to an instruction. 328 using iterator = SetVector<SUnit *>::const_iterator; 543 using sched_iterator = DenseMap<int, std::deque<SUnit *>>::iterator; 544 using const_sched_iterato [all...] |
H A D | MachineDominators.h | 40 using MachineDomTreeNode = DomTreeNodeBase<MachineBasicBlock>; 47 using DomTreeT = DomTreeBase<MachineBasicBlock>; 171 /// block. This is the same as using operator[] on this class. 260 using NodeRef = Node *; 261 using ChildIteratorType = ChildIterator;
|
/third_party/skia/include/core/ |
H A D | SkImage.h | 292 @note When using a DDL recording context, textureReleaseProc will be called on the 325 @note When using a DDL recording context, textureReleaseProc will be called on the 352 /** Creates SkImage from pixmap. SkImage is uploaded to GPU back-end using context. 425 The image will remain planar with each plane converted to a texture using the passed 433 Currently, this is only supported using the GPU backend and will fail if context is nullptr. 452 using PromiseImageTextureContext = void*; 453 using PromiseImageTextureFulfillProc = 455 using PromiseImageTextureReleaseProc = void (*)(PromiseImageTextureContext); 687 using CubicResampler = SkCubicResampler; 885 using ReadPixelsContex [all...] |
H A D | SkYUVAPixmaps.h | 30 using PlaneConfig = SkYUVAInfo::PlaneConfig; 31 using Subsampling = SkYUVAInfo::Subsampling; 173 using DataType = SkYUVAPixmapInfo::DataType; 263 using ULL = unsigned long long; // bitset cons. takes this. in All()
|
/third_party/libunwind/libunwind/doc/ |
H A D | unw_set_caching_policy.tex | 27 \item[\Const{UNW\_CACHE\_GLOBAL}] Enables caching using a global cache 29 unsupported, \Prog{libunwind} may fall back on using a per-thread 31 \item[\Const{UNW\_CACHE\_PER\_THREAD}] Enables caching using 33 unsupported, \Prog{libunwind} may fall back on using a global cache,
|
/third_party/node/src/crypto/ |
H A D | crypto_context.h | 31 using GetSessionCb = SSL_SESSION* (*)(SSL*, const unsigned char*, int, int*); 32 using KeylogCb = void (*)(const SSL*, const char*); 33 using NewSessionCb = int (*)(SSL*, SSL_SESSION*); 34 using SelectSNIContextCb = int (*)(SSL*, int*, void*);
|
/third_party/node/deps/v8/src/compiler/ |
H A D | csa-load-elimination.h | 93 using InnerMap = PersistentMap<Node*, FieldInfo>; 95 using OuterMap = PersistentMap<OuterKey, InnerMap>; 97 using ConstantOffsetInfos = OuterMap<uint32_t>; 99 using UnknownOffsetInfos = OuterMap<Node*>;
|
/third_party/node/deps/v8/src/api/ |
H A D | api-arguments.h | 64 using T = PropertyCallbackInfo<Value>; 65 using Super = CustomArguments<T>; 156 using T = FunctionCallbackInfo<Value>; 157 using Super = CustomArguments<T>;
|
/third_party/node/deps/v8/src/inspector/ |
H A D | v8-inspector-impl.h | 169 using MuteExceptionsMap = std::unordered_map<int, int>; 172 using ContextByIdMap = 174 using ContextsByGroupMap = 181 using ConsoleStorageMap =
|
/third_party/node/deps/v8/src/objects/ |
H A D | descriptor-array.h | 36 using BodyDescriptor = StructBodyDescriptor; 218 using EntryKeyField = TaggedField<HeapObject, kEntryKeyOffset>; 219 using EntryDetailsField = TaggedField<Smi, kEntryDetailsOffset>; 220 using EntryValueField = TaggedField<MaybeObject, kEntryValueOffset>;
|
/third_party/skia/third_party/externals/spirv-tools/source/opt/ |
H A D | basic_block.h | 42 using iterator = InstructionList::iterator; 43 using const_iterator = InstructionList::const_iterator; 44 using reverse_iterator = std::reverse_iterator<InstructionList::iterator>; 45 using const_reverse_iterator =
|
H A D | type_manager.h | 73 using IdToTypeMap = std::unordered_map<uint32_t, Type*>; 205 using TypeToIdMap = std::unordered_map<const Type*, uint32_t, HashTypePointer, 207 using TypePool = 227 using IdToUnresolvedType = std::vector<UnresolvedType>;
|
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/ |
H A D | basic_block.h | 42 using iterator = InstructionList::iterator; 43 using const_iterator = InstructionList::const_iterator; 44 using reverse_iterator = std::reverse_iterator<InstructionList::iterator>; 45 using const_reverse_iterator =
|
H A D | type_manager.h | 73 using IdToTypeMap = std::unordered_map<uint32_t, Type*>; 212 using TypeToIdMap = std::unordered_map<const Type*, uint32_t, HashTypePointer, 214 using TypePool = 234 using IdToUnresolvedType = std::vector<UnresolvedType>;
|
/third_party/skia/src/sksl/ |
H A D | SkSLUtil.h | 281 using ShaderCapsClass = StandaloneShaderCaps; 282 using ShaderCapsPointer = std::unique_ptr<StandaloneShaderCaps>; 286 using ShaderCapsClass = GrShaderCaps; 287 using ShaderCapsPointer = std::unique_ptr<GrShaderCaps>;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
H A D | AArch64MachineFunctionInfo.h | 66 /// Number of TLS accesses using the special (combinable) 283 using SetOfInstructions = SmallPtrSet<const MachineInstr *, 16>; 295 using LOHArgs = ArrayRef<const MachineInstr *>; 306 using MILOHArgs = MILOHDirective::LOHArgs; 307 using MILOHContainer = SmallVector<MILOHDirective, 32>;
|
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/ |
H A D | randen_engine.h | 48 using result_type = T; 105 using sequence_result_type = typename SeedSequence::result_type; in reseed() 115 // to using an arbitrary generate() call, so use [rand.req.seed_seq] in reseed() 178 using numeric_type = in operator <<() 196 using numeric_type = in operator >>()
|
H A D | fast_uniform_bits.h | 41 using result_type = typename URBG::result_type; in RangeSize() 90 using result_type = UIntType; 102 "Class-template FastUniformBits<> must be parameterized using " 127 using tag = absl::conditional_t<IsPowerOfTwoOrZero(RangeSize<URBG>()), in operator ()() 165 using urbg_result_type = typename URBG::result_type; in Generate()
|
/third_party/skia/third_party/externals/abseil-cpp/absl/time/internal/cctz/include/cctz/ |
H A D | time_zone.h | 17 // times (represented by cctz::civil_second) using the rules defined by 38 using time_point = std::chrono::time_point<std::chrono::system_clock, D>; 39 using seconds = std::chrono::duration<std::int_fast64_t>; 40 using sys_seconds = seconds; // Deprecated. Use cctz::seconds instead. 62 // between absolute and civil times. Time zones are named using the TZ 122 // members will give the absolute time answers using the pre-transition 277 using femtoseconds = std::chrono::duration<std::int_fast64_t, std::femto>;
|
/third_party/spirv-tools/source/opt/ |
H A D | basic_block.h | 42 using iterator = InstructionList::iterator; 43 using const_iterator = InstructionList::const_iterator; 44 using reverse_iterator = std::reverse_iterator<InstructionList::iterator>; 45 using const_reverse_iterator =
|
H A D | type_manager.h | 73 using IdToTypeMap = std::unordered_map<uint32_t, Type*>; 216 using TypeToIdMap = std::unordered_map<const Type*, uint32_t, HashTypePointer, 218 using TypePool = 238 using IdToUnresolvedType = std::vector<UnresolvedType>;
|
/third_party/node/deps/v8/src/heap/ |
H A D | mark-compact.h | 104 using value_type = std::pair<HeapObject, int /* size */>; 105 using pointer = const value_type*; 106 using reference = const value_type&; 107 using iterator_category = std::forward_iterator_tag; 447 using MarkingState = MajorMarkingState; 448 using AtomicMarkingState = MajorAtomicMarkingState; 449 using NonAtomicMarkingState = MajorNonAtomicMarkingState; 451 using MarkingVisitor = MainMarkingVisitor<MarkingState>; 855 using MarkingState = MinorMarkingState; 856 using NonAtomicMarkingStat [all...] |