Home
last modified time | relevance | path

Searched refs:using (Results 376 - 400 of 6071) sorted by relevance

1...<<11121314151617181920>>...243

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
H A DReachingDefAnalysis.h45 using LiveRegsDefInfo = std::vector<int>;
51 using OutRegsInfoMap = SmallVector<LiveRegsDefInfo, 4>;
63 using MBBRegUnitDefs = SmallVector<int, 1>;
65 using MBBDefsInfo = std::vector<MBBRegUnitDefs>;
67 using MBBReachingDefsInfo = SmallVector<MBBDefsInfo, 4>;
/foundation/ai/intelligent_voice_framework/services/intell_voice_trigger/server/connector_mgr/
H A Dtrigger_connector.h33 using OHOS::HDI::ServiceManager::V1_0::ServiceStatus;
34 using OHOS::HDI::ServiceManager::V1_0::ServStatListenerStub;
36 using OHOS::HDI::IntelligentVoice::Trigger::V1_0::IIntellVoiceTriggerCallback;
37 using OHOS::HDI::IntelligentVoice::Trigger::V1_0::IntellVoiceRecognitionEvent;
38 using OHOS::HDI::IntelligentVoice::Trigger::V1_0::IntellVoiceTriggerAdapterDsecriptor;
39 using OHOS::HDI::IntelligentVoice::Trigger::V1_0::IntellVoiceTriggerProperties;
41 using OnServiceStartCb = std::function<void(const IntellVoiceTriggerAdapterDsecriptor &desc)>;
/foundation/ability/ability_runtime/interfaces/kits/native/ability/native/ability_runtime/
H A Djs_ability.h29 using Ability = AppExecFwk::Ability;
30 using AbilityHandler = AppExecFwk::AbilityHandler;
31 using AbilityInfo = AppExecFwk::AbilityInfo;
32 using OHOSApplication = AppExecFwk::OHOSApplication;
33 using Want = AppExecFwk::Want;
34 using AbilityStartSetting = AppExecFwk::AbilityStartSetting;
35 using Configuration = AppExecFwk::Configuration;
/foundation/graphic/graphic_3d/lume/LumeEngine/api/core/threading/
H A Dintf_thread_pool.h46 using Ptr = BASE_NS::refcnt_ptr<IThreadPool>;
60 using Ptr = BASE_NS::unique_ptr<ITask, Deleter>;
80 using Ptr = BASE_NS::unique_ptr<IResult, Deleter>;
155 using Ptr = BASE_NS::unique_ptr<IDispatcherTaskQueue, Deleter>;
176 using Ptr = BASE_NS::unique_ptr<IParallelTaskQueue, Deleter>;
196 using Ptr = BASE_NS::unique_ptr<ISequentialTaskQueue, Deleter>;
211 using Ptr = BASE_NS::refcnt_ptr<ITaskQueueFactory>;
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/interfaces/include/cloud/
H A Dcloud_store_types.h87 using Nil = std::monostate;
88 using Assets = std::vector<Asset>;
89 using Bytes = std::vector<uint8_t>;
90 using Entries = std::map<std::string, std::string>;
91 using Type = std::variant<Nil, int64_t, double, std::string, bool, Bytes, Asset, Assets, Entries>;
92 using VBucket = std::map<std::string, Type>;
93 using GenerateCloudVersionCallback = std::function<std::string(const std::string &originVersion)>;
/third_party/gn/src/gn/
H A Dpointer_set.h62 using NodeType = PointerSetNode;
63 using BaseType = HashTableBase<NodeType>;
137 // is slightly more efficient than using range insertion
166 using iterator_category = std::forward_iterator_tag;
167 using difference_type = std::ptrdiff_t;
168 using value_type = T*;
169 using pointer = T**;
170 using reference = T*&;
192 // Convert this to a vector, more convenient and slightly faster than using
/third_party/node/src/crypto/
H A Dcrypto_dh.h63 // Diffie-Hellman can either generate keys using a fixed prime, or by first
73 using DhKeyPairGenConfig = KeyPairGenConfig<DhKeyPairParams>;
76 using AdditionalParameters = DhKeyPairGenConfig;
88 using DHKeyPairGenJob = KeyGenJob<KeyPairGenTraits<DhKeyGenTraits>>;
98 using AdditionalParameters = DHKeyExportConfig;
112 using DHKeyExportJob = KeyExportJob<DHKeyExportTraits>;
123 using AdditionalParameters = DHBitsConfig;
146 using DHBitsJob = DeriveBitsJob<DHBitsTraits>;
/third_party/node/deps/v8/src/base/
H A Dbit-field.h18 // Instantiate them via 'using', which is cheaper than deriving a new class:
19 // using MyBitField = base::BitField<MyEnum, 4, 2>;
31 using FieldType = T;
35 // without using a shift count of x in the computation.
46 using Next = BitField<T2, kShift + kSize, size2, U>;
71 using BitField8 = BitField<T, shift, size, uint8_t>;
74 using BitField16 = BitField<T, shift, size, uint16_t>;
77 using BitField64 = BitField<T, shift, size, uint64_t>;
102 using Name = base::BitField<Type, RangesName::k##Name##Start, Size>;
105 using Nam
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
H A DGenericIteratedDominanceFrontier.h9 /// Compute iterated dominance frontiers using a linear time algorithm.
19 /// to directly compute pruned SSA using per-variable liveness information.
40 using NodeRef = typename GraphTraits<NodeTy>::NodeRef;
41 using ChildrenTy = SmallVector<NodeRef, 8>;
54 /// pruned using the live-in set.
59 using OrderedNodeTy =
61 using ChildrenGetterTy =
99 /// the file-level comment. It performs DF->IDF pruning using the live-in
121 using OrderedNodeTy = in get()
137 using DomTreeNodePai in calculate()
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DBitmaskEnum.h33 /// instance of the underlying type (e.g. int). But using this macro, bitwise
47 /// Suppose you have an enum foo::bar::MyEnum. Before using
56 using ::llvm::BitmaskEnumDetail::operator~; \
57 using ::llvm::BitmaskEnumDetail::operator|; \
58 using ::llvm::BitmaskEnumDetail::operator&; \
59 using ::llvm::BitmaskEnumDetail::operator^; \
60 using ::llvm::BitmaskEnumDetail::operator|=; \
61 using ::llvm::BitmaskEnumDetail::operator&=; \
63 using ::llvm::BitmaskEnumDetail::operator^=
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 Dhash_policy_traits.h34 using key_type = typename Policy::key_type;
73 using slot_type = typename Policy::slot_type;
78 using init_type = typename Policy::init_type;
80 using reference = decltype(Policy::element(std::declval<slot_type*>()));
81 using pointer = typename std::remove_reference<reference>::type*;
82 using value_type = typename std::remove_reference<reference>::type;
88 using constant_iterators = ConstantIteratorsImpl<>;
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/skia/third_party/externals/abseil-cpp/absl/random/
H A Duniform_real_distribution.h66 using result_type = RealType;
70 using distribution_type = uniform_real_distribution;
101 "parameterized using a floating-point type.");
157 using random_internal::GeneratePositiveTag; in operator ()()
158 using random_internal::GenerateRealFromBits; in operator ()()
159 using real_type = in operator ()()
188 using param_type = typename uniform_real_distribution<RealType>::param_type; in operator >>()
189 using result_type = typename uniform_real_distribution<RealType>::result_type; in operator >>()
H A Dexponential_distribution.h38 using result_type = RealType;
42 using distribution_type = exponential_distribution;
68 "using a floating-point type.");
123 using random_internal::GenerateNegativeTag; in operator ()()
124 using random_internal::GenerateRealFromBits; in operator ()()
125 using real_type = in operator ()()
150 using result_type = typename exponential_distribution<RealType>::result_type; in operator >>()
151 using param_type = typename exponential_distribution<RealType>::param_type; in operator >>()
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/scrollable/
H A Dscrollable_properties.h452 using OnScrollEvent = std::function<void(Dimension, ScrollState)>;
453 using OnDidScrollEvent = std::function<void(Dimension, ScrollState, bool, bool)>;
454 using OnWillScrollEvent = std::function<ScrollFrameResult(Dimension, ScrollState, ScrollSource)>;
455 using OnScrollBeginEvent = std::function<ScrollInfo(Dimension, Dimension)>;
456 using OnScrollFrameBeginEvent = std::function<ScrollFrameResult(Dimension, ScrollState)>;
457 using OnScrollStartEvent = std::function<void()>;
458 using OnScrollStopEvent = std::function<void()>;
459 using OnReachEvent = std::function<void()>;
460 using OnScrollIndexEvent = std::function<void(int32_t, int32_t, int32_t)>;
461 using OnScrollVisibleContentChangeEven
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/cloud/
H A Dcloud_service_impl.h35 using StoreMetaData = DistributedData::StoreMetaData;
36 using StoreInfo = DistributedData::StoreInfo;
74 using StaticActs = DistributedData::StaticActs;
92 using CloudInfo = DistributedData::CloudInfo;
93 using SchemaMeta = DistributedData::SchemaMeta;
94 using Event = DistributedData::Event;
95 using CloudEvent = DistributedData::CloudEvent;
96 using Subscription = DistributedData::Subscription;
97 using Handle = bool (CloudServiceImpl::*)(int32_t);
98 using Handle
[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...]
/foundation/ability/idl_tool/idl_tool_2/codegen/
H A Dcode_generator.h28 using CodeEmitMap = std::unordered_map<std::string, AutoPtr<CodeEmitter>>;
29 using CodeGenFunc = std::function<void(const AutoPtr<AST>&, const std::string&)>;
30 using StrAstMap = std::unordered_map<std::string, AutoPtr<AST>>;
39 using GeneratorEntry = std::map<InterfaceType, AutoPtr<CodeGenerator>>;
/foundation/CastEngine/castengine_wifi_display/services/protocol/rtp/include/
H A Drtp_codec.h27 using Ptr = std::shared_ptr<RtpDecoder>;
28 using OnFrame = std::function<void(const Frame::Ptr &frame)>;
43 using Ptr = std::shared_ptr<RtpEncoder>;
44 using OnRtpPack = std::function<void(const RtpPacket::Ptr &rtp)>;
/foundation/ability/ability_runtime/frameworks/js/napi/app/app_manager/
H A Djs_app_manager_utils.h25 using OHOS::AppExecFwk::AppStateData;
26 using OHOS::AppExecFwk::AbilityStateData;
27 using OHOS::AppExecFwk::ProcessData;
28 using OHOS::AppExecFwk::RunningProcessInfo;
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/state_manage/
H A Dcj_persistent_storage_ffi.h25 using NotifyCallbackString = void (*)(const char* key, const char* value);
26 using NotifyCallbackInt64 = void (*)(const char* key, int64_t value);
27 using NotifyCallbackFloat64 = void (*)(const char* key, double value);
28 using NotifyCallbackBool = void (*)(const char* key, bool value);
/foundation/resourceschedule/device_usage_statistics/services/common/include/
H A Dbundle_active_app_state_observer.h28 using OHOS::AppExecFwk::ApplicationStateObserverStub;
29 using OHOS::AppExecFwk::AppStateData;
30 using OHOS::AppExecFwk::AbilityStateData;
31 using OHOS::AppExecFwk::ProcessData;
/foundation/communication/netmanager_ext/frameworks/js/napi/sharing/include/
H A Dnetshare_issharing_context.h53 using IsSharingSupportedContext = NetShareIsSharingContext;
54 using GetStatsTotalBytesContext = NetShareIsSharingContext;
55 using GetStatsRxBytesContext = NetShareIsSharingContext;
56 using GetStatsTxBytesContext = NetShareIsSharingContext;

Completed in 14 milliseconds

1...<<11121314151617181920>>...243