/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/ |
H A D | text_picker_composed_element.cpp | 27 { "range", [](const TextPickerComposedElement& inspector) { return inspector.GetRange(); } }
36 DumpLog::GetInstance().AddDesc(std::string("range: ").append(GetRange()));
in Dump() 66 std::string TextPickerComposedElement::GetRange() const
in GetRange() function in OHOS::Ace::V2::TextPickerComposedElement 70 auto range = render->GetRange();
in GetRange()
|
H A D | picker_text_dialog_composed_element.cpp | 48 jsonValue->Put("range", GetRange());
in GetShow() 73 std::unique_ptr<JsonValue> PickerTextDialogComposedElement::GetRange() const
in GetRange() function in OHOS::Ace::V2::PickerTextDialogComposedElement 78 auto range = render->GetRange();
in GetRange()
|
H A D | text_picker_composed_element.h | 36 std::string GetRange() const;
|
H A D | picker_text_dialog_composed_element.h | 37 std::unique_ptr<JsonValue> GetRange() const;
|
/foundation/multimedia/media_foundation/test/unittest/ |
H A D | TestDataPacker.cpp | 121 dataPacker->GetRange(3, 2, bufferOut); in HWTEST_F() 134 dataPacker->GetRange(3, 4, bufferOut); in HWTEST_F() 136 dataPacker->GetRange(5, 2, bufferOut); in HWTEST_F() 149 dataPacker->GetRange(3, 4, bufferOut); in HWTEST_F() 153 dataPacker->GetRange(11, 2, bufferOut); in HWTEST_F() 166 ASSERT_TRUE(dataPacker->GetRange(0, 15, bufferOut)); in HWTEST_F()
|
/foundation/arkui/ace_engine/test/unittest/core/accessibility/ |
H A D | js_third_provider_interaction_operation_utils_test.cpp | 53 accessibilityElementInfo.GetRange().GetMin(), in FillNativeAccessibilityElementInfoPart() 54 accessibilityElementInfo.GetRange().GetMax(), in FillNativeAccessibilityElementInfoPart() 55 accessibilityElementInfo.GetRange().GetCurrent()}; in FillNativeAccessibilityElementInfoPart() 230 EXPECT_EQ(beforeInfo.GetRange().GetMin(), in CheckTransformElementInfoResultPart() 231 afterInfo.GetRange().GetMin()); in CheckTransformElementInfoResultPart() 232 EXPECT_EQ(beforeInfo.GetRange().GetMax(), in CheckTransformElementInfoResultPart() 233 afterInfo.GetRange().GetMax()); in CheckTransformElementInfoResultPart() 234 EXPECT_EQ(beforeInfo.GetRange().GetCurrent(), in CheckTransformElementInfoResultPart() 235 afterInfo.GetRange().GetCurrent()); in CheckTransformElementInfoResultPart()
|
/foundation/multimedia/media_foundation/engine/pipeline/filters/demux/ |
H A D | data_packer.h | 45 bool GetRange(uint64_t offset, uint32_t size, AVBufferPtr &bufferPtr); 47 bool GetRange(uint32_t size, AVBufferPtr &bufferPtr); // For live play 121 // The position in prev GetRange / current GetRange
|
H A D | data_packer.cpp | 153 // isGet : is it called from GetRange. 203 // Call IsDataAvailable() first before call GetRange 204 bool DataPacker::GetRange(uint64_t offset, uint32_t size, AVBufferPtr& bufferPtr) in GetRange() function in OHOS::Media::DataPacker 206 MEDIA_LOG_DD("DataPacker GetRange(offset, size) = (" PUBLIC_LOG_U64 ", " in GetRange() 208 DUMP_BUFFER2LOG("GetRange Input", bufferPtr, 0); in GetRange() 210 "GetRange input bufferPtr empty or capacity not enough."); in GetRange() 236 // GetRange in live play mode 239 bool DataPacker::GetRange(uint32_t size, AVBufferPtr& bufferPtr) in GetRange() function in OHOS::Media::DataPacker 241 MEDIA_LOG_D("DataPacker live play GetRange(size) = (" PUBLIC_LOG_U32 ")...", size); in GetRange() 243 "Live play GetRange inpu in GetRange() [all...] |
H A D | demuxer_filter.cpp | 82 DUMP_BUFFER2LOG("Demuxer GetRange", buffer, offset); in ReadAt() 382 auto ret = dataPacker_->GetRange(offset, size, bufferPtr); in ActivatePullMode() 406 return dataPacker_->GetRange(size, bufferPtr); in ActivatePushMode()
|
/foundation/arkui/ace_engine/frameworks/core/components/picker/ |
H A D | picker_text_component.h | 40 const std::vector<std::string>& GetRange() const in GetRange() function in OHOS::Ace::PickerTextComponent
|
H A D | picker_multitext_component.h | 43 const std::vector<std::vector<std::string>>& GetRange() const in GetRange() function in OHOS::Ace::PickerMultiTextComponent
|
H A D | render_picker_base.h | 92 const std::vector<std::string>& GetRange() const in GetRange() function in OHOS::Ace::RenderPickerBase
|
/foundation/multimedia/av_codec/test/nativedemo/avdemuxer/server_demo/ |
H A D | file_server_demo.h | 60 static void GetRange(const std::string &recvStr, int32_t &startPos, int32_t &endPos);
|
H A D | file_server_demo.cpp | 95 void FileServerDemo::GetRange(const std::string &recvStr, int32_t &startPos, int32_t &endPos) in GetRange() function in OHOS::MediaAVCodec::FileServerDemo 144 GetRange(recvStr, startPos, endPos); in SendRequestSize()
|
/foundation/multimedia/av_codec/test/unittest/common/ |
H A D | http_server_demo.h | 61 static void GetRange(const std::string &recvStr, int32_t &startPos, int32_t &endPos);
|
H A D | http_server_demo.cpp | 102 void HttpServerDemo::GetRange(const std::string &recvStr, int32_t &startPos, int32_t &endPos) in GetRange() function in OHOS::MediaAVCodec::HttpServerDemo 150 GetRange(recvStr, startPos, endPos); in SendRequestSize()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/property/ |
H A D | particle_property.h | 438 const std::pair<float, float>& GetRange() const in GetRange() function 460 return NearEqual(range_.first, other.GetRange().first) && NearEqual(range_.second, other.GetRange().second) && in operator ==() 669 const std::pair<Color, Color>& GetRange() const in GetRange() function 696 return (range_ == other.GetRange()) && (updater_ == other.GetUpdater()) && in operator ==()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navigation/ |
H A D | navigation_layout_algorithm.h | 62 void GetRange(const RefPtr<NavigationGroupNode>& hostNode);
|
H A D | navigation_layout_algorithm.cpp | 340 void NavigationLayoutAlgorithm::GetRange(const RefPtr<NavigationGroupNode>& hostNode) in GetRange() function in OHOS::Ace::NG::NavigationLayoutAlgorithm 613 GetRange(hostNode); in Measure()
|
/foundation/barrierfree/accessibility/frameworks/common/test/unittest/ |
H A D | accessibility_element_info_test.cpp | 866 * @tc.desc: Test function SetRange, GetRange 873 EXPECT_EQ(elementInfo_->GetRange().GetMin(), 1); in HWTEST_F() 874 EXPECT_EQ(elementInfo_->GetRange().GetMax(), 1); in HWTEST_F() 875 EXPECT_EQ(elementInfo_->GetRange().GetCurrent(), 1); in HWTEST_F()
|
/foundation/barrierfree/accessibility/frameworks/common/test/mock/src/ |
H A D | mock_accessibility_element_info.cpp | 866 * @tc.desc: Test function SetRange, GetRange 873 EXPECT_EQ(elementInfo_->GetRange().GetMin(), 1); in HWTEST_F() 874 EXPECT_EQ(elementInfo_->GetRange().GetMax(), 1); in HWTEST_F() 875 EXPECT_EQ(elementInfo_->GetRange().GetCurrent(), 1); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_picker/ |
H A D | textpicker_pattern.h | 120 std::vector<NG::RangeContent> GetRange() const in GetRange() function in OHOS::Ace::NG::TextPickerPattern
|
H A D | textpicker_column_pattern.h | 156 const std::vector<std::string>& GetRange() const in GetRange() function in OHOS::Ace::NG::TextPickerColumnPattern
|
/foundation/barrierfree/accessibility/interfaces/innerkits/common/include/ |
H A D | accessibility_element_info.h | 1200 const RangeInfo &GetRange() const;
|
/foundation/barrierfree/accessibility/frameworks/common/src/ |
H A D | accessibility_element_info.cpp | 529 const RangeInfo &AccessibilityElementInfo::GetRange() const in GetRange() function in OHOS::Accessibility::AccessibilityElementInfo
|