Home
last modified time | relevance | path

Searched refs:begin_ (Results 1 – 25 of 27) sorted by relevance

12

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBase/api/base/containers/
H A Darray_view.h58 …constexpr array_view(const array_view<U>& other) noexcept : begin_(other.begin_), size_(other.size… in BASE_BEGIN_NAMESPACE()
81 return begin_; in BASE_BEGIN_NAMESPACE()
85 return begin_; in BASE_BEGIN_NAMESPACE()
91 return begin_[aIndex]; in BASE_BEGIN_NAMESPACE()
97 return begin_[aIndex]; in BASE_BEGIN_NAMESPACE()
103 return begin_[aIndex]; in BASE_BEGIN_NAMESPACE()
109 return begin_[aIndex]; in BASE_BEGIN_NAMESPACE()
113 return iterator(begin_); in BASE_BEGIN_NAMESPACE()
117 return iterator(begin_ + size_); in BASE_BEGIN_NAMESPACE()
121 return const_iterator(begin_); in BASE_BEGIN_NAMESPACE()
[all …]
H A Dstring_view.h234 return begin_; in data()
240 return begin_[pos];
246 return begin_[pos]; in at()
253 return begin_[0]; in front()
260 return begin_[size_ - 1]; in back()
291 begin_ += size_; in remove_prefix()
295 begin_ += n; in remove_prefix()
351 auto const* ptr1 = begin_; in compare()
352 auto const* ptr2 = v.begin_; in compare()
385 auto const* ptr1 = begin_; in compare()
[all …]
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBinaryCompile/LumeShaderCompiler/src/
H A Darray_view.h84 assert(end_ >= begin_); in array_view()
93 : begin_(other.begin_), size_(other.size_), end_(other.end_) in array_view()
116 return begin_; in data()
120 return begin_; in data()
126 return begin_[aIndex]; in at()
132 return begin_[aIndex]; in at()
138 return begin_[aIndex];
144 return begin_[aIndex];
148 return iterator(begin_); in begin()
156 return const_iterator(begin_); in begin()
[all …]
/ohos5.0/foundation/communication/netmanager_base/interfaces/innerkits/netmanagernative/include/
H A Duid_range.h34 return lhs.begin_ != rhs.begin_ ? (lhs.begin_ < rhs.begin_) : (lhs.end_ < rhs.end_);
39 return (lhs.begin_ == rhs.begin_ && lhs.end_ == rhs.end_);
50 int32_t begin_ = -1; member
/ohos5.0/foundation/multimedia/media_foundation/engine/plugin/plugins/ffmpeg_adapter/utils/
H A Dbit_reader.cpp22 BitReader::BitReader() : begin_(nullptr), cur_(nullptr), end_(nullptr) in BitReader()
26 BitReader::BitReader(const uint8_t* buffer, size_t bufferSize) : begin_(buffer), cur_(buffer), end_… in BitReader()
30 BitReader::BitReader(const uint8_t* begin, const uint8_t* end) : begin_(begin), cur_(begin), end_(e… in BitReader()
36 begin_ = nullptr; in ~BitReader()
71 if (begin_ + bytePos >= end_) { in SeekTo()
74 cur_ = begin_ + bytePos; in SeekTo()
83 begin_ = begin; in Reset()
H A Dbit_reader.h99 const uint8_t* begin_; variable
/ohos5.0/foundation/communication/netmanager_base/frameworks/native/netmanagernative/
H A Duid_range.cpp26 UidRange::UidRange(int32_t begin, int32_t end) : begin_(begin), end_(end) {} in UidRange()
30 if (begin_ == INVLID_VALUE || end_ == INVLID_VALUE || end_ < begin_) { in Size()
33 return static_cast<uint32_t>(end_ - begin_ + 1); in Size()
38 return parcel.WriteInt32(begin_) && parcel.WriteInt32(end_); in Marshalling()
49 bool allOK = parcel.ReadInt32(ptr->begin_) && parcel.ReadInt32(ptr->end_); in Unmarshalling()
/ohos5.0/foundation/multimedia/media_foundation/engine/foundation/utils/
H A Dsteady_clock.cpp36 SteadyClock::SteadyClock() : begin_(high_resolution_clock::now()) in SteadyClock()
44 begin_ = high_resolution_clock::now(); in Reset()
49 return duration_cast<milliseconds>(high_resolution_clock::now() - begin_).count(); in ElapsedMilliseconds()
54 return duration_cast<microseconds>(high_resolution_clock::now() - begin_).count(); in ElapsedMicroseconds()
59 return duration_cast<nanoseconds>(high_resolution_clock::now() - begin_).count(); in ElapsedNanoseconds()
64 return duration_cast<seconds>(high_resolution_clock::now() - begin_).count(); in ElapsedSeconds()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H A Dmotion_path_option.h27 : path_(path), begin_(begin), end_(end), rotate_(rotate)
42 begin_ = value; in SetBegin()
47 return begin_; in GetBegin()
78 begin_ == other.begin_ &&
85 float begin_ = 0.0f; variable
/ohos5.0/foundation/multimedia/media_foundation/src/osal/utils/
H A Dsteady_clock.cpp40 SteadyClock::SteadyClock() : begin_(high_resolution_clock::now()) in SteadyClock()
48 begin_ = high_resolution_clock::now(); in Reset()
53 return duration_cast<milliseconds>(high_resolution_clock::now() - begin_).count(); in ElapsedMilliseconds()
58 return duration_cast<microseconds>(high_resolution_clock::now() - begin_).count(); in ElapsedMicroseconds()
63 return duration_cast<nanoseconds>(high_resolution_clock::now() - begin_).count(); in ElapsedNanoseconds()
68 return duration_cast<seconds>(high_resolution_clock::now() - begin_).count(); in ElapsedSeconds()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/storage/src/
H A Dresult_entries_window.cpp30 begin_(0), in ResultEntriesWindow()
80 int last = begin_ + buffer_.size() - 1; in MoveToPosition()
88 } else if (position < begin_) { in MoveToPosition()
122 entry = buffer_[currentPosition_ - begin_]; in GetEntry()
133 begin_ = 0; in ResetWindow()
141 begin_ = target; in SetCursor()
H A Dresult_entries_window.h45 int begin_; variable
/ohos5.0/base/hiviewdfx/faultloggerd/common/dfxutil/
H A Delapsed_time.h27 begin_ = std::chrono::high_resolution_clock::now(); in ElapsedTime()
48 begin_ = std::chrono::high_resolution_clock::now(); in Reset()
54 …n std::chrono::duration_cast<Duration>(std::chrono::high_resolution_clock::now() - begin_).count(); in Elapsed()
58 std::chrono::time_point<std::chrono::high_resolution_clock> begin_;
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/animation/
H A Dcurve_animation.h30 : begin_(begin), end_(end), currentValue_(begin) in CurveAnimation()
103 currentValue_ = begin_; in Calculate()
110 currentValue_ = evaluator_->Evaluate(begin_, end_, curve->Move(time)); in Calculate()
123 T begin_; variable
H A Dsvg_animate.h193 begin_ = begin; in SetBegin()
262 return std::max(begin_, 0); in GetBegin()
390 svgAnimate->SetBegin(begin_); in Copy()
412 int32_t begin_ = 0; variable
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/log/
H A Dace_performance_monitor.cpp35 GetTimePoint(begin_); in ScopedMonitor()
42 …ArkUIPerfMonitor::GetInstance().RecordTimeSlice(tag_, duration_cast<nanoseconds>(end_ - begin_).co… in ~ScopedMonitor()
58 GetTimePoint(begin_); in StartPerf()
143 auto total = static_cast<int64_t>(duration_cast<nanoseconds>(end_ - begin_).count()); in FlushPerfMonitor()
H A Dace_performance_monitor.h55 TimePoint begin_; variable
81 TimePoint begin_; variable
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeRender/src/perf/
H A Dcpu_timer.cpp29 begin_ = Clock::now().time_since_epoch().count(); in Begin()
39 …return (int64_t)(duration_cast<microseconds>(Clock::duration(end_) - Clock::duration(begin_)).coun… in GetMicroseconds()
H A Dcpu_timer.h36 int64_t begin_ {}; in RENDER_BEGIN_NAMESPACE()
/ohos5.0/base/hiviewdfx/hicollie/interfaces/ndk/test/unittest/
H A Dhicollie_test.cpp80 OH_HiCollie_BeginFunc begin_ = InitBeginFunc; variable
86 int result = OH_HiCollie_Init_JankDetection(&begin_, &end_, param);
/ohos5.0/foundation/multimedia/media_foundation/engine/include/foundation/utils/
H A Dsteady_clock.h36 std::chrono::time_point<std::chrono::high_resolution_clock> begin_;
/ohos5.0/foundation/multimedia/media_foundation/interface/inner_api/osal/utils/
H A Dsteady_clock.h36 std::chrono::time_point<std::chrono::high_resolution_clock> begin_;
/ohos5.0/foundation/arkui/ace_engine/test/mock/base/
H A Dmock_ace_performance_monitor.cpp22 begin_ = steady_clock::now(); in ScopedMonitor()
/ohos5.0/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/unittest/common/common/
H A Ddistributeddb_tools_unit_test.h62 uint64_t begin_{};
66 : begin_(begin), end_(end), blockSize_(blockSize) in SyncInputArg()
/ohos5.0/foundation/communication/netmanager_base/services/netmanagernative/src/manager/
H A Droute_manager.cpp345 ret += UpdateVpnUidRangeRule(table, range.begin_, range.end_, add); in UpdateVirtualNetwork()
346 …ret += UpdateExplicitNetworkRuleWithUid(netId, table, PERMISSION_NONE, range.begin_, range.end_, a… in UpdateVirtualNetwork()
347 …eOutputInterfaceRulesWithUid(interfaceName, table, PERMISSION_NONE, range.begin_, range.end_, add); in UpdateVirtualNetwork()
368 …UpdateRuleInfo(add ? RTM_NEWRULE : RTM_DELRULE, FR_ACT_TO_TBL, ruleInfo, range.begin_, range.end_); in UpdateVnicUidRangesRule()

12