Searched refs:try_entry (Results 1 – 10 of 10) sorted by relevance
/aosp_15_r20/external/rust/android-crates-io/crates/http/src/header/ |
D | map.rs | 1060 pub fn try_entry<K>(&mut self, key: K) -> Result<Entry<'_, T>, InvalidHeaderName> in try_entry() method 1064 key.try_entry(self) in try_entry() 3368 fn try_entry<T>(self, map: &mut HeaderMap<T>) -> Result<Entry<'_, T>, InvalidHeaderName>; in try_entry() method 3381 fn try_entry<T>(self, map: &mut HeaderMap<T>) -> Result<Entry<'_, T>, InvalidHeaderName> { in try_entry() method 3399 fn try_entry<T>(self, map: &mut HeaderMap<T>) -> Result<Entry<'_, T>, InvalidHeaderName> { in try_entry() method 3417 fn try_entry<T>(self, map: &mut HeaderMap<T>) -> Result<Entry<'_, T>, InvalidHeaderName> { in try_entry() method 3435 fn try_entry<T>(self, map: &mut HeaderMap<T>) -> Result<Entry<'_, T>, InvalidHeaderName> { in try_entry() method 3436 self.as_str().try_entry(map) in try_entry() 3453 fn try_entry<T>(self, map: &mut HeaderMap<T>) -> Result<Entry<'_, T>, InvalidHeaderName> { in try_entry() method 3454 self.as_str().try_entry(map) in try_entry()
|
/aosp_15_r20/art/compiler/optimizing/ |
H A D | block_builder.cc | 352 HTryBoundary* try_entry = new (allocator_) HTryBoundary( in InsertTryBoundaryBlocks() local 354 try_block->CreateImmediateDominator()->AddInstruction(try_entry); in InsertTryBoundaryBlocks() 355 LinkToCatchBlocks(try_entry, code_item_accessor_, try_item, catch_blocks); in InsertTryBoundaryBlocks()
|
H A D | dead_code_elimination.cc | 641 void HDeadCodeElimination::RemoveTry(HBasicBlock* try_entry, in RemoveTry() argument 645 DCHECK(try_entry->EndsWithTryBoundary()); in RemoveTry() 646 DCHECK(try_entry->GetLastInstruction()->AsTryBoundary()->IsEntry()); in RemoveTry() 647 DisconnectHandlersAndUpdateTryBoundary(try_entry, any_block_in_loop); in RemoveTry()
|
H A D | dead_code_elimination.h | 106 void RemoveTry(HBasicBlock* try_entry,
|
H A D | code_sinking.cc | 261 const HTryBoundary& try_entry = in FindIdealPosition() local 264 try_entry.HasSameExceptionHandlersAs( in FindIdealPosition()
|
H A D | graph_checker.cc | 369 const HTryBoundary& try_entry = block->GetTryCatchInformation()->GetTryEntry(); in VisitBasicBlock() local 373 try_entry.DebugName(), in VisitBasicBlock() 374 try_entry.GetId())); in VisitBasicBlock()
|
H A D | nodes.cc | 598 const HTryBoundary* try_entry = first_predecessor->ComputeTryEntryOfSuccessors(); in ComputeTryBlockInformation() local 599 graph_has_try_catch |= try_entry != nullptr; in ComputeTryBlockInformation() 600 if (try_entry != nullptr && in ComputeTryBlockInformation() 602 try_entry != &block->GetTryCatchInformation()->GetTryEntry())) { in ComputeTryBlockInformation() 605 block->SetTryCatchInformation(new (allocator_) TryCatchInformation(*try_entry)); in ComputeTryBlockInformation()
|
H A D | instruction_builder.cc | 182 const HTryBoundary& try_entry = current->GetTryCatchInformation()->GetTryEntry(); in InitializeBlockLocals() local 183 if (try_entry.HasExceptionHandler(*current_block_)) { in InitializeBlockLocals() 257 const HTryBoundary& try_entry = current_block_->GetTryCatchInformation()->GetTryEntry(); in PropagateLocalsToCatchBlocks() local 258 for (HBasicBlock* catch_block : try_entry.GetExceptionHandlers()) { in PropagateLocalsToCatchBlocks()
|
H A D | nodes.h | 826 explicit TryCatchInformation(const HTryBoundary& try_entry) in TryCatchInformation() argument 827 : try_entry_(&try_entry), in TryCatchInformation()
|
/aosp_15_r20/external/rust/android-crates-io/crates/dashmap/src/ |
D | lib.rs | 852 pub fn try_entry(&'a self, key: K) -> Option<Entry<'a, K, V, S>> { in try_entry() method
|