Home
last modified time | relevance | path

Searched refs:try_entry (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/rust/android-crates-io/crates/http/src/header/
Dmap.rs1060 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 Dblock_builder.cc352 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 Ddead_code_elimination.cc641 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 Ddead_code_elimination.h106 void RemoveTry(HBasicBlock* try_entry,
H A Dcode_sinking.cc261 const HTryBoundary& try_entry = in FindIdealPosition() local
264 try_entry.HasSameExceptionHandlersAs( in FindIdealPosition()
H A Dgraph_checker.cc369 const HTryBoundary& try_entry = block->GetTryCatchInformation()->GetTryEntry(); in VisitBasicBlock() local
373 try_entry.DebugName(), in VisitBasicBlock()
374 try_entry.GetId())); in VisitBasicBlock()
H A Dnodes.cc598 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 Dinstruction_builder.cc182 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 Dnodes.h826 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/
Dlib.rs852 pub fn try_entry(&'a self, key: K) -> Option<Entry<'a, K, V, S>> { in try_entry() method