Searched refs:entry (Results 276 - 300 of 1482) sorted by relevance

<<11121314151617181920>>

/external/chromium/chrome/browser/sync/engine/
H A Dapply_updates_command_unittest.cc59 MutableEntry entry(&trans, syncable::CREATE_NEW_UPDATE_ITEM,
61 ASSERT_TRUE(entry.good());
62 entry.Put(syncable::SERVER_VERSION, next_revision_++);
63 entry.Put(syncable::IS_UNAPPLIED_UPDATE, true);
65 entry.Put(syncable::SERVER_NON_UNIQUE_NAME, item_id);
66 entry.Put(syncable::SERVER_PARENT_ID, Id::CreateFromServerId(parent_id));
67 entry.Put(syncable::SERVER_IS_DIR, true);
70 entry.Put(syncable::SERVER_SPECIFICS, default_bookmark_specifics);
80 MutableEntry entry(&trans, syncable::CREATE_NEW_UPDATE_ITEM,
82 ASSERT_TRUE(entry
[all...]
H A Dpost_commit_message_command.cc40 syncable::MutableEntry entry(&trans, syncable::GET_BY_ID, commit_ids[i]);
41 entry.Put(syncable::SYNCING, false);
H A Dsyncer_util.h31 syncable::MutableEntry* entry,
40 syncable::MutableEntry* entry,
43 // If the server sent down a client-tagged entry, or an entry whose
44 // commit response was lost, it is necessary to update a local entry
46 // find the ID of such an entry, if it exists. This function may
49 // should proceed normally with a new local entry, this function will
50 // return server_entry.id(); the caller must create an entry with that
58 syncable::MutableEntry* const entry,
72 static bool ServerAndLocalEntriesMatch(syncable::Entry* entry);
[all...]
H A Dverify_updates_command.h38 const SyncEntity& entry,
/external/chromium/chrome/browser/tab_contents/
H A Dinfobar_delegate.cc24 return (contents_unique_id_ != details.entry->unique_id()) ||
25 (PageTransition::StripQualifier(details.entry->transition_type()) ==
/external/chromium/chrome/browser/webdata/
H A Dautofill_entry.h41 bool operator==(const AutofillEntry& entry) const;
42 bool operator<(const AutofillEntry& entry) const;
/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/linux-tools-perf/util/
H A Dstrlist.c74 char entry[1024]; local
81 while (fgets(entry, sizeof(entry), fp) != NULL) {
82 const size_t len = strlen(entry);
86 entry[len - 1] = '\0';
88 err = strlist__add(self, entry);
105 struct str_node *strlist__find(struct strlist *self, const char *entry) argument
116 rc = strcmp(sn->s, entry);
/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/qemu/
H A Dqlist.h38 static inline QObject *qlist_entry_obj(const QListEntry *entry) argument
40 return entry->value;
/external/replicaisland/src/com/replica/replicaisland/
H A DObjectPool.java54 public void release(Object entry) { argument
55 mAvailable.add(entry);
/external/skia/src/gpu/
H A DSkGr.cpp21 Ganesh wants a full 256 palette entry, even though Skia's ctable is only as big
64 GrContext::TextureCacheEntry entry; local
67 return entry;
100 entry = ctx->lockScratchTexture(desc,
102 entry.texture()->writePixels(0, 0, bitmap->width(),
105 return entry;
121 entry = ctx->lockScratchTexture(desc,
123 entry.texture()->writePixels(0, 0,
128 return entry;
/external/v8/src/
H A Dcpu-profiler-inl.h42 code_map->AddCode(start, entry, size);
44 entry->set_shared_id(code_map->GetSharedId(shared));
/external/webkit/Source/WebKit/android/plugins/
H A DANPSystemInterface.cpp178 struct dirent* entry = 0; local
179 while ((entry = readdir(dir))) { // while there is still something in the directory to list
180 if (!entry)
183 if (!strcmp(".", entry->d_name) || !strcmp("..", entry->d_name)) {
184 PLUGIN_LOG(". file: %s", entry->d_name);
190 char* file = (char*) malloc(strlen(path) + strlen(separator) + strlen(entry->d_name) + 1);
193 strcat(file, entry->d_name);
/external/webkit/Tools/Scripts/webkitpy/tool/steps/
H A Dvalidatereviewer_unittest.py46 entry = ChangeLogEntry(contents)
47 self.assertEqual(step._has_valid_reviewer(entry), expected)
/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/chrome/browser/resources/options/
H A Dpassword_manager_list.js13 * @param {Array} entry An array of the form [url, username, password].
17 function PasswordListItem(entry, showPasswords) {
19 el.dataItem = entry;
109 * Get and set the URL for the entry.
120 * Get and set the username for the entry.
131 * Get and set the password for the entry.
144 * @param {Array} entry A pair of the form [url, username].
148 function PasswordExceptionsListItem(entry) {
150 el.dataItem = entry;
176 * Get the url for the entry
[all...]
/external/guava/guava-gwt/src/com/google/common/collect/
H A DMultimap_CustomFieldSerializerBase.java72 for (Map.Entry<?, ? extends Collection<?>> entry
74 writer.writeObject(entry.getKey());
75 writer.writeInt(entry.getValue().size());
76 for (Object value : entry.getValue()) {
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DAbstractBiMap.java140 for (Entry<? extends K, ? extends V> entry : map.entrySet()) {
141 put(entry.getKey(), entry.getValue());
192 Entry<K, V> entry;
200 entry = iterator.next();
201 return entry.getKey();
205 checkState(entry != null);
206 V value = entry.getValue();
289 Entry<?, ?> entry = (Entry<?, ?>) object;
290 inverse.delegate.remove(entry
[all...]
/external/llvm/test/MC/COFF/
H A Dbasic-coff.s15 # BB#0: # %entry
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/boxes/
H A DAbstractSampleEncryptionBox.java152 for (Entry entry : entries) {
155 System.arraycopy(entry.iv, 0, ivFull, ivSize - entry.iv.length, entry.iv.length);
159 byteBuffer.put(entry.iv);
162 IsoTypeWriter.writeUInt16(byteBuffer, entry.pairs.size());
163 for (Entry.Pair pair : entry.pairs) {
179 for (Entry entry : entries) {
180 contentSize += entry.getSize();
274 Entry entry
[all...]
/external/qemu/hw/
H A Dwatchdog.h37 QLIST_ENTRY(WatchdogTimerModel) entry; member in struct:WatchdogTimerModel
/external/webkit/Source/JavaScriptGlue/
H A DJSBase.cpp49 JSGlueAPIEntry entry; local
/external/chromium/base/
H A Dprocess_util.cc27 while (const ProcessEntry* entry = iter.NextProcessEntry()) {
29 result &= KillProcessById(entry->pid(), exit_code, true);
31 result &= KillProcess(entry->pid(), exit_code, true);
/external/chromium/chrome/browser/resources/file_manager/js/
H A Dmain.js41 function onEntryFound(entry) {
42 if (entry) {
43 entries.push(entry);

Completed in 583 milliseconds

<<11121314151617181920>>