/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
H A D | vktSpvAsmTrinaryMinMaxTests.cpp | 150 using OperationComponent = std::pair<deUint32, deUint32>; 257 using FuncPair = std::pair<GenerateCompFunc, OperationFunc>; 833 static const std::vector<std::pair<OperationType, std::string>> operationTypes = in createTrinaryMinMaxGroup() 840 static const std::vector<std::pair<BaseType, std::string>> baseTypes = in createTrinaryMinMaxGroup() 847 static const std::vector<std::pair<TypeSize, std::string>> typeSizes = in createTrinaryMinMaxGroup() 855 static const std::vector<std::pair<AggregationType, std::string>> aggregationTypes = in createTrinaryMinMaxGroup()
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_free_install_test/ |
H A D | bms_bundle_free_install_test.cpp | 764 connectAbilityMgr->freeInstallParamsMap_.insert(pair<std::string, FreeInstallParams>("1", freeInstallParams)); in HWTEST_F() 781 connectAbilityMgr->freeInstallParamsMap_.insert(pair<std::string, FreeInstallParams>("1", freeInstallParams)); in HWTEST_F() 801 connectAbilityMgr->freeInstallParamsMap_.insert(pair<std::string, FreeInstallParams>("1", freeInstallParams)); in HWTEST_F() 822 connectAbilityMgr->freeInstallParamsMap_.insert(pair<std::string, FreeInstallParams>("1", freeInstallParams)); in HWTEST_F() 864 connectAbilityMgr->freeInstallParamsMap_.insert(pair<std::string, FreeInstallParams>("1", freeInstallParams)); in HWTEST_F() 890 connectAbilityMgr->freeInstallParamsMap_.insert(pair<std::string, FreeInstallParams>("1", freeInstallParams)); in HWTEST_F() 1236 connectAbilityMgr->freeInstallParamsMap_.insert(pair<std::string, FreeInstallParams>("1", freeInstallParams)); in HWTEST_F() 1258 innerBundleInfo.innerModuleInfos_.insert(pair<std::string, InnerModuleInfo>("1", innerModuleInfo)); in HWTEST_F() 2075 connectAbilityMgr->freeInstallParamsMap_.insert(pair<std::string, FreeInstallParams>("1", freeInstallParams)); in HWTEST_F()
|
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/service/rdb/ |
H A D | rdb_service_impl.cpp | 391 std::pair<int32_t, std::shared_ptr<RdbServiceImpl::ResultSet>> RdbServiceImpl::RemoteQuery(const RdbSyncerParam& param, 690 std::pair<int32_t, std::shared_ptr<RdbService::ResultSet>> RdbServiceImpl::QuerySharingResource( 721 std::pair<int32_t, std::shared_ptr<Cursor>> RdbServiceImpl::AllocResource(StoreInfo& storeInfo, 724 std::pair<int32_t, std::shared_ptr<Cursor>> result; 933 std::pair<int32_t, int32_t> RdbServiceImpl::GetInstIndexAndUser(uint32_t tokenId, const std::string &bundleName) 1210 std::pair<int32_t, uint32_t> RdbServiceImpl::LockCloudContainer(const RdbSyncerParam ¶m) 1212 std::pair<int32_t, uint32_t> result { RDB_ERROR, 0 }; 1282 debugInfo.insert(std::pair{ name, rdbInfo }); 1301 debugMeta.fileInfos.insert(std::pair{name, fileInfo});
|
/third_party/node/deps/v8/src/wasm/ |
H A D | wasm-engine.cc | 733 std::vector<std::pair<std::shared_ptr<NativeModule>, bool>> native_modules; in TierUpAllModulesPerIsolate() 1146 for (auto& pair : code_to_log) { in LogOutstandingCodesForIsolate() 1147 for (WasmCode* code : pair.second.code) { in LogOutstandingCodesForIsolate() 1149 code->LogCode(isolate, pair.second.source_url.get(), pair.first); in LogOutstandingCodesForIsolate() 1152 WasmCode::DecrementRefCount(base::VectorOf(pair.second.code)); in LogOutstandingCodesForIsolate() 1170 auto pair = native_modules_.insert(std::make_pair( in NewNativeModule() local 1172 DCHECK(pair.second); // inserted new entry. in NewNativeModule() 1173 pair.first->second.get()->isolates.insert(isolate); in NewNativeModule()
|
/third_party/node/deps/v8/src/objects/ |
H A D | feedback-vector.cc | 508 std::pair<MaybeObject, MaybeObject> NexusConfig::GetFeedbackPair( in GetFeedbackPair() 1268 auto pair = GetFeedbackPair(); in GetKeyType() local 1269 MaybeObject feedback = pair.first; in GetKeyType() 1272 Smi::ToInt(pair.second->template cast<Object>())); in GetKeyType() 1276 ? pair.second in GetKeyType() 1435 auto pair = nexus->GetFeedbackPair(); in FeedbackIterator() local 1436 MaybeObject feedback = pair.first; in FeedbackIterator() 1448 WeakFixedArray::cast(pair.second->GetHeapObjectAssumeStrong())); in FeedbackIterator() 1456 MaybeObject handler = pair.second; in FeedbackIterator()
|
/third_party/node/deps/v8/src/runtime/ |
H A D | runtime-object.cc | 1513 Handle<AccessorPair> pair = args.at<AccessorPair>(0); in RUNTIME_FUNCTION() local 1514 DCHECK(pair->setter().IsJSFunction()); in RUNTIME_FUNCTION() 1515 return pair->setter(); in RUNTIME_FUNCTION() 1521 Handle<AccessorPair> pair = args.at<AccessorPair>(0); in RUNTIME_FUNCTION() local 1522 DCHECK(pair->getter().IsJSFunction()); in RUNTIME_FUNCTION() 1523 return pair->getter(); in RUNTIME_FUNCTION() 1531 Handle<AccessorPair> pair = isolate->factory()->NewAccessorPair(); in RUNTIME_FUNCTION() local 1532 pair->SetComponents(args[0], args[1]); in RUNTIME_FUNCTION() 1533 return *pair; in RUNTIME_FUNCTION()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/TableGen/ |
H A D | Record.h | 1328 ArrayRef<std::pair<Init*, StringInit*>> Args); 1439 SmallVector<std::pair<Record *, SMRange>, 0> SuperClasses; 1509 ArrayRef<std::pair<Record *, SMRange>> getSuperClasses() const { in getSuperClasses() 1787 SmallVector<std::pair< bool, StringRef>, 4> Parts; 1812 std::pair<bool, StringRef> getPart(size_t i) { in getPart() 1831 std::pair<bool, StringRef> LHSPart = LHSParts.getPart(I); 1832 std::pair<bool, StringRef> RHSPart = RHSParts.getPart(I); 1840 std::pair<bool, StringRef> LHSPart = LHSParts.getPart(I); 1841 std::pair<bool, StringRef> RHSPart = RHSParts.getPart(I);
|
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_installer_test/ |
H A D | bms_bundle_installer_test.cpp | 2099 newInfo.innerModuleInfos_.insert(pair<std::string, InnerModuleInfo>(MODULE_NAME, moduleInfo)); in HWTEST_F() 2141 newInfo.innerModuleInfos_.insert(pair<std::string, InnerModuleInfo>(MODULE_NAME, moduleInfo)); in HWTEST_F() 3130 pair<std::string, InnerModuleInfo>("moduleName", innerModuleInfo)); in HWTEST_F() 3131 infos.insert(pair<std::string, InnerBundleInfo>("moduleName", innerBundleInfo)); in HWTEST_F() 3181 pair<std::string, InnerModuleInfo>("moduleName", innerModuleInfo)); in HWTEST_F() 3182 infos.insert(pair<std::string, InnerBundleInfo>("moduleName", innerBundleInfo)); in HWTEST_F() 3427 pair<std::string, InnerModuleInfo>("moduleName", innerModuleInfo)); in HWTEST_F() 3428 infos.insert(pair<std::string, InnerBundleInfo>("moduleName", innerBundleInfo)); in HWTEST_F() 3466 pair<std::string, InnerModuleInfo>("moduleName", innerModuleInfo)); in HWTEST_F() 3467 infos.insert(pair<st in HWTEST_F() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
H A D | LoopVectorize.cpp | 998 std::pair<unsigned, unsigned> getSmallestAndWidestTypes(); 1142 std::pair<Instruction *, unsigned> InstOnVF = std::make_pair(I, VF); in getWideningDecision() 1153 std::pair<Instruction *, unsigned> InstOnVF = std::make_pair(I, VF); in getWideningCost() 1326 using VectorizationCostTy = std::pair<unsigned, bool>; 1448 using DecisionList = DenseMap<std::pair<Instruction *, unsigned>, 1449 std::pair<InstWidening, unsigned>>; 5058 for (auto& pair : RUs[i].MaxLocalUsers) { 5059 unsigned TargetNumRegisters = TTI.getNumberOfRegisters(pair.first); 5060 if (pair.second > TargetNumRegisters) 5130 std::pair<unsigne [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeFloatTypes.cpp | 154 std::pair<SDValue, SDValue> Tmp = TLI.makeLibCall(DAG, LC, NVT, Op, in SoftenFloatRes_Unary() 175 std::pair<SDValue, SDValue> Tmp = TLI.makeLibCall(DAG, LC, NVT, Ops, in SoftenFloatRes_Binary() 194 // Convert the inputs to integers, and build a new pair out of them. in SoftenFloatRes_BUILD_PAIR() 423 std::pair<SDValue, SDValue> Tmp = TLI.makeLibCall(DAG, in SoftenFloatRes_FMA() 497 std::pair<SDValue, SDValue> Tmp = TLI.makeLibCall(DAG, LC, NVT, Op, in SoftenFloatRes_FP_EXTEND() 534 std::pair<SDValue, SDValue> Tmp = TLI.makeLibCall(DAG, LC, NVT, Op, in SoftenFloatRes_FP_ROUND() 577 std::pair<SDValue, SDValue> Tmp = TLI.makeLibCall(DAG, LC, NVT, Ops, in SoftenFloatRes_FPOWI() 748 std::pair<SDValue, SDValue> Tmp = in SoftenFloatRes_XINT_TO_FP() 840 std::pair<SDValue, SDValue> Tmp = TLI.makeLibCall(DAG, LC, RVT, Op, in SoftenFloatOp_FP_ROUND() 905 std::pair<SDValu in SoftenFloatOp_FP_TO_XINT() [all...] |
/foundation/bundlemanager/bundle_framework/services/bundlemgr/test/unittest/bms_bundle_app_control_test/ |
H A D | bms_bundle_app_control_test.cpp | 730 impl->callingNameMap_.insert(pair<int32_t, std::string>(0, AppControlConstants::EDM_CALLING)); in HWTEST_F() 763 impl->callingNameMap_.insert(pair<int32_t, std::string>(0, AppControlConstants::EDM_CALLING)); in HWTEST_F() 780 impl->callingNameMap_.insert(pair<int32_t, std::string>(0, AppControlConstants::EDM_CALLING)); in HWTEST_F() 827 impl->callingNameMap_.insert(pair<int32_t, std::string>(0, AppControlConstants::EDM_CALLING)); in HWTEST_F() 856 impl->callingNameMap_.insert(pair<int32_t, std::string>(0, AppControlConstants::EDM_CALLING)); in HWTEST_F() 873 impl->callingNameMap_.insert(pair<int32_t, std::string>(0, AppControlConstants::EDM_CALLING)); in HWTEST_F() 906 impl->callingNameMap_.insert(pair<int32_t, std::string>(0, AppControlConstants::EDM_CALLING)); in HWTEST_F() 922 impl->callingNameMap_.insert(pair<int32_t, std::string>(0, AppControlConstants::EDM_CALLING)); in HWTEST_F() 951 impl->callingNameMap_.insert(pair<int32_t, std::string>(0, AppControlConstants::EDM_CALLING)); in HWTEST_F() 979 impl->callingNameMap_.insert(pair<int32_ in HWTEST_F() [all...] |
/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/recording/ |
H A D | draw_cmd.h | 132 std::pair<UnmarshallingFunc, size_t> GetFuncAndSize(uint32_t type); 262 ConstructorHandle(PointMode mode, const std::pair<size_t, size_t>& pts, const PaintHandle& paintHandle) in ConstructorHandle() 266 std::pair<size_t, size_t> pts; 700 ConstructorHandle(const OpDataHandle& atlas, const std::pair<size_t, size_t>& xform, in ConstructorHandle() 701 const std::pair<size_t, size_t>& tex, const std::pair<size_t, size_t>& colors, BlendMode mode, in ConstructorHandle() 709 std::pair<size_t, size_t> xform; 710 std::pair<size_t, size_t> tex; 711 std::pair<size_t, size_t> colors; 1324 ConstructorHandle(const std::pair<size_ [all...] |
/foundation/ai/neural_network_runtime/frameworks/native/neural_network_runtime/ |
H A D | hdi_device_v1_0.h | 74 std::pair<uint32_t, uint32_t> m_hdiVersion;
|
H A D | register_hdi_device_v2_0.cpp | 63 std::pair<uint32_t, uint32_t> hdiVersion; in HDIDeviceV2_0Creator()
|
/foundation/ability/form_fwk/services/src/ |
H A D | form_render_connection.cpp | 61 std::map<std::string, std::pair<sptr<FormAshmem>, int32_t>> imageDataMap; in OnAbilityConnectDone()
|
/foundation/ability/form_fwk/test/unittest/form_provider_info_test/ |
H A D | form_provider_info_test.cpp | 108 std::map<std::string, std::pair<sptr<FormAshmem>, int32_t>> imageDataMap; in HWTEST_F()
|
/foundation/ability/form_fwk/test/unittest/fms_form_js_info_test/ |
H A D | fms_form_js_info_test.cpp | 192 std::map<std::string, std::pair<sptr<FormAshmem>, int32_t>> imageDataMap; in HWTEST_F()
|
/foundation/CastEngine/castengine_cast_framework/interfaces/kits/js/include/ |
H A D | napi_cast_session.h | 86 static std::map<std::string, std::pair<OnEventHandlerType, OffEventHandlerType>> eventHandlers_;
|
/foundation/CastEngine/castengine_cast_plus_stream/src/channel/src/softbus/ |
H A D | softbus_connection.h | 41 static std::pair<bool, std::shared_ptr<SoftBusConnection>> GetConnection(int sessionId);
|
/foundation/CastEngine/castengine_cast_framework/service/include/ |
H A D | cast_session_manager_service.h | 80 std::vector<std::pair<pid_t, sptr<ICastServiceListenerImpl>>> listeners_;
|
/foundation/arkui/ace_engine/frameworks/core/components/declaration/svg/ |
H A D | svg_fe_func_declaration.h | 145 bool SetSpecializedValue(const std::pair<std::string, std::string>& attr) override;
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/animation/ |
H A D | geometry_transition.h | 75 std::pair<RefPtr<FrameNode>, RefPtr<FrameNode>> GetMatchedPair(bool isNodeIn) const;
|
/foundation/arkui/ace_engine/frameworks/core/components/svg/parse/ |
H A D | svg_context.h | 57 void PushStyle(const std::string& styleName, const std::pair<std::string, std::string>& attrPair) in PushStyle()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/grid/ |
H A D | grid_model.h | 69 std::function<std::pair<std::optional<float>, std::optional<float>>(int32_t, Dimension)>&& value) = 0;
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/list/ |
H A D | list_lanes_layout_algorithm.h | 77 void LayoutCachedALine(LayoutWrapper* layoutWrapper, std::pair<const int, ListItemInfo>& pos,
|