Home
last modified time | relevance | path

Searched refs:keys_ (Results 1 – 19 of 19) sorted by relevance

/external/v8/src/
Didentity-map.cc19 DCHECK_NULL(keys_); in ~IdentityMapBase()
23 if (keys_) { in Clear()
25 heap_->UnregisterStrongRoots(keys_); in Clear()
26 DeleteArray(keys_); in Clear()
28 keys_ = nullptr; in Clear()
55 if (keys_[index] == address) return index; // Found. in ScanKeysFor()
56 if (keys_[index] == not_mapped) return -1; // Not found. in ScanKeysFor()
59 if (keys_[index] == address) return index; // Found. in ScanKeysFor()
60 if (keys_[index] == not_mapped) return -1; // Not found. in ScanKeysFor()
72 if (keys_[index] == address) return index; // Found. in InsertKey()
[all …]
Dlookup-cache.h34 keys_[i].source = NULL; in DescriptorLookupCache()
35 keys_[i].name = NULL; in DescriptorLookupCache()
48 Key keys_[kLength]; variable
Dlookup-cache-inl.h25 Key& key = keys_[index]; in Lookup()
33 Key& key = keys_[index]; in Update()
Dkeys.cc46 if (keys_.is_null()) { in GetKeys()
50 keys_->map() == isolate_->heap()->fixed_array_map()) { in GetKeys()
51 return Handle<FixedArray>::cast(keys_); in GetKeys()
72 if (keys_.is_null()) { in AddKey()
73 keys_ = OrderedHashSet::Allocate(isolate_, 16); in AddKey()
80 keys_ = OrderedHashSet::Add(keys(), key); in AddKey()
144 keys_ = keys; in AddKeysFromJSProxy()
Dkeys.h100 Handle<OrderedHashSet> keys() { return Handle<OrderedHashSet>::cast(keys_); } in keys()
106 Handle<FixedArray> keys_; variable
Didentity-map.h39 keys_(nullptr), in IdentityMapBase()
75 Object** keys_; variable
Dlookup-cache.cc13 for (int index = 0; index < kLength; index++) keys_[index].source = NULL; in Clear()
/external/libmojo/mojo/public/cpp/bindings/
Dmap_data_view.h25 : keys_(data ? data->keys.Get() : nullptr, context), in MapDataView()
29 DCHECK_EQ(keys_.is_null(), values_.is_null()); in is_null()
30 return keys_.is_null(); in is_null()
34 DCHECK_EQ(keys_.size(), values_.size()); in size()
35 return keys_.size(); in size()
38 ArrayDataView<K>& keys() { return keys_; } in keys()
39 const ArrayDataView<K>& keys() const { return keys_; } in keys()
43 return internal::Deserialize<ArrayDataView<K>>(keys_.data_, output, in ReadKeys()
44 keys_.context_); in ReadKeys()
57 ArrayDataView<K> keys_;
/external/tensorflow/tensorflow/core/kernels/
Dlookup_util.h59 : keys_(keys), values_(values), valid_(true), status_(Status::OK()) { in KeyValueTensorIterator()
60 TensorShape key_shape = keys_->shape(); in KeyValueTensorIterator()
81 const Tensor& keys() const override { return *keys_; } in keys()
88 return keys_ == nullptr ? -1 : keys_->NumElements(); in total_size()
94 const Tensor* keys_; // Doesn't own it. variable
/external/compiler-rt/test/tsan/
Dpthread_key.cc11 pthread_key_t keys_[N]; in thr() local
13 int err = pthread_key_create(&keys_[i], 0); in thr()
20 pthread_setspecific(keys_[i], (void*)(long)i); in thr()
22 pthread_key_delete(keys_[i]); in thr()
/external/v8/src/ast/
Dcontext-slot-cache.cc33 Key& key = keys_[index]; in Lookup()
55 Key& key = keys_[index]; in Update()
69 for (int index = 0; index < kLength; index++) keys_[index].data = nullptr; in Clear()
84 Key& key = keys_[index]; in ValidateEntry()
Dcontext-slot-cache.h39 keys_[i].data = NULL; in ContextSlotCache()
40 keys_[i].name = NULL; in ContextSlotCache()
102 Key keys_[kLength]; variable
/external/jsoncpp/src/lib_json/
Djson_internalmap.inl28 free(keys_[index]);
215 if (strcmp(key, current->keys_[index]) == 0)
238 if (strcmp(key, current->keys_[index]) == 0)
259 if (strcmp(key, link->keys_[index]) == 0) {
321 link->keys_[index] = duplicatedKey;
448 return iterator.link_->keys_[iterator.itemIndex_];
456 return iterator.link_->keys_[iterator.itemIndex_];
/external/perf_data_converter/src/
Dintervalmap_test.cc80 : keys_(std::move(keys)) {} in FailLookupCommand()
84 for (auto key : keys_) { in ExecuteOn()
90 std::vector<uint64> keys_; member in perftools::__anone63715870111::FailLookupCommand
/external/google-breakpad/src/processor/
Dstatic_map-inl.h55 keys_ = reinterpret_cast<const Key*>( in StaticMap()
171 return keys_[index]; in GetKeyAtIndex()
Dstatic_map_iterator-inl.h52 keys_ = reinterpret_cast<const Key*>( in StaticMapIterator()
111 return &(keys_[index_]); in GetKeyPtr()
Dstatic_map_iterator.h107 const Key* keys_; variable
Dstatic_map.h137 const Key* keys_; variable
/external/jsoncpp/include/json/
Dvalue.h644 char* keys_[itemPerLink]; variable