Home
last modified time | relevance | path

Searched refs:begin (Results 126 - 150 of 9238) sorted by relevance

12345678910>>...370

/third_party/skia/third_party/externals/abseil-cpp/absl/container/
H A Dfixed_array.h124 : FixedArray(other.begin(), other.end(), a) {} in NoexceptCopyable()
129 : FixedArray(std::make_move_iterator(other.begin()), in NoexceptMovable()
137 memory_internal::ConstructRange(storage_.alloc(), storage_.begin(), in FixedArray()
146 memory_internal::ConstructRange(storage_.alloc(), storage_.begin(), in FixedArray()
153 : FixedArray(init_list.begin(), init_list.end(), a) {} in FixedArray()
162 memory_internal::CopyRange(storage_.alloc(), storage_.begin(), first, last); in FixedArray()
166 for (auto* cur = storage_.begin(); cur != storage_.end(); ++cur) {
183 // Returns the largest possible value of `std::distance(begin(), end())` for a
204 const_pointer data() const { return AsValueType(storage_.begin()); } in data()
209 pointer data() { return AsValueType(storage_.begin()); } in data()
281 iterator begin() { return data(); } begin() function in absl::FixedArray
285 const_iterator begin() const { return data(); } begin() function in absl::FixedArray
465 StorageElement* begin() const { return data_; } begin() function in absl::FixedArray::Storage
[all...]
/foundation/communication/bluetooth/frameworks/inner/src/
H A Dbluetooth_switch_module.cpp160 auto it = std::find_if(cachedEventVec_.begin(), cachedEventVec_.end(), [&expectedEventVec](auto event) {
161 return std::find(expectedEventVec.begin(), expectedEventVec.end(), event) != expectedEventVec.end();
164 if (it != cachedEventVec_.begin()) {
165 LogCacheEventIgnored(std::vector<BluetoothSwitchEvent>(cachedEventVec_.begin(), it));
169 cachedEventVec_.erase(cachedEventVec_.begin(), it + 1);
196 // The it.base() is greater than cachedEventVec_.begin(), so std::distance > 0.
197 size_t pos = static_cast<size_t>(std::distance(cachedEventVec_.begin(), it.base())) - 1;
200 std::vector<BluetoothSwitchEvent>(cachedEventVec_.begin(), cachedEventVec_.begin() + pos + 1));
201 cachedEventVec_.erase(cachedEventVec_.begin(), cachedEventVec
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/gaussdb_rd/src/interface/src/
H A Dcollection.cpp28 std::transform(lowerCaseName.begin(), lowerCaseName.end(), lowerCaseName.begin(), [](unsigned char c) { in Collection()
42 key.assign(id.begin(), id.end()); in InsertUntilSuccess()
46 key.assign(docKey.key.begin(), docKey.key.end()); in InsertUntilSuccess()
65 Value valSet(document.begin(), document.end()); in InsertDocument()
69 key.assign(id.begin(), id.end()); in InsertDocument()
127 Value valSet(newDocument.begin(), newDocument.end()); in UpsertDocument()
131 key.assign(id.begin(), id.end()); in UpsertDocument()
150 Key keyId(id.begin(), id.end()); in UpdateDocument()
151 Value valSet(newDocument.begin(), newDocumen in UpdateDocument()
[all...]
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/table/bitmap/
H A Debdt_table.cc76 for (BitmapGlyphBuilderList::iterator builder_map = glyph_builders_.begin(), in SubDataSizeToSerialize()
80 for (BitmapGlyphBuilderMap::iterator glyph_entry = builder_map->begin(), in SubDataSizeToSerialize()
102 for (BitmapGlyphBuilderList::iterator builder_map = glyph_builders_.begin(), in SubSerialize()
106 for (BitmapGlyphBuilderMap::iterator glyph_entry = builder_map->begin(), in SubSerialize()
122 std::copy(loca_list->begin(), loca_list->end(), glyph_loca_.begin()); in SetLoca()
136 for (BitmapGlyphBuilderList::iterator builder_map = glyph_builders_.begin(), in GenerateLocaList()
142 for (BitmapGlyphBuilderMap::iterator glyph_entry = builder_map->begin(), in GenerateLocaList()
165 std::copy(glyph_builders->begin(), glyph_builders->end(), in SetGlyphBuilders()
166 glyph_builders_.begin()); in SetGlyphBuilders()
[all...]
/third_party/skia/third_party/externals/tint/src/diagnostic/
H A Dformatter.cc146 if (rng.begin.line > 0) { in format()
147 prefix.emplace_back(TextAndColor{src.file_path + ":" + to_str(rng.begin), in format()
152 } else if (rng.begin.line > 0) { in format()
153 prefix.emplace_back(TextAndColor{to_str(rng.begin), Color::kDefault}); in format()
193 if (style_.print_line && src.file_content != nullptr && rng.begin.line > 0) { in format()
197 for (size_t line_num = rng.begin.line; in format()
227 if (line_num == rng.begin.line && line_num == rng.end.line) { in format()
229 state.repeat(' ', num_glyphs(1, rng.begin.column)); in format()
231 num_glyphs(rng.begin.column, rng.end.column), 1)); in format()
232 } else if (line_num == rng.begin in format()
[all...]
/third_party/skia/third_party/externals/abseil-cpp/absl/random/internal/
H A Dchi_square_test.cc168 ChiSquare(std::begin(spec.actual), std::end(spec.actual), in TEST()
169 std::begin(spec.expected), std::end(spec.expected)), in TEST()
179 double sum = std::accumulate(std::begin(data), std::end(data), double{0}); in TEST()
180 size_t n = std::distance(std::begin(data), std::end(data)); in TEST()
181 double a = ChiSquareWithExpected(std::begin(data), std::end(data), sum / n); in TEST()
186 ChiSquareWithExpected(std::begin(data), std::end(data), 910267586.0); in TEST()
326 double chi_square = ChiSquare(std::begin(counts), std::end(counts), in TEST()
327 std::begin(expected), std::end(expected)); in TEST()
347 double sum = std::accumulate(std::begin(rolls), std::end(rolls), double{0}); in TEST()
348 size_t n = std::distance(std::begin(roll in TEST()
[all...]
/foundation/communication/netmanager_base/services/netstatsmanager/src/
H A Dnet_stats_cached.cpp75 uidStatsInfo.insert(uidStatsInfo.end(), stats_.GetUidStatsInfo().begin(), stats_.GetUidStatsInfo().end()); in GetUidStatsCached()
81 std::transform(stats_.GetUidSimStatsInfo().begin(), stats_.GetUidSimStatsInfo().end(), in GetUidSimStatsCached()
92 uidPushStatsInfo.insert(uidPushStatsInfo.end(), uidPushStatsInfo_.begin(), uidPushStatsInfo_.end()); in GetUidPushStatsCached()
98 uidPushStatsInfo.insert(uidPushStatsInfo.end(), allPushStatsInfo_.begin(), allPushStatsInfo_.end()); in GetAllPushStatsCached()
104 ifaceStatsInfo.insert(ifaceStatsInfo.end(), stats_.GetIfaceStatsInfo().begin(), stats_.GetIfaceStatsInfo().end()); in GetIfaceStatsCached()
131 std::for_each(allInfos.begin(), allInfos.end(), [&k, &v](NetStatsInfo &item) { in GetKernelStats()
137 std::for_each(allInfos.begin(), allInfos.end(), [this, &statsInfo](NetStatsInfo &info) { in GetKernelStats()
151 std::for_each(SimInfos.begin(), SimInfos.end(), [&k, &v](NetStatsInfo &item) { in GetKernelStats()
157 std::for_each(SimInfos.begin(), SimInfos.end(), [this, &statsInfo](NetStatsInfo &info) { in GetKernelStats()
173 auto findRet = std::find_if(lastUidStatsInfo_.begin(), lastUidStatsInfo in GetIncreasedStats()
[all...]
/third_party/nghttp2/src/
H A Dbuffer.h37 Buffer() : pos(std::begin(buf)), last(pos) {} in Buffer()
63 std::copy(pos + count, last, std::begin(buf)); in drain_reset()
64 last = std::begin(buf) + (last - (pos + count)); in drain_reset()
65 pos = std::begin(buf); in drain_reset()
68 void reset() { pos = last = std::begin(buf); } in reset()
69 uint8_t *begin() { return std::begin(buf); } in begin() function
/third_party/node/deps/v8/src/base/
H A Diterator.h39 iterator_range(ForwardIterator begin, ForwardIterator end) in iterator_range() argument
40 : begin_(begin), end_(end) {} in iterator_range()
42 iterator begin() { return begin_; } in begin() function in v8::base::iterator_range
44 const_iterator begin() const { return begin_; } in begin() function in v8::base::iterator_range
52 reference operator[](difference_type n) { return begin()[n]; } in operator []()
61 auto make_iterator_range(ForwardIterator begin, ForwardIterator end) { in make_iterator_range() argument
62 return iterator_range<ForwardIterator>{begin, end}; in make_iterator_range()
H A Daddress-region.h22 return a.begin() < b.begin(); in operator ()()
33 Address begin() const { return address_; } in begin() function in v8::base::AddressRegion
43 return (address - begin()) < size(); in contains()
48 Address offset = address - begin(); in contains()
57 Address overlap_start = std::max(begin(), region.begin()); in GetOverlap()
88 return out << "[" << reinterpret_cast<void*>(region.begin()) << "+" in operator <<()
/third_party/skia/third_party/externals/oboe/apps/fxlab/app/src/main/cpp/
H A DFunctionList.h37 void operator()(iter_type begin, iter_type end) { in operator ()() argument
39 if (f.second == true) std::get<0>(f)(begin, end); in operator ()()
41 if (muted) std::fill(begin, end, 0); in operator ()()
50 functionList.erase(std::next(functionList.begin(), index)); in removeEffectAt()
58 std::rotate(v.begin() + from, v.begin() + from + 1, v.begin() + to + 1); in rotateEffectAt()
/base/location/services/location_locator/locator/source/
H A Dwork_record.cpp221 for (auto iterUid = uids_.begin(); iterUid != uids_.end(); iterUid++, i++) { in Remove()
231 uids_.erase(uids_.begin() + i); in Remove()
232 pids_.erase(pids_.begin() + i); in Remove()
233 names_.erase(names_.begin() + i); in Remove()
234 timeInterval_.erase(timeInterval_.begin() + i); in Remove()
235 uuid_.erase(uuid_.begin() + i); in Remove()
236 nlpRequestType_.erase(nlpRequestType_.begin() + i); in Remove()
248 for (auto iter = names_.begin(); iter != names_.end(); iter++, i++) { in Remove()
256 uids_.erase(uids_.begin() + i); in Remove()
257 pids_.erase(pids_.begin() in Remove()
[all...]
/base/powermgr/thermal_manager/services/native/src/thermal_policy/
H A Dthermal_policy.cpp80 for (auto clusterPolicy = clusterPolicyMap_.begin(); clusterPolicy != clusterPolicyMap_.end(); clusterPolicy++) { in SortLevel()
81 sort(clusterPolicy->second.begin(), clusterPolicy->second.end(), LevelCompare); in SortLevel()
94 for (auto cluster = sensorClusterMap_.begin(); cluster != sensorClusterMap_.end(); cluster++) { in LevelDecision()
111 for (auto iter = clusterLevelMap_.begin(); iter != clusterLevelMap_.end(); iter++) { in WriteLevel()
114 auto level = *max_element(levelList.begin(), levelList.end()); in WriteLevel()
129 for (auto clusterPolicy = clusterPolicyMap_.begin(); clusterPolicy != clusterPolicyMap_.end(); clusterPolicy++) { in PolicyDecision()
162 for (auto action = actionList.begin(); action != actionList.end(); action++) { in ActionDecision()
199 for (auto prop = stateMap.begin(); prop != stateMap.end(); prop++) { in StateMachineDecision()
224 for (auto iter = actionMap.begin(); iter != actionMap.end(); iter++) { in ActionExecution()
237 for (auto clusterIter = clusterLevelMap_.begin(); clusterIte in PrintPolicyState()
[all...]
/third_party/mesa3d/src/amd/compiler/
H A Daco_util.h67 /*! \brief Returns an iterator to the begin of the span
70 constexpr iterator begin() noexcept { return (pointer)((uintptr_t)this + offset); }
72 /*! \brief Returns a const_iterator to the begin of the span
75 constexpr const_iterator begin() const noexcept
83 constexpr iterator end() noexcept { return std::next(begin(), length); }
88 constexpr const_iterator end() const noexcept { return std::next(begin(), length); }
90 /*! \brief Returns a const_iterator to the begin of the span
93 constexpr const_iterator cbegin() const noexcept { return begin(); }
98 constexpr const_iterator cend() const noexcept { return std::next(begin(), length); }
113 /*! \brief Returns a reverse_iterator to the begin o
333 Iterator begin() const { return cbegin(); } begin() function
[all...]
/foundation/distributeddatamgr/kv_store/frameworks/libs/distributeddb/test/moduletest/src/
H A Ddistributeddb_nb_schema_upgrade_test.cpp81 Value value(stringValue.begin(), stringValue.end()); in HWTEST_F()
105 Value value1(stringValue1.begin(), stringValue1.end()); in InsertFieldWithNullValue()
113 Value value2(stringValue2.begin(), stringValue2.end()); in InsertFieldWithNullValue()
121 Value value3(stringValue3.begin(), stringValue3.end()); in InsertFieldWithNullValue()
129 Value value4(stringValue4.begin(), stringValue4.end()); in InsertFieldWithNullValue()
137 Value value5(stringValue5.begin(), stringValue5.end()); in InsertFieldWithNullValue()
145 Value value6(stringValue6.begin(), stringValue6.end()); in InsertFieldWithNullValue()
189 Value value1(stringValue1.begin(), stringValue1.end()); in InsertVoidFieldSteps()
197 Value value2(stringValue2.begin(), stringValue2.end()); in InsertVoidFieldSteps()
205 Value value3(stringValue3.begin(), stringValue in InsertVoidFieldSteps()
[all...]
/foundation/distributeddatamgr/udmf/framework/innerkitsimpl/client/
H A Dutd_client.cpp69 descriptorCfgs_.insert(descriptorCfgs_.end(), customTypes.begin(), customTypes.end()); in Init()
135 std::transform(lowerFileExtension.begin(), lowerFileExtension.end(), lowerFileExtension.begin(), ::tolower); in GetUniformDataTypeByFilenameExtension()
146 std::transform(fileEx.begin(), fileEx.end(), fileEx.begin(), ::tolower); in GetUniformDataTypeByFilenameExtension()
190 std::transform(lowerFileExtension.begin(), lowerFileExtension.end(), lowerFileExtension.begin(), ::tolower); in GetUniformDataTypesByFilenameExtension()
196 std::transform(fileEx.begin(), fileEx.end(), fileEx.begin(), ::tolower); in GetUniformDataTypesByFilenameExtension()
223 std::transform(lowerMimeType.begin(), lowerMimeTyp in GetUniformDataTypeByMIMEType()
[all...]
/third_party/node/deps/v8/src/diagnostics/
H A Ddisassembler.cc93 return v8_buffer_.begin(); in NameOfAddress()
101 return v8_buffer_.begin(); in NameOfAddress()
110 return v8_buffer_.begin(); in NameOfAddress()
148 return v8_buffer_.begin(); in RootRelativeName()
166 return v8_buffer_.begin(); in RootRelativeName()
175 return v8_buffer_.begin(); in RootRelativeName()
184 return v8_buffer_.begin(); in RootRelativeName()
194 return v8_buffer_.begin(); in RootRelativeName()
293 const V8NameConverter& converter, byte* begin, byte* end, in DecodeIt()
298 byte* pc = begin; in DecodeIt()
291 DecodeIt(Isolate* isolate, ExternalReferenceEncoder* ref_encoder, std::ostream& os, CodeReference code, const V8NameConverter& converter, byte* begin, byte* end, Address current_pc) DecodeIt() argument
462 Decode(Isolate* isolate, std::ostream& os, byte* begin, byte* end, CodeReference code, Address current_pc) Decode() argument
[all...]
/third_party/skia/third_party/externals/spirv-tools/source/opt/
H A Diterator.h112 // Handy class for a (begin, end) iterator pair.
121 IteratorType begin() const { return begin_; } in begin() function in spvtools::opt::IteratorRange
132 // Returns a (begin, end) iterator pair for the given iterators.
135 inline IteratorRange<IteratorType> make_range(const IteratorType& begin, in make_range() argument
137 return {begin, end}; in make_range()
140 // Returns a (begin, end) iterator pair for the given iterators.
143 inline IteratorRange<IteratorType> make_range(IteratorType&& begin, in make_range() argument
145 return {std::forward<IteratorType>(begin), std::forward<IteratorType>(end)}; in make_range()
148 // Returns a (begin, end) iterator pair for the given container.
153 return {IteratorType(&container, container.begin()), in make_range()
248 MakeFilterIterator( const SubIterator& begin, const SubIterator& end, Predicate predicate) MakeFilterIterator() argument
254 MakeFilterIteratorRange( const SubIterator& begin, const SubIterator& end, Predicate predicate) MakeFilterIteratorRange() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
H A Diterator.h112 // Handy class for a (begin, end) iterator pair.
121 IteratorType begin() const { return begin_; } in begin() function in spvtools::opt::IteratorRange
132 // Returns a (begin, end) iterator pair for the given iterators.
135 inline IteratorRange<IteratorType> make_range(const IteratorType& begin, in make_range() argument
137 return {begin, end}; in make_range()
140 // Returns a (begin, end) iterator pair for the given iterators.
143 inline IteratorRange<IteratorType> make_range(IteratorType&& begin, in make_range() argument
145 return {std::forward<IteratorType>(begin), std::forward<IteratorType>(end)}; in make_range()
148 // Returns a (begin, end) iterator pair for the given container.
153 return {IteratorType(&container, container.begin()), in make_range()
248 MakeFilterIterator( const SubIterator& begin, const SubIterator& end, Predicate predicate) MakeFilterIterator() argument
254 MakeFilterIteratorRange( const SubIterator& begin, const SubIterator& end, Predicate predicate) MakeFilterIteratorRange() argument
[all...]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
H A DTinyPtrVector.h36 // naturally vend a begin/end iterator of type EltTy* without an additional
117 : IL.size() == 1 ? PtrUnion(*IL.begin()) in TinyPtrVector()
118 : PtrUnion(new VecTy(IL.begin(), IL.end()))) {} in TinyPtrVector()
129 : PtrUnion(new VecTy(Elts.begin(), Elts.end()))) {} in TinyPtrVector()
185 iterator begin() { in begin() function in llvm::TinyPtrVector
189 return Val.template get<VecTy *>()->begin(); in begin()
194 return begin() + (Val.isNull() ? 0 : 1); in end()
199 const_iterator begin() const { in begin() function in llvm::TinyPtrVector
200 return (const_iterator)const_cast<TinyPtrVector*>(this)->begin(); in begin()
208 reverse_iterator rend() { return reverse_iterator(begin()); } in rend()
[all...]
/third_party/spirv-tools/source/opt/
H A Diterator.h112 // Handy class for a (begin, end) iterator pair.
121 IteratorType begin() const { return begin_; } in begin() function in spvtools::opt::IteratorRange
132 // Returns a (begin, end) iterator pair for the given iterators.
135 inline IteratorRange<IteratorType> make_range(const IteratorType& begin, in make_range() argument
137 return {begin, end}; in make_range()
140 // Returns a (begin, end) iterator pair for the given iterators.
143 inline IteratorRange<IteratorType> make_range(IteratorType&& begin, in make_range() argument
145 return {std::forward<IteratorType>(begin), std::forward<IteratorType>(end)}; in make_range()
148 // Returns a (begin, end) iterator pair for the given container.
153 return {IteratorType(&container, container.begin()), in make_range()
248 MakeFilterIterator( const SubIterator& begin, const SubIterator& end, Predicate predicate) MakeFilterIterator() argument
254 MakeFilterIteratorRange( const SubIterator& begin, const SubIterator& end, Predicate predicate) MakeFilterIteratorRange() argument
[all...]
/foundation/systemabilitymgr/samgr/services/samgr/native/test/unittest/src/
H A Dmanual_ondemand_helper.cpp136 int64_t begin = GetTickCount(); in LoadSystemAbility() local
147 cout << "LoadSystemAbility result:" << result << " spend:" << (GetTickCount() - begin) << " ms" in LoadSystemAbility()
155 int64_t begin = GetTickCount(); in UnloadSystemAbility() local
166 cout << "UnloadSystemAbility result:" << result << " spend:" << (GetTickCount() - begin) << " ms" in UnloadSystemAbility()
173 int64_t begin = GetTickCount(); in OnDemandAbility() local
184 cout << "LoadSystemAbility result:" << result << " spend:" << (GetTickCount() - begin) << " ms" in OnDemandAbility()
207 int64_t begin = GetTickCount(); in SyncOnDemandAbility() local
219 cout << "SyncLoadSystemAbility result" << result << "spend:" << (GetTickCount() - begin) << "ms" in SyncOnDemandAbility()
245 int64_t begin = GetTickCount(); in LoadOndemandAbilityCase1() local
249 cout << "LoadOndemandAbilityCase1 done, spend:" << (GetTickCount() - begin) << " m in LoadOndemandAbilityCase1()
256 int64_t begin = GetTickCount(); LoadOndemandAbilityCase2() local
269 int64_t begin = GetTickCount(); LoadOndemandAbilityCase3() local
283 int64_t begin = GetTickCount(); LoadOndemandAbilityCase4() local
297 int64_t begin = GetTickCount(); LoadOndemandAbilityCase5() local
312 int64_t begin = GetTickCount(); LoadOndemandAbilityCase6() local
330 int64_t begin = GetTickCount(); LoadOndemandAbilityCase7() local
346 int64_t begin = GetTickCount(); LoadOndemandAbilityCase8() local
366 int64_t begin = GetTickCount(); LoadOndemandAbilityCase9() local
377 int64_t begin = GetTickCount(); LoadOndemandAbilityCase10() local
402 int64_t begin = GetTickCount(); LoadOndemandAbilityCase11() local
425 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase1() local
434 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase2() local
446 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase3() local
459 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase4() local
475 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase5() local
493 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase6() local
508 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase7() local
521 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase8() local
540 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase9() local
558 int64_t begin = GetTickCount(); GetOndemandAbilityCase1() local
568 int64_t begin = GetTickCount(); GetOndemandAbilityCase2() local
581 int64_t begin = GetTickCount(); GetOndemandAbilityCase3() local
593 int64_t begin = GetTickCount(); GetOndemandAbilityCase4() local
606 int64_t begin = GetTickCount(); GetOndemandAbilityCase5() local
623 int64_t begin = GetTickCount(); GetOndemandAbilityCase6() local
793 int64_t begin = GetTickCount(); UnloadAllIdleSystemAbility() local
844 int64_t begin = GetTickCount(); LoadRemoteAbility() local
950 int64_t begin = GetTickCount(); GetSystemAbility() local
968 int64_t begin = GetTickCount(); CheckSystemAbility() local
986 int64_t begin = GetTickCount(); CheckSystemAbility() local
[all...]
H A Dondemand_helper.cpp93 int64_t begin = GetTickCount(); in SyncOnDemandAbility() local
105 cout << "SyncLoadSystemAbility result:" << result << " spend:" << (GetTickCount() - begin) << "ms" in SyncOnDemandAbility()
130 int64_t begin = GetTickCount(); in UnloadAllIdleSystemAbility() local
141 cout << "UnloadAllIdleSystemAbility result:" << result << " spend:" << (GetTickCount() - begin) << "ms" << endl; in UnloadAllIdleSystemAbility()
293 int64_t begin = GetTickCount(); in LoadOndemandAbilityCase1() local
297 cout << "LoadOndemandAbilityCase1 done, spend:" << (GetTickCount() - begin) << " ms" << endl; in LoadOndemandAbilityCase1()
304 int64_t begin = GetTickCount(); in LoadOndemandAbilityCase2() local
310 cout << "LoadOndemandAbilityCase2 done, spend:" << (GetTickCount() - begin) << " ms" << endl; in LoadOndemandAbilityCase2()
317 int64_t begin = GetTickCount(); in LoadOndemandAbilityCase3() local
324 cout << "LoadOndemandAbilityCase3 done, spend:" << (GetTickCount() - begin) << " m in LoadOndemandAbilityCase3()
331 int64_t begin = GetTickCount(); LoadOndemandAbilityCase4() local
345 int64_t begin = GetTickCount(); LoadOndemandAbilityCase5() local
360 int64_t begin = GetTickCount(); LoadOndemandAbilityCase6() local
378 int64_t begin = GetTickCount(); LoadOndemandAbilityCase7() local
394 int64_t begin = GetTickCount(); LoadOndemandAbilityCase8() local
414 int64_t begin = GetTickCount(); LoadOndemandAbilityCase9() local
425 int64_t begin = GetTickCount(); LoadOndemandAbilityCase10() local
450 int64_t begin = GetTickCount(); LoadOndemandAbilityCase11() local
473 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase1() local
482 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase2() local
494 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase3() local
507 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase4() local
523 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase5() local
541 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase6() local
556 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase7() local
569 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase8() local
588 int64_t begin = GetTickCount(); UnloadOndemandAbilityCase9() local
606 int64_t begin = GetTickCount(); GetOndemandAbilityCase1() local
616 int64_t begin = GetTickCount(); GetOndemandAbilityCase2() local
629 int64_t begin = GetTickCount(); GetOndemandAbilityCase3() local
641 int64_t begin = GetTickCount(); GetOndemandAbilityCase4() local
654 int64_t begin = GetTickCount(); GetOndemandAbilityCase5() local
671 int64_t begin = GetTickCount(); GetOndemandAbilityCase6() local
750 int64_t begin = GetTickCount(); LoadSystemAbility() local
769 int64_t begin = GetTickCount(); UnloadSystemAbility() local
787 int64_t begin = GetTickCount(); OnDemandAbility() local
839 int64_t begin = GetTickCount(); LoadRemoteAbility() local
945 int64_t begin = GetTickCount(); GetSystemAbility() local
963 int64_t begin = GetTickCount(); CheckSystemAbility() local
981 int64_t begin = GetTickCount(); CheckSystemAbility() local
[all...]
/third_party/json/docs/examples/
H A Derase__IteratorType.cpp17 j_boolean.erase(j_boolean.begin()); in main()
18 j_number_integer.erase(j_number_integer.begin()); in main()
19 j_number_float.erase(j_number_float.begin()); in main()
21 j_array.erase(j_array.begin() + 2); in main()
22 j_string.erase(j_string.begin()); in main()
/base/powermgr/thermal_manager/utils/native/src/
H A Dstring_operation.cpp36 std::string::size_type begin = str.find_first_not_of(sep); in SplitString() local
37 while (begin != std::string::npos) { in SplitString()
38 std::string::size_type pos = str.find(sep, begin); in SplitString()
40 temp = str.substr(begin, pos - begin); in SplitString()
41 begin = pos + sep.length(); in SplitString()
43 temp = str.substr(begin); in SplitString()
44 begin = pos; in SplitString()

Completed in 17 milliseconds

12345678910>>...370