Home
last modified time | relevance | path

Searched refs:tags (Results 1 - 25 of 40) sorted by relevance

12

/foundation/graphic/graphic_2d/rosen/modules/texgine/src/opentype_parser/
H A Dopentype_basic_type.cpp31 // 5 is the size of open type table tags length in Get()
34 tagsWithZero[0] = tags[0]; // numbers means array subscripts in Get()
35 tagsWithZero[1] = tags[1]; in Get()
36 tagsWithZero[2] = tags[2]; in Get()
37 tagsWithZero[3] = tags[3]; in Get()
H A Dopentype_basic_type.h26 char tags[4]; member
/foundation/multimedia/media_foundation/engine/plugin/plugins/source/http_source/hls/
H A Dm3u8.cpp71 auto tags = ParseEntries(playList); in Update() local
72 UpdateFromTags(tags); in Update()
73 tags.clear(); in Update()
132 void M3U8::UpdateFromTags(std::list<std::shared_ptr<Tag>>& tags) in UpdateFromTags() argument
135 info.bVod = !tags.empty() && tags.back()->GetType() == HlsTag::EXTXENDLIST; in UpdateFromTags()
137 for (auto& tag : tags) { in UpdateFromTags()
209 auto tags = ParseEntries(playList_); in UpdateMasterPlaylist() local
210 std::for_each(tags.begin(), tags in UpdateMasterPlaylist()
[all...]
/foundation/resourceschedule/soc_perf/test/unittest/
H A Dsocperf_sub_test.cpp350 std::vector<int32_t> tags; in HWTEST_F() local
351 tags.push_back(1001); in HWTEST_F()
353 EXPECT_NE(tags.size(), configs.size()); in HWTEST_F()
355 EXPECT_EQ(tags.size(), configs.size()); in HWTEST_F()
356 OHOS::SOCPERF::SocPerfClient::GetInstance().LimitRequest(clientId_power, tags, configs, ""); in HWTEST_F()
368 std::vector<int32_t> tags; in HWTEST_F() local
369 tags.push_back(1000); in HWTEST_F()
370 tags.push_back(1001); in HWTEST_F()
372 EXPECT_NE(tags.size(), configs.size()); in HWTEST_F()
375 EXPECT_EQ(tags in HWTEST_F()
382 std::vector<int32_t> tags; SocPerfSubTestLimitRequestTask() local
[all...]
H A Dsocperf_server_test.cpp439 const std::vector<int32_t>& tags, const std::vector<int64_t>& configs, const std::string& msg) override {}
502 std::vector<int32_t> tags = {1001}; in HWTEST_F() local
503 data.WriteInt32Vector(tags); in HWTEST_F()
605 std::vector<int32_t> tags = {1001}; in HWTEST_F() local
606 dataLimit.WriteInt32Vector(tags); in HWTEST_F()
/foundation/multimodalinput/input/intention/adapters/input_adapter/src/
H A Dinput_adapter.cpp113 uint32_t tags { 0u }; in AddInterceptor()
115 tags |= MMI::CapabilityToTags(MMI::INPUT_DEV_CAP_POINTER); in AddInterceptor()
118 tags |= MMI::CapabilityToTags(MMI::INPUT_DEV_CAP_KEYBOARD); in AddInterceptor()
120 if (tags == 0u) { in AddInterceptor()
126 int32_t interceptorId = MMI::InputManager::GetInstance()->AddInterceptor(interceptor, DEFAULT_PRIORITY, tags); in AddInterceptor()
142 uint32_t tags = CapabilityToTags(MMI::INPUT_DEV_CAP_POINTER); in AddFilter() local
143 int32_t filterId = MMI::InputManager::GetInstance()->AddInputEventFilter(filter, DEFAULT_PRIORITY, tags); in AddFilter()
/foundation/multimedia/camera_framework/interfaces/inner_api/native/camera/include/output/
H A Dcapture_output.h55 * @brief Get Observed matadata tags
56 * Register tags into capture session. If the tags data changes,{@link OnControlMetadataChanged} will be
58 * @return Observed tags
63 const static std::set<camera_device_metadata_tag_t> tags = {}; in GetObserverControlTags() local
64 return tags; in GetObserverControlTags()
68 * @brief Get Observed matadata tags
69 * Register tags into capture session. If the tags data changes,{@link OnResultMetadataChanged} will be
71 * @return Observed tags
76 const static std::set<camera_device_metadata_tag_t> tags = {}; GetObserverResultTags() local
[all...]
/foundation/distributeddatamgr/datamgr_service/services/distributeddataservice/framework/test/
H A Dutils_test.cpp215 uint8_t tags[10];
222 EXPECT_FALSE(constant.DCopy(tags, tagLen, src, srcLen));
224 EXPECT_FALSE(constant.DCopy(tags, tagsLen, src, srcsLen));
226 EXPECT_FALSE(constant.DCopy(tags, tagLen, srcs, srcLen));
227 EXPECT_TRUE(constant.DCopy(tags, tagsLen, srcs, srcsLen));
/foundation/multimodalinput/input/frameworks/proxy/events/src/
H A Dinput_device.cpp138 uint32_t tags = CapabilityToTags(static_cast<InputDeviceCapability>(cap)); in HasCapability() local
139 if ((tags & deviceTags) == tags) { in HasCapability()
/foundation/resourceschedule/soc_perf/services/server/src/
H A Dsocperf_stub.cpp194 std::vector<int32_t> tags; in StubLimitRequest() local
195 if (!data.ReadInt32Vector(&tags)) { in StubLimitRequest()
196 SOC_PERF_LOGE("error tags to do StubLimitRequest"); in StubLimitRequest()
199 if (tags.size() == MSG_VECTOR_INVALID_LEN || tags.size() > MSG_VECTOR_MAX_LEN) { in StubLimitRequest()
200 SOC_PERF_LOGE("error tags to do StubLimitRequest"); in StubLimitRequest()
223 LimitRequest(clientId, tags, configs, msg); in StubLimitRequest()
H A Dsocperf_server.cpp83 .append(" 3. LimitRequest(clientId, tags, configs, msg)\n") in Dump()
113 const std::vector<int32_t>& tags, const std::vector<int64_t>& configs, const std::string& msg) in LimitRequest()
115 socPerf.LimitRequest(clientId, tags, configs, msg); in LimitRequest()
112 LimitRequest(int32_t clientId, const std::vector<int32_t>& tags, const std::vector<int64_t>& configs, const std::string& msg) LimitRequest() argument
/foundation/multimedia/av_codec/services/media_engine/plugins/source/http_source/hls/
H A Dm3u8.cpp109 auto tags = ParseEntries(playList); in Update() local
110 UpdateFromTags(tags); in Update()
111 tags.clear(); in Update()
175 void M3U8::UpdateFromTags(std::list<std::shared_ptr<Tag>>& tags) in UpdateFromTags() argument
182 for (auto& tag : tags) { in UpdateFromTags()
480 auto tags = ParseEntries(playList_); in UpdateMasterPlaylist() local
481 std::for_each(tags.begin(), tags.end(), [this] (std::shared_ptr<Tag>& tag) { in UpdateMasterPlaylist()
521 tags.clear(); in UpdateMasterPlaylist()
/foundation/resourceschedule/soc_perf/interfaces/inner_api/socperf_client/include/
H A Di_socperf_service.h68 const std::vector<int32_t>& tags, const std::vector<int64_t>& configs, const std::string& msg) = 0;
H A Dsocperf_proxy.h68 const std::vector<int32_t>& tags, const std::vector<int64_t>& configs, const std::string& msg) override;
H A Dsocperf_client.h74 const std::vector<int32_t>& tags, const std::vector<int64_t>& configs, const std::string& msg);
/foundation/multimedia/av_session/frameworks/native/ohavsession/src/
H A DOHAVMetadataBuilder.cpp106 AVMetadata_Result OHAVMetadataBuilder::SetDisplayTags(int32_t tags) in SetDisplayTags() argument
108 tags_ = tags; in SetDisplayTags()
377 AVMetadata_Result OH_AVMetadataBuilder_SetDisplayTags(OH_AVMetadataBuilder* builder, int32_t tags) in OH_AVMetadataBuilder_SetDisplayTags() argument
380 if (tags != AVSESSION_DISPLAYTAG_AUDIO_VIVID) { in OH_AVMetadataBuilder_SetDisplayTags()
384 return metadata->SetDisplayTags(tags); in OH_AVMetadataBuilder_SetDisplayTags()
/foundation/resourceschedule/soc_perf/interfaces/inner_api/socperf_client/src/
H A Dsocperf_client.cpp148 const std::vector<int32_t>& tags, const std::vector<int64_t>& configs, const std::string& msg) in LimitRequest()
155 client->LimitRequest(clientId, tags, configs, newMsg); in LimitRequest()
147 LimitRequest(int32_t clientId, const std::vector<int32_t>& tags, const std::vector<int64_t>& configs, const std::string& msg) LimitRequest() argument
H A Dsocperf_proxy.cpp80 const std::vector<int32_t>& tags, const std::vector<int64_t>& configs, const std::string& msg) in LimitRequest()
89 data.WriteInt32Vector(tags); in LimitRequest()
79 LimitRequest(int32_t clientId, const std::vector<int32_t>& tags, const std::vector<int64_t>& configs, const std::string& msg) LimitRequest() argument
/foundation/resourceschedule/soc_perf/test/testutil/
H A Dsocperf_test.cpp89 char* tags = argv[3]; in LimitRequest() local
91 std::vector<int32_t> tagsVector = { atoi(tags) }; in LimitRequest()
/foundation/multimedia/av_session/interfaces/kits/c/
H A Dnative_avmetadata.h331 * @brief Set the display tags of the resource
334 * @param tags The display tags of resource which are supported by this app to be displayed on the media center
340 AVMetadata_Result OH_AVMetadataBuilder_SetDisplayTags(OH_AVMetadataBuilder* builder, int32_t tags);
/foundation/resourceschedule/soc_perf/services/server/include/
H A Dsocperf_server.h38 const std::vector<int32_t>& tags, const std::vector<int64_t>& configs, const std::string& msg) override;
/foundation/resourceschedule/soc_perf/test/fuzztest/include/
H A Dsocperf_fuzz_mock.h33 void LimitRequest(int32_t clientId, const std::vector <int32_t> &tags, const std::vector <int64_t> &configs,
/foundation/multimedia/av_codec/test/unittest/hls_test/
H A Dm3u8_unit_test.cpp86 std::list<std::shared_ptr<Tag>> tags; in HWTEST_F() local
87 m3u8.UpdateFromTags(tags); in HWTEST_F()
90 m3u8.UpdateFromTags(tags); in HWTEST_F()
95 m3u8.UpdateFromTags(tags); in HWTEST_F()
/foundation/resourceschedule/soc_perf/services/core/src/
H A Dsocperf.cpp249 const std::vector<int32_t>& tags, const std::vector<int64_t>& configs, const std::string& msg) in LimitRequest()
255 if (tags.size() != configs.size()) { in LimitRequest()
256 SOC_PERF_LOGE("tags'size and configs' size must be the same!"); in LimitRequest()
266 for (int32_t i = 0; i < (int32_t)tags.size(); i++) { in LimitRequest()
267 trace_str.append(",tags[").append(std::to_string(tags[i])).append("]"); in LimitRequest()
269 SendLimitRequestEvent(clientId, tags[i], configs[i]); in LimitRequest()
248 LimitRequest(int32_t clientId, const std::vector<int32_t>& tags, const std::vector<int64_t>& configs, const std::string& msg) LimitRequest() argument
/foundation/arkui/ace_engine/frameworks/core/components/picker/
H A Drender_picker_base.cpp617 std::vector<std::string> tags; in HandleSwitch() local
618 data_->OnLunarCallback(checked, tags); in HandleSwitch()
619 for (const auto& tag : tags) { in HandleSwitch()
643 std::vector<std::string> tags; in HandleColumnChange() local
644 data_->OnDataLinking(tag, isAdd, index, tags); in HandleColumnChange()
645 for (const auto& tag : tags) { in HandleColumnChange()

Completed in 13 milliseconds

12