Home
last modified time | relevance | path

Searched refs:ContainsKey (Results 1 – 25 of 74) sorted by relevance

123

/external/antlr/runtime/Delphi/Sources/Antlr3.Runtime/
DAntlr.Runtime.Collections.pas114 function ContainsKey(const Key: TKey): Boolean; in ContainsKey() function
178 if FDictionary.ContainsKey(Key) then
191 function THashList<TKey, TValue>.ContainsKey(const Key: TKey): Boolean; in THashList() function
193 Result := FDictionary.ContainsKey(Key);
248 IsNewEntry := (not FDictionary.ContainsKey(Key));
DAntlr.Runtime.Tools.pas200 function ContainsKey(const Key: TKey): Boolean;
302 function ContainsKey(const Key: TKey): Boolean;
863 if ContainsKey(Key) then
869 function TDictionary<TKey,TValue>.ContainsKey(const Key: TKey): Boolean; in TDictionary() function
/external/libchrome/base/files/
Dfile_path_watcher_linux.cc450 if (ContainsKey(recursive_paths_by_watch_, fired_watch)) { in OnFilePathChangedOnOriginSequence()
543 if (!ContainsKey(recursive_paths_by_watch_, fired_watch) && in UpdateRecursiveWatches()
554 ContainsKey(recursive_paths_by_watch_, fired_watch) ? in UpdateRecursiveWatches()
589 if (!ContainsKey(recursive_watches_by_path_, current)) { in UpdateRecursiveWatchesForPath()
619 DCHECK(!ContainsKey(recursive_paths_by_watch_, watch)); in TrackWatchForRecursion()
620 DCHECK(!ContainsKey(recursive_watches_by_path_, path)); in TrackWatchForRecursion()
/external/libchrome/base/metrics/
Dfield_trial_param_associator.cc29 if (ContainsKey(field_trial_params_, key)) in AssociateFieldTrialParams()
60 if (!ContainsKey(field_trial_params_, key)) in GetFieldTrialParamsWithoutFallback()
Dhistogram_snapshot_manager_unittest.cc28 CHECK(!ContainsKey(recorded_delta_histogram_sum_, in RecordDelta()
45 EXPECT_TRUE(ContainsKey(recorded_delta_histogram_sum_, name)); in GetRecordedDeltaHistogramSum()
/external/tensorflow/tensorflow/compiler/xla/service/
Dbfloat16_propagation.cc113 if (ContainsKey(changed_root_buffers, value)) { in RevertIfFusionInternalBF16Changes()
216 if (ContainsKey(values_that_must_be_kept_as_f32_, value)) { in AllUsersConsumeBF16()
228 if (!ContainsKey(instructions_visited_in_backward_pass_, in AllUsersConsumeBF16()
368 if (!ContainsKey(consider_using_bfloat16_, hlo)) { in DetermineInstructionPrecision()
398 !ContainsKey(consider_using_bfloat16_, hlo->operand(i))) { in InstructionIsCandidateForBF16Output()
593 if (ContainsKey(resolved, *comp_it)) { in ResolveInconsistencyOfAliasingBuffers()
778 if (ContainsKey(computations_visited_in_backward_pass_, *comp_it)) { in Run()
839 return ContainsKey(it->second, subshape) ? BF16 : F32; in OutputTypeAfterChange()
Dhlo_module.cc251 TF_RET_CHECK(!ContainsKey(computation_names, computation->name())) in CheckUniqueNamesAndIdsForComputationsAndInstructions()
255 TF_RET_CHECK(!ContainsKey(computation_ids, computation->unique_id())) in CheckUniqueNamesAndIdsForComputationsAndInstructions()
260 TF_RET_CHECK(!ContainsKey(instruction_names, instruction->name())) in CheckUniqueNamesAndIdsForComputationsAndInstructions()
264 TF_RET_CHECK(!ContainsKey(instruction_ids, instruction->unique_id())) in CheckUniqueNamesAndIdsForComputationsAndInstructions()
316 TF_RET_CHECK(!ContainsKey(computation_map, computation_id)); in CreateFromProto()
Dcall_graph.cc100 if (!ContainsKey(caller_set_, caller)) { in AddCallerCallSite()
118 if (!ContainsKey(callee_set_, callee)) { in AddCallSiteForInstruction()
144 if (a == b || ContainsKey(*visited, b)) { in DominatesHelper()
Dhlo_module_group_metadata.cc391 } else if (!ContainsKey(companion_set_index_, instruction1) && in AddCompanion()
392 !ContainsKey(companion_set_index_, instruction2)) { in AddCompanion()
400 } else if (!ContainsKey(companion_set_index_, instruction1)) { in AddCompanion()
404 } else if (!ContainsKey(companion_set_index_, instruction2)) { in AddCompanion()
Dhlo_rematerialization.cc541 buffer->live_out || ContainsKey(live_out_set, logical_buffer); in MemoryUsageTracker()
556 ContainsKey(live_out_set, logical_buffer)); in MemoryUsageTracker()
965 TF_RET_CHECK(ContainsKey(computation_peak_memory_, computation)); in CalledComputationsMemoryUsage()
978 CHECK(!ContainsKey(rematerialized_computations_, computation)); in RematerializeComputation()
1115 if (ContainsKey(remat_move_instructions, best)) { in RematerializeComputation()
1147 if (!ContainsKey(rematerialized_computations_, called_computation)) { in RematerializeComputation()
Dcopy_insertion.cc604 if (def->opcode() == HloOpcode::kCopy && ContainsKey(copy_map_, def)) { in Verify()
609 ContainsKey(copy_map_, use->instruction)) { in Verify()
627 if (!ContainsKey(copy_map_, copy)) { in TryElideCopy()
817 ContainsKey(copy_map_, copy_use->instruction)) { in RemoveCopyValue()
850 return ContainsKey(value_lists_, node.next); in IsTail()
855 return ContainsKey(value_lists_, &node); in IsHead()
/external/protobuf/csharp/src/Google.Protobuf/Collections/
DReadOnlyDictionary.cs56 public bool ContainsKey(TKey key) in ContainsKey() method in Google.Protobuf.Collections.ReadOnlyDictionary
58 return wrapped.ContainsKey(key); in ContainsKey()
DMapField.cs113 if (ContainsKey(key)) in Add()
125 public bool ContainsKey(TKey key) in ContainsKey() method in Google.Protobuf.Collections.MapField
128 return map.ContainsKey(key); in ContainsKey()
225 …c ICollection<TKey> Keys { get { return new MapView<TKey>(this, pair => pair.Key, ContainsKey); } }
495 return ContainsKey((TKey)key); in IDictionary.Contains()
/external/pdfium/core/fxcrt/
Dobservable.h62 ASSERT(!pdfium::ContainsKey(m_ObservedPtrs, pObservedPtr)); in AddObservedPtr()
66 ASSERT(pdfium::ContainsKey(m_ObservedPtrs, pObservedPtr)); in RemoveObservedPtr()
/external/pdfium/fpdfsdk/
Dfsdk_actionhandler.cpp120 if (pdfium::ContainsKey(*visited, pDict)) in ExecuteDocumentOpenAction()
151 if (pdfium::ContainsKey(*visited, pDict)) in ExecuteLinkAction()
192 if (pdfium::ContainsKey(*visited, pDict)) in ExecuteDocumentPageAction()
239 if (pdfium::ContainsKey(*visited, pDict)) in ExecuteFieldAction()
275 if (pdfium::ContainsKey(*visited, pDict)) in ExecuteScreenAction()
314 if (pdfium::ContainsKey(*visited, pDict)) in ExecuteBookMark()
/external/libchrome/mojo/public/cpp/bindings/lib/
Dsync_handle_registry.cc46 if (base::ContainsKey(handles_, handle)) in RegisterHandle()
59 if (!base::ContainsKey(handles_, handle)) in UnregisterHandle()
Dmultiplex_router.cc388 } while (base::ContainsKey(endpoints_, id)); in AssociateInterface()
440 DCHECK(base::ContainsKey(endpoints_, id)); in CloseEndpointHandle()
464 DCHECK(base::ContainsKey(endpoints_, id)); in AttachEndpointClient()
483 DCHECK(base::ContainsKey(endpoints_, id)); in DetachEndpointClient()
551 return !base::ContainsKey(endpoints_, kMasterInterfaceId); in HasAssociatedEndpoints()
/external/pdfium/core/fpdfapi/font/
Dcpdf_fontglobals.cpp32 if (!pdfium::ContainsKey(m_StockMap, pDoc)) in Set()
/external/pdfium/core/fpdfapi/parser/
Dcpdf_parser.cpp198 if (!pdfium::ContainsKey(m_ObjectInfo, objnum - 1)) in ShrinkObjectMap()
429 if (pdfium::ContainsKey(seen_xrefpos, xrefpos)) in LoadAllCrossRefV4()
487 if (pdfium::ContainsKey(seen_xrefpos, xrefpos)) in LoadLinearizedAllCrossRefV4()
670 if (pdfium::ContainsKey(seen_xrefpos, xrefpos)) in LoadAllCrossRefV5()
1196 if (pdfium::ContainsKey(m_ParsingObjNums, objnum)) in ParseIndirectObject()
1223 if (!pdfium::ContainsKey(m_ObjCache, pObjStream)) { in ParseIndirectObject()
1420 if (pdfium::ContainsKey(seen_xrefpos, xrefpos)) in LoadLinearizedAllCrossRefV5()
Dcpdf_dictionary.cpp73 if (!pdfium::ContainsKey(*pVisited, it.second.get())) { in CloneNonCyclic()
167 return pdfium::ContainsKey(m_Map, key); in KeyExist()
Dcpdf_reference.cpp65 return pDirect && !pdfium::ContainsKey(*pVisited, pDirect) in CloneNonCyclic()
/external/mdnsresponder/mDNSWindows/DLLX/
DTXTRecord.h132 STDMETHOD(ContainsKey)(BSTR key, VARIANT_BOOL* retval);
/external/pdfium/core/fpdfapi/edit/
Dcpdf_creator.cpp521 str = pdfium::ContainsKey(m_ObjectOffsets, 1) in WriteDoc_Stage3()
545 while (i <= dwLastObjNum && !pdfium::ContainsKey(m_ObjectOffsets, i)) in WriteDoc_Stage3()
552 while (j <= dwLastObjNum && pdfium::ContainsKey(m_ObjectOffsets, j)) in WriteDoc_Stage3()
706 if (!pdfium::ContainsKey(m_ObjectOffsets, i)) in WriteDoc_Stage4()
/external/grpc-grpc/src/csharp/Grpc.Core/Internal/
DAuthContextSafeHandle.cs59 if (!propertiesDict.ContainsKey(authProperty.Name)) in ToAuthContext()
/external/pdfium/third_party/base/
Dstl_util.h20 bool ContainsKey(const Collection& collection, const Key& key) { in ContainsKey() function

123