/third_party/skia/third_party/externals/opengl-registry/xml/ |
H A D | reg.py | 22 end = kwargs.pop('end', '\n') 24 file.write(end) 559 # Accumulate types, enums, function pointer typedefs, end function 575 write(self.typeBody, end='', file=self.outFile) 582 write(self.enumBody, end='', file=self.outFile) 584 write(self.cmdPointerBody, end='', file=self.outFile) 603 write(prefix + self.cmdBody + suffix, end='', file=self.outFile)
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/Orc/ |
H A D | Core.h | 171 iterator end() { return Symbols.end(); } in end() function in llvm::orc::SymbolLookupSet 173 const_iterator end() const { return Symbols.end(); } in end() function in llvm::orc::SymbolLookupSet 182 /// all subsequent ones (including end()) are invalidated. 278 auto LastI = std::unique(Symbols.begin(), Symbols.end()); in removeDuplicates() 279 Symbols.erase(LastI, Symbols.end()); in removeDuplicates()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
H A D | LoopInterchange.cpp | 68 } // end anonymous namespace 115 for (I = MemInstr.begin(), IE = MemInstr.end(); I != IE; ++I) { in populateDependencyMatrix() 116 for (J = I, JE = MemInstr.end(); J != JE; ++J) { in populateDependencyMatrix() 587 } // end anonymous namespace 692 if (OuterInnerReductions.find(&PHI) == OuterInnerReductions.end()) { 906 return !PN || (Reductions.find(PN) == Reductions.end() && 1563 assert(OuterInnerReductions.find(PHI) != OuterInnerReductions.end() && 1568 assert(OuterInnerReductions.find(PHI) != OuterInnerReductions.end() &&
|
H A D | MemCpyOptimizer.cpp | 87 // The range is closed at the start and open at the end: [Start, End). 103 } // end anonymous namespace 130 // size. If so, check to see whether we will end up actually reducing the in isProfitableToUseMemset() 163 const_iterator end() const { return Ranges.end(); } in end() function in __anon25171::MemsetRanges 189 } // end anonymous namespace 204 if (I == Ranges.end() || End < I->Start) { in addRange() 235 // is in or right at the end of I), and that End >= I->Start. Extend I out to in addRange() 240 while (++NextI != Ranges.end() && End >= NextI->Start) { in addRange() 242 I->TheStores.append(NextI->TheStores.begin(), NextI->TheStores.end()); in addRange() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/ |
H A D | FunctionAttrs.cpp | 99 } // end anonymous namespace 345 iterator end() { return SyntheticRoot.Uses.end(); } in end() function in __anon25020::ArgumentGraph 418 } // end anonymous namespace 428 static ChildIteratorType child_end(NodeRef N) { return N->Uses.end(); } in child_end() 439 static ChildIteratorType nodes_end(ArgumentGraph *AG) { return AG->end(); } in nodes_end() 442 } // end namespace llvm 783 for (auto I = ArgumentSCC.begin(), E = ArgumentSCC.end(); 801 for (auto I = ArgumentSCC.begin(), E = ArgumentSCC.end(); 1221 } // end anonymou [all...] |
/third_party/skia/third_party/externals/icu/source/common/ |
H A D | ubidiln.cpp | 568 * If there are WS characters at the end of the line in ubidi_getRuns() 785 * sos=start of sequence, eos=end of sequence in ubidi_reorderLogical() 814 int32_t start, end, limit, temp; in ubidi_reorderVisual() local 853 end=limit-1; in ubidi_reorderVisual() 854 while(start<end) { in ubidi_reorderVisual() 856 indexMap[start]=indexMap[end]; in ubidi_reorderVisual() 857 indexMap[end]=temp; in ubidi_reorderVisual() 860 --end; in ubidi_reorderVisual() 967 /* RTL: check from logical index to run end */ in ubidi_getVisualIndex()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/ |
H A D | BlockFrequencyInfoImpl.h | 160 } // end namespace bfi_detail 236 Nodes.insert(Nodes.end(), FirstOther, LastOther); in LoopData() 262 NodeList::const_iterator members_end() const { return Nodes.end(); } in members_end() 612 iterator succ_end() const { return Edges.end(); } in succ_end() 673 if (L == Lookup.end()) in addEdges() 685 } // end namespace bfi_detail 780 /// At the end of propagation, the full mass assigned to the loop will be 864 rpot_iterator rpot_end() const { return RPOT.end(); } in rpot_end() 1067 std::reverse(RPOT.begin(), RPOT.end()); in initializeRPOT() 1277 } // end namespac [all...] |
/third_party/skia/third_party/externals/egl-registry/api/ |
H A D | reg.py | 23 end = kwargs.pop('end', '\n') 25 file.write(end) 568 # Accumulate types, enums, function pointer typedefs, end function 584 write(self.typeBody, end='', file=self.outFile) 591 write(self.enumBody, end='', file=self.outFile) 593 write(self.cmdPointerBody, end='', file=self.outFile) 612 write(prefix + self.cmdBody + suffix, end='', file=self.outFile)
|
/third_party/protobuf/src/google/protobuf/ |
H A D | repeated_field_reflection_unittest.cc | 190 for (typename Ref::const_iterator it = handle.begin(); it != handle.end(); in TestRepeatedFieldRefIteratorForPrimitive() 205 it != handle.end(); ++it) { in TestRepeatedFieldRefIteratorForString() 337 it != rf_foreign_message.end(); ++it) { in TEST() 349 for (index = 1; old_it != rf_foreign_message.end(); ++old_it, ++index) { in TEST() 355 for (index = 0; old_it != rf_foreign_message.end(); ++old_it, ++index) { in TEST() 360 for (index = 0; new_it != rf_foreign_message.end(); ++new_it, ++index) { in TEST()
|
/third_party/rust/crates/regex/src/ |
H A D | dfa.rs | 400 end: bool, 915 // This means we only care about the "end" or "end line" flags. in exec_byte() 920 flags.end = true; in exec_byte() 1038 /// end line and/or end text flags may be set. If the current location 1046 /// start line should be set. If the input is empty, then end text and end 1092 EndText if flags.end => { in follow_epsilons() 1380 | ((empty_flags.end a in start_state() [all...] |
/third_party/spirv-tools/source/opt/ |
H A D | loop_peeling.cpp | 66 assert(it != loop_utils_.GetFunction()->end() && in DuplicateAndConnectLoop() 69 clone_results->cloned_bb_.begin(), clone_results->cloned_bb_.end(), ++it); in DuplicateAndConnectLoop() 269 do_while_form_ = std::find(header_pred.begin(), header_pred.end(), in GetIteratingExitValues() 270 condition_block_id) != header_pred.end(); in GetIteratingExitValues() 388 assert(it != loop_utils_.GetFunction()->end() && in CreateBlockBefore() 462 if (def_in_loop != clone_results.value_map_.end()) in PeelBefore() 1072 // Peel before if we are closer to the start, after if closer to the end. in HandleInequality()
|
H A D | scalar_replacement_pass.cpp | 55 for (auto iter = entry.begin(); iter != entry.end(); ++iter) { in ProcessFunction() 183 assert(insert_before != nullptr && "unexpected end of list"); in ReplaceWholeDebugDeclare() 429 return std::find(replacements->begin(), replacements->end(), nullptr) == in CreateReplacementVariables() 430 replacements->end(); in CreateReplacementVariables() 501 if (iter != pointee_to_pointer_.end()) return iter->second; in GetOrCreatePointerType() 524 if (iter == type_to_null_.end()) { in GetOrCreateInitialValue() 890 result->insert(t.begin(), t.end()); in GetUsedComponents()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/spirv_assembly/ |
H A D | vktSpvAsmPhysicalStorageBufferPointerTests.cpp | 117 iterator end () { return iterator(&getData()[m_elements]); } in end() function in vkt::SpirVAssembly::__anon29919::ut::TypedBuffer 267 std::copy(items.begin(), items.end(), begin()); in TypedBuffer() 733 for (auto j = buffer.begin(), begin = j; j != buffer.end(); ++j) in prepareColorBuffer() 883 return std::equal(resultBuffer.begin(), resultBuffer.end(), colorBuffer.begin()) ? tcu::TestStatus::pass("") : tcu::TestStatus::fail(""); in iterate() 1071 return std::equal(src.begin(), src.end(), dst.begin()) ? tcu::TestStatus::pass("") : tcu::TestStatus::fail(""); in iterate() 1230 return std::equal(src.begin(), src.end(), dst.begin()) ? tcu::TestStatus::pass("") : tcu::TestStatus::fail(""); in iterate()
|
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/synchronization/ |
H A D | vktSynchronizationOperationMultiQueueTests.cpp | 132 for (std::map<deUint32, QueueData>::iterator it = m_queues.begin(); it!= m_queues.end(); ++it) in MultiQueues() 225 for (std::map<deUint32, QueueData>::iterator it = m_queues.begin(); it != m_queues.end(); ++it) in MultiQueues() 252 for (std::map<deUint32, QueueData>::const_iterator it = m_queues.begin(); it != m_queues.end(); ++it) in getQueuesPairs() 271 for (std::map<deUint32, QueueData>::iterator write = queuesWrite.begin(); write != queuesWrite.end(); ++write) in getQueuesPairs() 272 for (std::map<deUint32, QueueData>::iterator read = queuesRead.begin(); read != queuesRead.end(); ++read) in getQueuesPairs() 296 for (std::map<deUint32, QueueData>::const_iterator it = m_queues.begin(); it!= m_queues.end(); ++it) in getDefaultQueue()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/crypto/ |
H A D | tls_gnutls.c | 158 const u8 *end; in tls_pull_func() local 164 end = wpabuf_head_u8(conn->pull_buf) + wpabuf_len(conn->pull_buf); in tls_pull_func() 165 if ((size_t) (end - conn->pull_buf_offset) < len) in tls_pull_func() 166 len = end - conn->pull_buf_offset; in tls_pull_func() 169 if (conn->pull_buf_offset == end) { in tls_pull_func() 177 (unsigned long) (end - conn->pull_buf_offset)); in tls_pull_func()
|
/third_party/vk-gl-cts/external/vulkancts/vkscserver/ |
H A D | vksJson.cpp | 212 for (auto it = begin(samplerYcbcrConversions); it != end(samplerYcbcrConversions); ++it, ++j) in writeJSON_GraphicsPipeline_vkpccjson() 245 for (auto it = begin(samplers); it != end(samplers); ++it, ++j) in writeJSON_GraphicsPipeline_vkpccjson() 279 for (auto it = begin(descriptorSetLayouts); it != end(descriptorSetLayouts); ++it, ++j) in writeJSON_GraphicsPipeline_vkpccjson() 437 for (auto it = begin(samplerYcbcrConversions); it != end(samplerYcbcrConversions); ++it, ++j) in writeJSON_ComputePipeline_vkpccjson() 470 for (auto it = begin(samplers); it != end(samplers); ++it, ++j) in writeJSON_ComputePipeline_vkpccjson() 504 for (auto it = begin(descriptorSetLayouts); it != end(descriptorSetLayouts); ++it, ++j) in writeJSON_ComputePipeline_vkpccjson()
|
/third_party/vk-gl-cts/modules/egl/ |
H A D | teglRenderTests.cpp | 462 for (vector<DrawPrimitiveOp>::const_iterator drawOp = drawOps.begin(); drawOp != drawOps.end(); drawOp++) in renderReference() 766 for (vector<DrawPrimitiveOp>::iterator drawOp = drawOps.begin(); drawOp != drawOps.end(); ++drawOp) in executeForContexts() 891 for (std::vector<DrawOpPacket>::const_iterator packetIter = m_packets.begin(); packetIter != m_packets.end(); packetIter++) in run() 977 for (vector<SemaphoreSp>::iterator sem = semaphores.begin(); sem != semaphores.end(); ++sem) in executeForContexts() 981 for (vector<DrawPrimitiveOp>::iterator drawOp = drawOps.begin(); drawOp != drawOps.end(); ++drawOp) in executeForContexts() 1109 for (vector<RenderFilterList>::const_iterator listIter = filterLists.begin(); listIter != filterLists.end(); listIter++) in createRenderGroups()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/crypto/ |
H A D | tls_gnutls.c | 158 const u8 *end; in tls_pull_func() local 164 end = wpabuf_head_u8(conn->pull_buf) + wpabuf_len(conn->pull_buf); in tls_pull_func() 165 if ((size_t) (end - conn->pull_buf_offset) < len) in tls_pull_func() 166 len = end - conn->pull_buf_offset; in tls_pull_func() 169 if (conn->pull_buf_offset == end) { in tls_pull_func() 177 (unsigned long) (end - conn->pull_buf_offset)); in tls_pull_func()
|
/third_party/skia/third_party/externals/angle2/src/common/ |
H A D | bitset_utils.h | 158 Iterator end() const { return Iterator(BitSetT()); } in end() function in angle::final 564 ASSERT(mParent.mBaseBitSetArray[mIndex].end() == in prepareCopy() 565 mParentCopy.mBaseBitSetArray[mIndex].end()); in prepareCopy() 629 Iterator end() const { return Iterator(*this, kArraySize); } in end() function in angle::final 732 mCurrentIterator = mCurrentParent->mBaseBitSetArray[mCurrentParent->kArraySize - 1].end(); in Iterator() 740 while (mCurrentIterator == mCurrentParent->mBaseBitSetArray[mIndex].end()) in operator ++()
|
/third_party/skia/third_party/vulkanmemoryallocator/include/ |
H A D | vk_mem_alloc.h | 379 types of images and buffers may end up together, especially on GPUs with unified memory like Intel. 744 - Second, "upper" one, growing down from the end towards lower offsets. 761 for a new one at the end of a pool, allocator's "cursor" wraps around to the 1838 `VkDeviceMemory` block, where different types of images and buffers may end 2583 Allocation may still end up in `HOST_VISIBLE` memory on some implementations. 3386 - `size` can be `VK_WHOLE_SIZE`. It means all memory from `offset` the the end of given allocation. 3413 - `size` can be `VK_WHOLE_SIZE`. It means all memory from `offset` the the end of given allocation. 4072 #define VMA_SORT(beg, end, cmp) std::sort(beg, end, cmp) 4397 Iterator VmaQuickSortPartition(Iterator beg, Iterator end, Compar argument 4420 VmaQuickSort(Iterator beg, Iterator end, Compare cmp) VmaQuickSort() argument 4609 VmaBinaryFindFirstNotLess(IterT beg, IterT end, const KeyT &key, const CmpLess& cmp) VmaBinaryFindFirstNotLess() argument 4628 VmaBinaryFindSorted(const IterT& beg, const IterT& end, const KeyT& value, const CmpLess& cmp) VmaBinaryFindSorted() argument 5014 iterator end() { return m_pArray + m_Count; } end() function in VmaVector 5228 iterator end() { return data() + m_Count; } end() function in VmaSmallVector 5819 iterator end() { return iterator(&m_RawList, VMA_NULL); } end() function in VmaList 14317 bool end = false; Defragment() local [all...] |
/base/customization/enterprise_device_management/services/edm/src/ |
H A D | enterprise_device_mgr_ability.cpp | 183 if (func != listener_.commonEventFuncMap_.end()) { in OnReceiveEvent() 482 if (func != addSystemAbilityFuncMap_.end()) { in OnAddSystemAbility() 610 std::copy(policy.accountIds.begin(), policy.accountIds.end(), userIds.begin()); in SetFingerprintPolicy() 1002 return std::any_of(adminPtr->adminInfo_.managedEvents_.begin(), adminPtr->adminInfo_.managedEvents_.end(), in ShouldUnsubscribeAppState() 1302 enabledAdminList.insert(enabledAdminList.begin(), superList.begin(), superList.end()); in GetEnabledAdmin() 1305 enabledAdminList.insert(enabledAdminList.begin(), normalList.begin(), normalList.end()); in GetEnabledAdmin() 1355 bool shouldHandleAppState = std::any_of(events.begin(), events.end(), [](uint32_t event) { in HandleApplicationEvent() 1410 std::find_if(events.begin(), events.end(), [this](uint32_t event) { return !CheckManagedEvent(event); }); in VerifyManagedEvent() 1411 if (iter != std::end(events)) { in VerifyManagedEvent()
|
/base/powermgr/power_manager/services/native/src/ |
H A D | power_state_machine.cpp | 97 POWER_HILOGD(FEATURE_POWER_STATE, "Instance end"); in PowerStateMachine() 129 forbidMap_.emplace(PowerState::AWAKE, std::set<PowerState>(awake.begin(), awake.end())); in InitTransitMap() 130 forbidMap_.emplace(PowerState::INACTIVE, std::set<PowerState>(inactive.begin(), inactive.end())); in InitTransitMap() 131 forbidMap_.emplace(PowerState::SLEEP, std::set<PowerState>(sleep.begin(), sleep.end())); in InitTransitMap() 803 POWER_HILOGI(FEATURE_SUSPEND, "power mgr machine hibernate end."); in WakeupDeviceInner() 913 if (syncPowerStateListeners_.find(callback) != syncPowerStateListeners_.end()) { in WakeupDeviceInner() 1333 if (iterator == lockMap_.end()) { in WakeupDeviceInner() 1339 for (std::vector<RunningLockType>::const_iterator iter = pLock->begin(); iter != pLock->end(); ++iter) { in WakeupDeviceInner() 1592 if (iterator == controllerMap_.end()) { in WakeupDeviceInner() 1972 for (auto it = controllerMap_.begin(); it != controllerMap_.end(); i in WakeupDeviceInner() [all...] |
/base/telephony/sms_mms/utils/ |
H A D | text_coder.cpp | 535 if (itChar != gsm7bitDefMap_.end()) { in Ucs2ToGsm7bit() 613 if (itChar != gsm7bitDefMap_.end()) { in Ucs2ToGsm7bitAuto() 617 if (itExt == extMap.end()) { in Ucs2ToGsm7bitAuto() 683 if (itExt == extCharMap_.end()) { in GetLangType() 705 if (itExt == gsm7bitExtMap_.end()) { in FindGsm7bitExt() 728 if (itExt == turkishMap_.end()) { in FindTurkish() 751 if (itExt == spanishMap_.end()) { in FindSpanish() 774 if (itExt == portuMap_.end()) { in FindPortu() 792 if (itReplace != replaceCharMap_.end()) { in FindReplaceChar()
|
/foundation/ability/ability_runtime/frameworks/native/appkit/ability_runtime/context/ |
H A D | context_impl.cpp | 152 if (checkedDirSet_.find(dirPath) != checkedDirSet_.end()) { in CreateDirIfNotExistWithCheck() 433 auto info = std::find_if(bundleInfo.hapModuleInfos.begin(), bundleInfo.hapModuleInfos.end(), in CreateModuleContext() 437 if (info == bundleInfo.hapModuleInfos.end()) { in CreateModuleContext() 645 TAG_LOGD(AAFwkTag::APPKIT, "end"); in GetArea() 996 bool load = std::any_of(metadata.begin(), metadata.end(), [](const auto &metadataItem) { in UpdateResConfig() 1319 std::sort(overlayModuleInfos.begin(), overlayModuleInfos.end(), in GetOverlayModuleInfos() 1334 overlayModuleInfos_.begin(), overlayModuleInfos_.end(), [it](AppExecFwk::OverlayModuleInfo item) { in GetAddOverlayPaths() 1337 if ((iter != overlayModuleInfos_.end()) && (it.state == AppExecFwk::OverlayState::OVERLAY_ENABLE)) { in GetAddOverlayPaths() 1355 overlayModuleInfos_.begin(), overlayModuleInfos_.end(), [it](AppExecFwk::OverlayModuleInfo item) { in GetRemoveOverlayPaths() 1358 if ((iter != overlayModuleInfos_.end()) in GetRemoveOverlayPaths() [all...] |
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/calendar_picker/ |
H A D | calendar_dialog_pattern.cpp | 613 auto it = std::find_if(currentMonthData.days.begin(), currentMonthData.days.end(), in HandleCalendarNodeKeyEvent() 617 if (it != currentMonthData.days.end()) { in HandleCalendarNodeKeyEvent() 717 auto it = std::find_if(monthData.days.begin(), monthData.days.end(), in FocusedLastFocusedDay() 721 if (it != monthData.days.end()) { in FocusedLastFocusedDay() 771 auto it = std::find_if(targetMonthData.days.begin(), targetMonthData.days.end(), in UpdateSwiperNodeFocusedDay() 775 if (it != targetMonthData.days.end()) { in UpdateSwiperNodeFocusedDay() 989 if (clickEvents_.find(buttonNodeId) == clickEvents_.end()) { in InitTitleArrowsEvent() 1155 auto it = std::find_if(monthData.days.begin(), monthData.days.end(), in GetIndexByFocusedDay() 1159 if (it != monthData.days.end()) { in GetIndexByFocusedDay()
|