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

<<11121314151617181920>>

/external/smack/src/org/jivesoftware/smack/util/collections/
H A DAbstractHashedMap.java48 protected static final String NO_NEXT_ENTRY = "No next() entry in the iteration";
49 protected static final String NO_PREVIOUS_ENTRY = "No previous() entry in the iteration";
192 HashEntry<K, V> entry = data[hashIndex(hashCode, data.length)]; // no local for hash index
193 while (entry != null) {
194 if (entry.hashCode == hashCode && isEqualKey(key, entry.key)) {
195 return entry.getValue();
197 entry = entry.next;
229 HashEntry entry
443 updateEntry(HashEntry<K, V> entry, V newValue) argument
459 reuseEntry(HashEntry<K, V> entry, int hashIndex, int hashCode, K key, V value) argument
514 addEntry(HashEntry<K, V> entry, int hashIndex) argument
530 removeMapping(HashEntry<K, V> entry, int hashIndex, HashEntry<K, V> previous) argument
548 removeEntry(HashEntry<K, V> entry, int hashIndex, HashEntry<K, V> previous) argument
564 destroyEntry(HashEntry<K, V> entry) argument
665 entryNext(HashEntry<K, V> entry) argument
678 entryHashCode(HashEntry<K, V> entry) argument
691 entryKey(HashEntry<K, V> entry) argument
704 entryValue(HashEntry<K, V> entry) argument
815 contains(Map.Entry<K, V> entry) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/drive/file_system/
H A Dcreate_directory_operation_unittest.cc18 ResourceEntry entry; local
19 FileError error = GetLocalResourceEntry(path, &entry);
20 if (error == FILE_ERROR_OK && !entry.file_info().is_directory())
56 ResourceEntry entry; local
57 EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(kNewDirectory1, &entry));
58 EXPECT_EQ(ResourceEntry::DIRTY, entry.metadata_edit_state());
59 EXPECT_TRUE(entry.file_info().is_directory());
61 entry.file_info().last_modified()).is_null());
63 entry.file_info().last_accessed()).is_null());
65 EXPECT_EQ(1U, observer()->updated_local_ids().count(entry
[all...]
H A Dtouch_operation.cc23 // Updates the timestamps of the entry specified by |file_path|.
29 ResourceEntry entry; local
30 FileError error = metadata->GetResourceEntryByPath(file_path, &entry);
33 *local_id = entry.local_id();
35 PlatformFileInfoProto* file_info = entry.mutable_file_info();
40 entry.set_metadata_edit_state(ResourceEntry::DIRTY);
41 entry.set_modification_date(base::Time::Now().ToInternalValue());
42 return metadata->RefreshEntry(entry);
/external/chromium_org/chrome/browser/history/
H A Dhistory_tab_helper.cc47 void HistoryTabHelper::UpdateHistoryPageTitle(const NavigationEntry& entry) { argument
50 hs->SetPageTitle(entry.GetVirtualURL(),
51 entry.GetTitleForDisplay(std::string()));
89 // Update history. Note that this needs to happen after the entry is complete,
100 web_contents()->GetURL(), details.entry->GetTimestamp(),
125 void HistoryTabHelper::TitleWasSet(NavigationEntry* entry, bool explicit_set) { argument
129 if (entry) {
130 UpdateHistoryPageTitle(*entry);
155 NavigationEntry* entry = tab->GetController().GetLastCommittedEntry(); local
156 if (entry) {
[all...]
/external/chromium_org/net/disk_cache/simple/
H A Dsimple_entry_operation.h43 static SimpleEntryOperation OpenOperation(SimpleEntryImpl* entry,
48 SimpleEntryImpl* entry,
52 static SimpleEntryOperation CloseOperation(SimpleEntryImpl* entry);
53 static SimpleEntryOperation ReadOperation(SimpleEntryImpl* entry,
61 SimpleEntryImpl* entry,
70 SimpleEntryImpl* entry,
76 SimpleEntryImpl* entry,
82 SimpleEntryImpl* entry,
88 SimpleEntryImpl* entry,
113 SimpleEntryOperation(SimpleEntryImpl* entry,
[all...]
/external/chromium_org/sandbox/win/src/
H A Dhandle_closer_agent.cc49 HandleListEntry* entry = g_handles_to_close->handle_entries; local
52 base::char16* input = entry->handle_type;
54 input = reinterpret_cast<base::char16*>(reinterpret_cast<char*>(entry)
55 + entry->offset_to_names);
57 for (size_t j = 0; j < entry->name_count; ++j) {
64 // Move on to the next entry.
65 entry = reinterpret_cast<HandleListEntry*>(reinterpret_cast<char*>(entry)
66 + entry->record_bytes);
68 DCHECK(reinterpret_cast<base::char16*>(entry) >
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Ddirectory_tree.js38 } else if (util.isSameEntry(currentEntry, currentElement.entry)) {
44 } else if (currentEntry.toURL() < currentElement.entry.toURL()) {
48 } else if (currentEntry.toURL() > currentElement.entry.toURL()) {
67 * Finds a parent directory of the {@code entry} in {@code this}, and
70 * @param {DirectoryEntry|Object} entry The entry to be searched for. Can be
74 DirectoryItemTreeBaseMethods.searchAndSelectByEntry = function(entry) {
77 if (util.isDescendantEntry(item.entry, entry) ||
78 util.isSameEntry(item.entry, entr
[all...]
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dfile_cache.cc91 ResourceEntry entry(it->GetValue());
92 entry.mutable_file_specific_info()->clear_cache_state();
93 storage_->PutEntry(entry);
103 ResourceEntry entry; local
107 FileError error = storage_->GetEntry(id, &entry);
110 !entry.file_specific_info().cache_state().is_present()))
125 ResourceEntry entry; local
126 FileError error = storage_->GetEntry(id, &entry);
129 if (!entry.file_specific_info().cache_state().is_present())
142 ResourceEntry entry; local
195 ResourceEntry entry; local
208 ResourceEntry entry; local
237 ResourceEntry entry; local
270 ResourceEntry entry; local
354 ResourceEntry entry; local
444 ResourceEntry entry; local
536 ResourceEntry entry; local
596 ResourceEntry entry; local
[all...]
/external/chromium_org/third_party/icu/source/i18n/
H A Dtransreg.cpp472 // entry object owns it. It should only be deleted when the
533 TransliteratorEntry *entry = find(ID); local
534 return (entry == 0) ? 0
535 : instantiateEntry(ID, entry, aliasReturn, status);
543 TransliteratorEntry *entry = find(ID); local
545 if (entry == 0) {
560 // called reg->reget(), and the entry will already have been fixed up.
561 // We have to detect this so we don't stomp over existing entry
564 if (entry->entryType == TransliteratorEntry::RULES_FORWARD ||
565 entry
616 TransliteratorEntry *entry = new TransliteratorEntry(); local
630 TransliteratorEntry *entry = new TransliteratorEntry(); local
645 TransliteratorEntry *entry = new TransliteratorEntry(); local
666 TransliteratorEntry *entry = new TransliteratorEntry(); local
1026 TransliteratorEntry* entry = 0; local
1120 TransliteratorEntry *entry = new TransliteratorEntry(); local
1174 TransliteratorEntry* entry; local
1243 instantiateEntry(const UnicodeString& ID, TransliteratorEntry *entry, TransliteratorAlias* &aliasReturn, UErrorCode& status) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dtransreg.cpp474 // entry object owns it. It should only be deleted when the
535 TransliteratorEntry *entry = find(ID); local
536 return (entry == 0) ? 0
537 : instantiateEntry(ID, entry, aliasReturn, status);
545 TransliteratorEntry *entry = find(ID); local
547 if (entry == 0) {
562 // called reg->reget(), and the entry will already have been fixed up.
563 // We have to detect this so we don't stomp over existing entry
566 if (entry->entryType == TransliteratorEntry::RULES_FORWARD ||
567 entry
618 TransliteratorEntry *entry = new TransliteratorEntry(); local
632 TransliteratorEntry *entry = new TransliteratorEntry(); local
647 TransliteratorEntry *entry = new TransliteratorEntry(); local
668 TransliteratorEntry *entry = new TransliteratorEntry(); local
1028 TransliteratorEntry* entry = 0; local
1122 TransliteratorEntry *entry = new TransliteratorEntry(); local
1176 TransliteratorEntry* entry; local
1245 instantiateEntry(const UnicodeString& ID, TransliteratorEntry *entry, TransliteratorAlias* &aliasReturn, UErrorCode& status) argument
[all...]
/external/chromium_org/net/disk_cache/blockfile/
H A Din_flight_backend_io.h40 // Returns true if this operation is directed to an entry (vs. the backend).
50 void OpenEntry(const std::string& key, Entry** entry);
51 void CreateEntry(const std::string& key, Entry** entry);
61 void CloseEntryImpl(EntryImpl* entry);
62 void DoomEntryImpl(EntryImpl* entry);
65 void ReadData(EntryImpl* entry, int index, int offset, net::IOBuffer* buf,
67 void WriteData(EntryImpl* entry, int index, int offset, net::IOBuffer* buf,
69 void ReadSparseData(EntryImpl* entry, int64 offset, net::IOBuffer* buf,
71 void WriteSparseData(EntryImpl* entry, int64 offset, net::IOBuffer* buf,
73 void GetAvailableRange(EntryImpl* entry, int6
[all...]
/external/chromium_org/net/spdy/
H A Dhpack_decoder.cc60 // Also clear entry state for the next decoded headers block.
66 HpackEntry* entry = *it; local
68 if (entry->state() == kNoState) {
69 HandleHeaderRepresentation(entry->name(), entry->value());
71 entry->set_state(kNoState);
156 HpackEntry* entry = header_table_.GetByIndex(index);
157 if (entry == NULL)
160 if (entry->IsStatic()) {
161 HandleHeaderRepresentation(entry
211 const HpackEntry* entry = header_table_.GetByIndex(index_or_zero); local
[all...]
H A Dhpack_huffman_table.cc120 // entry first, and that the child can therefore be minimally sized to hold
121 // that entry without fear of introducing unneccesary branches later.
133 DecodeEntry entry = Entry(table, index); local
137 // We're writing a terminal entry.
138 entry.length = it->length;
139 entry.symbol_id = it->id;
140 entry.next_table_index = table_index;
141 SetEntry(table, index, entry);
145 if (entry.length == 0) {
147 CHECK_EQ(entry
166 const DecodeEntry& entry = Entry(table, j); local
206 SetEntry(const DecodeTable& table, uint32 index, const DecodeEntry& entry) argument
291 const DecodeEntry& entry = Entry(*table, index); local
[all...]
/external/qemu/android/
H A Dsensors-port.c64 * each entry is a zero-terminator for its 'sensor_name' field. The end of the
65 * entire list is marked with an entry, containing -1 at its 'sensor_id' field.
116 _sensor_entry_is_terminator(const SensorEntry* entry) argument
118 return entry == NULL || entry->sensor_id == -1;
126 _sensor_entry_next(const SensorEntry* entry) argument
128 if (!_sensor_entry_is_terminator(entry)) {
131 entry = (const SensorEntry*)(entry->sensor_name + strlen(entry
141 _sensor_entry_list_size(const SensorEntry* entry) argument
195 const SensorEntry* entry = _sensor_entry_is_terminator(list) ? NULL : list; local
[all...]
/external/chromium_org/content/browser/ssl/
H A Dssl_manager.cc116 NavigationEntryImpl* entry = local
121 if (entry) {
136 // We may not have an entry if this is a navigation to an initial blank
138 entry->GetSSL() = SSLStatus();
139 entry->GetSSL().cert_id = ssl_cert_id;
140 entry->GetSSL().cert_status = ssl_cert_status;
141 entry->GetSSL().security_bits = ssl_security_bits;
142 entry->GetSSL().connection_status = ssl_connection_status;
143 entry->GetSSL().signed_certificate_timestamp_ids =
148 UpdateEntry(entry);
207 UpdateEntry(NavigationEntryImpl* entry) argument
[all...]
/external/chromium_org/third_party/WebKit/Source/core/html/parser/
H A Dcreate-html-entity-table67 entries.sort(key = lambda entry: entry[ENTITY])
122 for entry in entries:
123 check_ascii(entry[ENTITY])
130 # semi-colon in the array but as a bit in the entry.
131 entity = entry[ENTITY]
157 assert len(entry) == 2, "We will use slot [2] in the list for the offset."
159 entry.append(this_offset)
164 for offset, entry in enumerate(entries):
165 starting_letter = entry[ENTIT
[all...]
/external/chromium_org/ash/accelerators/
H A Daccelerator_table_unittest.cc32 const AcceleratorData& entry = kAcceleratorData[i]; local
33 EXPECT_TRUE(acclerators.insert(entry).second)
34 << "Duplicated accelerator: " << entry.trigger_on_press << ", "
35 << entry.keycode << ", " << (entry.modifiers & ui::EF_SHIFT_DOWN)
36 << ", " << (entry.modifiers & ui::EF_CONTROL_DOWN) << ", "
37 << (entry.modifiers & ui::EF_ALT_DOWN);
/external/chromium_org/components/variations/
H A Dcaching_permuted_entropy_provider.cc76 PermutedEntropyCache::Entry* entry; local
79 // If the cache is full, evict the first entry, swapping later entries in
86 entry = cache_.mutable_entry(kMaxSize - 1);
88 entry = cache_.add_entry();
91 entry->set_randomization_seed(randomization_seed);
92 entry->set_value(value);
100 if (cache_.entry(i).randomization_seed() == randomization_seed) {
101 *value = cache_.entry(i).value();
/external/chromium_org/third_party/angle/src/compiler/translator/
H A DUnfoldShortCircuitAST.cpp63 const NodeUpdateEntry& entry = replacements[ii]; local
64 ASSERT(entry.parent);
65 bool replaced = entry.parent->replaceChildNode(
66 entry.original, entry.replacement);
76 if (entry2.parent == entry.original)
77 entry2.parent = entry.replacement;
/external/chromium_org/third_party/mesa/src/src/mapi/glapi/
H A Dglapi_getproc.c53 * and return the corresponding glprocs_table_t entry.
176 * only allocate the entry-point stub when the application requests the
263 * \param funcName Name of the function to create an entry-point for.
271 struct _glapi_function * entry = NULL; local
292 entry = & ExtEntryTable[NumExtEntryPoints];
295 entry->name = name_dup;
296 entry->parameter_signature = NULL;
297 entry->dispatch_offset = ~0;
298 entry->dispatch_stub = entrypoint;
300 return entry;
305 set_entry_info( struct _glapi_function * entry, const char * signature, unsigned offset ) argument
379 struct _glapi_function * entry[8]; local
511 struct _glapi_function * entry; local
[all...]
/external/chromium_org/tools/memory_inspector/memory_inspector/core/
H A Dmemory_map.py16 def Add(self, entry):
17 assert(isinstance(entry, MapEntry))
18 bisect.insort_right(self.entries, entry)
25 entry = self.entries[idx]
26 assert(addr >= entry.start)
29 if addr > entry.end:
31 return entry
41 """An entry (address range + stats) in a memory |Map|."""
/external/e2fsprogs/lib/ss/
H A Dlist_rqs.c28 ss_request_entry *entry; local
59 entry = (*table)->requests;
60 for (; entry->command_names; entry++) {
63 if (entry->flags & SS_OPT_DONT_LIST)
65 for (name = entry->command_names; *name; name++) {
80 strcat(buffer, entry->info_string);
/external/glide/library/src/main/java/com/bumptech/glide/volley/
H A DVolleyDiskCacheWrapper.java63 public void put(final String key, final Entry entry) { argument
67 CacheHeader header = new CacheHeader(key, entry);
71 os.write(entry.data);
89 Entry entry = get(key);
90 if (entry != null) {
91 entry.softTtl = 0;
93 entry.ttl = 0;
95 put(key, entry);
113 CacheHeader entry = new CacheHeader();
119 entry
165 CacheHeader(String key, Entry entry) argument
[all...]
/external/libexif/contrib/examples/
H A Dphotographer.c28 ExifEntry *entry = exif_content_get_entry(d->ifd[ifd],tag); local
29 if (entry) {
33 exif_entry_get_value(entry, buf, sizeof(buf));
71 ExifEntry *entry; local
103 entry = exif_content_get_entry(ed->ifd[EXIF_IFD_0], EXIF_TAG_MAKE);
104 if (entry) {
108 if (exif_entry_get_value(entry, buf, sizeof(buf))) {
/external/mesa3d/src/mapi/glapi/
H A Dglapi_getproc.c53 * and return the corresponding glprocs_table_t entry.
176 * only allocate the entry-point stub when the application requests the
263 * \param funcName Name of the function to create an entry-point for.
271 struct _glapi_function * entry = NULL; local
292 entry = & ExtEntryTable[NumExtEntryPoints];
295 entry->name = name_dup;
296 entry->parameter_signature = NULL;
297 entry->dispatch_offset = ~0;
298 entry->dispatch_stub = entrypoint;
300 return entry;
305 set_entry_info( struct _glapi_function * entry, const char * signature, unsigned offset ) argument
379 struct _glapi_function * entry[8]; local
511 struct _glapi_function * entry; local
[all...]

Completed in 710 milliseconds

<<11121314151617181920>>