Searched refs:entry (Results 551 - 575 of 2680) sorted by relevance

<<21222324252627282930>>

/external/chromium_org/sync/syncable/
H A Dsyncable_write_transaction.cc35 void WriteTransaction::TrackChangesTo(const EntryKernel* entry) { argument
36 if (!entry) {
40 const int64 handle = entry->ref(META_HANDLE);
43 mutations_[handle].original = *entry;
128 MutableEntry entry(this, GET_BY_HANDLE, entry_changed[i]);
129 if (entry.good()) {
130 ModelType type = GetModelTypeFromSpecifics(entry.GetSpecifics());
137 entry.UpdateTransactionVersion(directory_->GetTransactionVersion(type));
/external/chromium_org/third_party/libvpx/source/libvpx/vpx/src/
H A Dvpx_codec.c119 vpx_codec_ctrl_fn_map_t *entry; local
123 for (entry = ctx->iface->ctrl_maps; entry && entry->fn; entry++) {
124 if (!entry->ctrl_id || entry->ctrl_id == ctrl_id) {
128 res = entry->fn(ctx->priv->alg_priv, ctrl_id, ap);
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Dsources.mak14 # - In bridge mode, mapi provides entry points calling into glapi. To use
22 $(TOP)/src/mapi/mapi/entry.c \
29 $(TOP)/src/mapi/mapi/entry.c \
36 $(TOP)/src/mapi/mapi/entry.c
/external/chromium_org/third_party/skia/src/core/
H A DSkBitmapHeap.h131 SkBitmapHeapEntry* entry = getEntry(slot); variable
132 if (entry) {
133 return &entry->fBitmap;
146 SkBitmapHeapEntry* entry = getEntry(slot); variable
147 if (entry) {
148 entry->releaseRef();
166 * Retrieves an entry from the heap at a given slot.
247 * Remove the entry from the lookup table. Also deletes the entry pointed
251 * @return The index in the lookup table of the entry befor
[all...]
H A DSkTObjectPool.h54 void release(T* entry) { argument
55 fAvailable.push(entry);
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dnavigation_list_model.js24 * @param {!DirectoryEntry} entry Entry. Cannot be null.
28 function NavigationModelShortcutItem(label, entry) {
30 this.entry_ = entry;
36 get entry() { return this.entry_; },
85 var entryToModelItem = function(entry) {
87 entry.name,
88 entry);
163 shortcutEntry, this.shortcutList_[oldListIndex].entry);
177 // We needs to create a new instance for the shortcut entry.
226 * @param {number} index The index of the entry t
[all...]
/external/chromium_org/v8/src/
H A Dprofile-generator-inl.h42 ProfileNode::ProfileNode(ProfileTree* tree, CodeEntry* entry) argument
44 entry_(entry),
/external/guava/guava-testlib/src/com/google/common/collect/testing/google/
H A DBiMapGenerators.java73 for (Entry<String, String> entry : entries) {
74 checkNotNull(entry);
75 map.put(entry.getValue(), entry.getKey());
112 for (Entry<String, String> entry : entries) {
113 checkNotNull(entry);
114 map.put(entry.getKey(), entry.getValue());
/external/libvpx/libvpx/vpx/src/
H A Dvpx_codec.c119 vpx_codec_ctrl_fn_map_t *entry; local
123 for (entry = ctx->iface->ctrl_maps; entry && entry->fn; entry++) {
124 if (!entry->ctrl_id || entry->ctrl_id == ctrl_id) {
128 res = entry->fn(ctx->priv->alg_priv, ctrl_id, ap);
/external/linux-tools-perf/perf-3.12.0/tools/perf/util/
H A Drblist.h25 int (*node_cmp)(struct rb_node *rbn, const void *entry);
34 struct rb_node *rblist__find(struct rblist *rblist, const void *entry);
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DAuxVector.cpp44 AuxVector::Entry &entry,
48 if (!GetMaxU64(data, offset_ptr, &entry.type, byte_size))
51 if (!GetMaxU64(data, offset_ptr, &entry.value, byte_size))
75 Entry entry; local
77 if (!ParseAuxvEntry(data, entry, &offset, byte_size))
80 if (entry.type == AT_NULL)
83 if (entry.type == AT_IGNORE)
86 m_auxv.push_back(entry);
43 ParseAuxvEntry(DataExtractor &data, AuxVector::Entry &entry, lldb::offset_t *offset_ptr, unsigned int byte_size) argument
/external/llvm/lib/LTO/
H A DLTOModule.cpp200 StringMap<NameAndAttributes>::value_type &entry = local
202 if (!entry.getValue().name) {
203 const char *symbolName = entry.getKey().data();
208 entry.setValue(info);
215 StringSet::value_type &entry = _defines.GetOrCreateValue(className); local
216 entry.setValue(1);
219 info.name = entry.getKey().data();
239 StringMap<NameAndAttributes>::value_type &entry = local
242 if (entry.getValue().name)
245 const char *symbolName = entry
260 StringMap<NameAndAttributes>::value_type &entry = local
413 StringSet::value_type &entry = _defines.GetOrCreateValue(Name); local
433 StringSet::value_type &entry = _defines.GetOrCreateValue(name); local
476 StringMap<NameAndAttributes>::value_type &entry = local
505 StringMap<NameAndAttributes>::value_type &entry = local
[all...]
/external/ltrace/
H A Doptions.h86 /* If entry->kind is OPT_F_UNKNOWN, figure out whether it should be
90 enum opt_F_kind opt_F_get_kind(struct opt_F_t *entry);
94 void opt_F_destroy(struct opt_F_t *entry);
/external/mesa3d/src/mapi/mapi/
H A Dsources.mak14 # - In bridge mode, mapi provides entry points calling into glapi. To use
22 $(TOP)/src/mapi/mapi/entry.c \
29 $(TOP)/src/mapi/mapi/entry.c \
36 $(TOP)/src/mapi/mapi/entry.c
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/mp4/samplegrouping/
H A DRollRecoveryEntry.java64 RollRecoveryEntry entry = (RollRecoveryEntry) o;
66 if (rollDistance != entry.rollDistance) {
/external/replicaisland/src/com/replica/replicaisland/
H A DObjectPool.java54 public void release(Object entry) { argument
55 mAvailable.add(entry);
/external/skia/src/core/
H A DSkBitmapHeap.h131 SkBitmapHeapEntry* entry = getEntry(slot); variable
132 if (entry) {
133 return &entry->fBitmap;
146 SkBitmapHeapEntry* entry = getEntry(slot); variable
147 if (entry) {
148 entry->releaseRef();
166 * Retrieves an entry from the heap at a given slot.
247 * Remove the entry from the lookup table. Also deletes the entry pointed
251 * @return The index in the lookup table of the entry befor
[all...]
H A DSkTObjectPool.h54 void release(T* entry) { argument
55 fAvailable.push(entry);
/external/guava/guava-tests/test/com/google/common/collect/
H A DMapMakerInternalMapTest.java395 ReferenceEntry<Object, Object> entry = segment.getEntry(one, hash);
396 map.reclaimValue(entry.getValueReference());
528 ReferenceEntry<Object, Object> entry = map.newEntry(key, hash, null);
529 ValueReference<Object, Object> valueRef = map.newValueReference(entry, value);
530 entry.setValueReference(valueRef);
535 table.set(index, entry);
549 DummyEntry<Object, Object> nullEntry = DummyEntry.create(null, hash, entry);
561 DummyEntry<Object, Object> dummy = DummyEntry.create(new Object(), hash, entry);
572 dummy = DummyEntry.create(key, hash, entry);
577 // returns the most recent entry
1836 final ReferenceEntry<K, V> entry; field in class:MapMakerInternalMapTest.DummyValueReference
1839 DummyValueReference(V value, ReferenceEntry<K, V> entry) argument
1844 create(V value, ReferenceEntry<K, V> entry) argument
1859 copyFor(ReferenceQueue<V> queue, ReferenceEntry<K, V> entry) argument
[all...]
/external/chromium_org/chrome/browser/browsing_data/
H A Dbrowsing_data_flash_lso_helper.cc89 std::map<uint32, std::string>::iterator entry = local
91 DCHECK(entry != clear_site_data_ids_.end());
93 << entry->second;
94 clear_site_data_ids_.erase(entry);
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dresource_entry_conversion.h23 // |out_parent_resource_id| will be set to the resource ID of the parent entry.
26 // Every entry is guaranteed to have one parent resource ID in ResourceMetadata.
47 // Converts the resource entry to the platform file info.
48 void ConvertResourceEntryToFileInfo(const ResourceEntry& entry,
H A Dresource_metadata_storage.cc55 // String used as a suffix of a key for a cache entry.
58 // String used as a prefix of a key for a resource-ID-to-local-ID entry.
69 // Returns true if |key| is a key for a child entry.
74 // Returns true if |key| is a key for a cache entry.
76 // A cache entry key should end with |kDBKeyDelimeter + kCacheEntryKeySuffix|.
88 // Returns ID extracted from a cache entry key.
97 // Returns a string to be used as a key for a resource-ID-to-local-ID entry.
107 // Returns true if |key| is a key for a resource-ID-to-local-ID entry.
109 // A resource-ID-to-local-ID entry key should start with
121 // Returns the resource ID extracted from a resource-ID-to-local-ID entry ke
319 ResourceEntry entry; local
451 ResourceEntry entry; local
656 ResourceEntry entry; local
695 PutEntry(const ResourceEntry& entry) argument
767 ResourceEntry entry; local
941 ResourceEntry entry; local
[all...]
/external/chromium_org/chrome/browser/extensions/api/reading_list_private/
H A Dreading_list_private_api.cc31 GURL url_to_add(params->entry.url);
55 scoped_ptr<ArticleEntry> entry(service->RemoveEntry(params->id));
56 if (entry == NULL) {
60 removed_entry.id = entry->entry_id();
/external/chromium_org/chrome/browser/extensions/
H A Dchrome_component_extension_resource_manager.cc79 std::map<base::FilePath, int>::const_iterator entry = local
81 if (entry != path_to_resource_id_.end())
82 *resource_id = entry->second;
84 return entry != path_to_resource_id_.end();
/external/chromium_org/chrome/browser/resources/options/
H A Dhandler_options_list.js17 * @param {Object} entry A dictionary describing the handlers for a given
22 function IgnoredHandlersListItem(entry) {
24 el.dataItem = entry;
58 createItem: function(entry) {
59 return new IgnoredHandlersListItem(entry);
97 * @param {Object} entry A dictionary describing the handlers for a given
102 function HandlerListItem(entry) {
104 el.dataItem = entry;
197 createItem: function(entry) {
198 return new HandlerListItem(entry);
[all...]

Completed in 1487 milliseconds

<<21222324252627282930>>