Searched refs:entry (Results 251 - 275 of 2747) sorted by relevance

<<11121314151617181920>>

/external/chromium_org/sync/tools/testserver/
H A Dchromiumsync.py166 """An entry should not have more than one data type present."""
204 def GetEntryType(entry):
208 entry: A SyncEntity protobuf object whose type to determine.
210 An enum value from ALL_TYPES if the entry's type can be determined, or None
214 the entry.
216 if entry.server_defined_unique_tag == TOP_LEVEL_FOLDER_TAG:
218 entry_types = GetEntryTypesFromSpecifics(entry.specifics)
586 def _SaveEntry(self, entry):
587 """Insert or update an entry in the change log, and give it a new version.
589 The ID fields of this entry ar
[all...]
/external/chromium_org/android_webview/native/
H A Dstate_serializer.cc117 // Set up the file access rights for the selected navigation entry.
154 bool WriteNavigationEntryToPickle(const content::NavigationEntry& entry, argument
156 if (!pickle->WriteString(entry.GetURL().spec()))
159 if (!pickle->WriteString(entry.GetVirtualURL().spec()))
162 const content::Referrer& referrer = entry.GetReferrer();
168 if (!pickle->WriteString16(entry.GetTitle()))
171 if (!pickle->WriteString(entry.GetPageState().ToEncodedData()))
174 if (!pickle->WriteBool(static_cast<int>(entry.GetHasPostData())))
177 if (!pickle->WriteString(entry.GetOriginalRequestURL().spec()))
180 if (!pickle->WriteString(entry
197 RestoreNavigationEntryFromPickle(PickleIterator* iterator, content::NavigationEntry* entry) argument
[all...]
/external/chromium_org/chrome/browser/chromeos/drive/file_system/
H A Dtouch_operation_unittest.cc44 ResourceEntry entry; local
45 EXPECT_EQ(FILE_ERROR_OK, GetLocalResourceEntry(kTestPath, &entry));
47 base::Time::FromInternalValue(entry.file_info().last_accessed()));
49 base::Time::FromInternalValue(entry.file_info().last_modified()));
50 EXPECT_EQ(ResourceEntry::DIRTY, entry.metadata_edit_state());
56 EXPECT_TRUE(delegate()->updated_local_ids().count(entry.local_id()));
/external/chromium_org/chrome/browser/favicon/
H A Dfavicon_tab_helper.cc69 // entry rather than a pending navigation entry.
71 NavigationEntry* entry = controller.GetTransientEntry(); local
72 if (entry)
73 return entry->GetFavicon().image;
75 entry = controller.GetLastCommittedEntry();
76 if (entry)
77 return entry->GetFavicon().image;
83 NavigationEntry* entry = controller.GetTransientEntry(); local
84 if (entry)
114 NavigationEntry* entry = web_contents()->GetController().GetActiveEntry(); local
180 NavigationEntry* entry = web_contents()->GetController().GetActiveEntry(); local
[all...]
/external/chromium_org/components/autofill/core/browser/webdata/
H A Dautofill_entry.cc55 bool AutofillEntry::operator==(const AutofillEntry& entry) const {
56 return key() == entry.key() &&
57 date_created() == entry.date_created() &&
58 date_last_used() == entry.date_last_used();
61 bool AutofillEntry::operator<(const AutofillEntry& entry) const {
62 return key_ < entry.key();
/external/chromium_org/components/dom_distiller/core/
H A Ddistilled_content_store.h29 virtual void SaveContent(const ArticleEntry& entry,
32 virtual void LoadContent(const ArticleEntry& entry,
44 // Lookup can be done based on entry ID or URL.
51 virtual void SaveContent(const ArticleEntry& entry,
54 virtual void LoadContent(const ArticleEntry& entry,
58 void InjectContent(const ArticleEntry& entry,
73 void AddUrlToIdMapping(const ArticleEntry& entry,
/external/chromium_org/net/tools/gdig/
H A Dfile_net_log.cc23 void FileNetLogObserver::OnAddEntry(const net::NetLog::Entry& entry) { argument
25 DCHECK(entry.source().IsValid());
27 const char* source = NetLog::SourceTypeToString(entry.source().type);
28 const char* type = NetLog::EventTypeToString(entry.type());
30 scoped_ptr<base::Value> param_value(entry.ParametersToValue());
45 entry.source().id, source, type, params.c_str());
/external/chromium_org/third_party/WebKit/Source/build/scripts/
H A Dmake_names.py37 def _symbol(entry):
38 if entry['Symbol'] is not None:
39 return entry['Symbol']
41 if entry['name'].startswith('-webkit-'):
42 return entry['name'].replace('-', '_')[1:]
43 return name_utilities.cpp_name(entry).replace('-', '_')
/external/chromium_org/third_party/mesa/src/src/mapi/mapi/
H A Dentry_x86-64_tls.h89 entry_patch(mapi_func entry, int slot) argument
91 char *code = (char *) entry;
106 mapi_func entry; local
120 entry = (mapi_func) code;
121 entry_patch(entry, slot);
123 return entry;
/external/lldb/source/Plugins/DynamicLoader/POSIX-DYLD/
H A DDYLDRendezvous.cpp123 SOEntry entry; local
159 SOEntry entry; local
167 for (addr_t cursor = m_current.map_addr; cursor != 0; cursor = entry.next)
169 if (!ReadSOEntryFromMemory(cursor, entry))
173 // On Linux this is indicated by an empty path in the entry.
175 if (entry.path.empty() || ::strcmp(entry.path.c_str(), m_exe_path) == 0)
178 pos = std::find(m_soentries.begin(), m_soentries.end(), entry);
181 m_soentries.push_back(entry);
182 m_added_soentries.push_back(entry);
214 SOEntry entry; local
276 ReadSOEntryFromMemory(lldb::addr_t addr, SOEntry &entry) argument
[all...]
/external/mesa3d/src/mapi/mapi/
H A Dentry_x86-64_tls.h89 entry_patch(mapi_func entry, int slot) argument
91 char *code = (char *) entry;
106 mapi_func entry; local
120 entry = (mapi_func) code;
121 entry_patch(entry, slot);
123 return entry;
/external/mp4parser/isoparser/src/main/java/com/googlecode/mp4parser/authoring/builder/
H A DTwoSecondIntersectionFinder.java33 for (TimeToSampleBox.Entry entry : track.getDecodingTimeEntries()) {
34 duration += entry.getCount() * entry.getDelta();
64 for (TimeToSampleBox.Entry entry : entries) {
65 for (int i = 0; i < entry.getCount(); i++) {
71 time += entry.getDelta();
/external/skia/src/core/
H A DSkQuadTree.cpp57 void SkQuadTree::insert(Node* node, Entry* entry) { argument
60 switch(child_intersect(entry->fBounds, node->fSplitPoint)) {
62 this->insert(node->fChildren[kTopLeft], entry);
65 this->insert(node->fChildren[kTopRight], entry);
68 this->insert(node->fChildren[kBottomLeft], entry);
71 this->insert(node->fChildren[kBottomRight], entry);
74 node->fEntries.push(entry);
79 node->fEntries.push(entry);
115 for (Entry* entry = node->fEntries.head(); NULL != entry;
161 Entry* entry = fEntryPool.acquire(); local
201 Entry* entry = entries.pop(); local
[all...]
/external/srec/portable/include/
H A Dphashtable.h67 * hash table is increased and each entry is put in its new linked list based
218 * Retrieves the hash entry corresponding to the key.
221 * @param key The key for which to retrieve the hash entry.
222 * @param entry The entry associated with the key. Cannot be NULL.
227 PHashTableEntry **entry);
230 * Returns the key and value associated with this entry. Both key and values
231 * can be deleted after removing the entry from the table.
233 * @param entry The hashtable entry
[all...]
/external/srec/portable/src/
H A DPFileSystemImpl.c80 PHashTableEntry* entry; local
88 CHKLOG(rc, PHashTableEntryGetFirst(PFileSystemPathMap, &entry));
89 while (entry != NULL)
91 CHKLOG(rc, PHashTableEntryGetKeyValue(entry, (void **)&key, (void **)NULL));
92 oldEntry = entry;
93 CHKLOG(rc, PHashTableEntryAdvance(&entry));
/external/chromium_org/v8/src/
H A Dprofile-generator.cc43 HashMap::Entry* entry = GetEntry(src, len); local
44 if (entry->value == NULL) {
48 entry->key = dst.start();
49 entry->value = entry->key;
51 return reinterpret_cast<const char*>(entry->value);
65 HashMap::Entry* entry = GetEntry(str, len); local
66 if (entry->value == NULL) {
67 // New entry added.
68 entry
184 FindChild(CodeEntry* entry) argument
192 FindOrAddChild(CodeEntry* entry) argument
354 AddCode(Address addr, CodeEntry* entry, unsigned size) argument
380 const CodeEntryInfo& entry = locator.value(); local
396 const CodeEntryInfo& entry = locator.value(); local
580 CodeEntry** entry = entries.start(); local
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/settings/
H A DEditFileSystemDialog.js149 var entry = /** @type {!WebInspector.FileSystemMapping.Entry} */ (event.data);
150 this._addMappingRow(entry);
155 var entry = /** @type {!WebInspector.FileSystemMapping.Entry} */ (event.data);
156 if (this._fileSystemPath !== entry.fileSystemPath)
158 delete this._entries[entry.urlPrefix];
159 if (this._fileMappingsList.itemForId(entry.urlPrefix))
160 this._fileMappingsList.removeItem(entry.urlPrefix);
173 var entry = this._entries[itemId];
176 return entry.urlPrefix;
178 return entry
[all...]
/external/chromium_org/chrome/browser/resources/net_internals/
H A Dcros_log_visualizer_view.js46 // Stores log entry objects
129 * Creates the log table where each row represents a entry of log.
149 createTableRow: function(entry) {
158 var levelTag = addNodeWithText(cells[0], 'p', entry.level);
159 levelTag.className = LOG_CELL_LEVEL_CLASSNAME_LIST[entry.level];
163 cells[1].textContent = entry.getTime();
167 this.marker.getHighlightedEntry(entry, 'processName', cells[2]);
171 this.marker.getHighlightedEntry(entry, 'processID', cells[3]);
175 this.marker.getHighlightedEntry(entry, 'description', cells[4]);
193 * Uses the search query to match the pattern in different fields of entry
[all...]
/external/chromium_org/content/browser/renderer_host/media/
H A Daudio_renderer_host.cc223 AudioEntry* const entry = LookupById(stream_id); local
224 if (!entry) {
232 if (!entry->shared_memory()->ShareToProcess(PeerHandle(),
236 ReportErrorAndClose(entry->stream_id());
240 AudioSyncReader* reader = static_cast<AudioSyncReader*>(entry->reader());
247 ReportErrorAndClose(entry->stream_id());
252 entry->stream_id(), foreign_memory_handle, socket_descriptor,
253 entry->shared_memory()->requested_size()));
260 AudioEntry* const entry = LookupById(stream_id); local
261 if (!entry)
299 AudioEntry* entry = it->second; local
390 AudioEntry* entry = LookupById(stream_id); local
403 AudioEntry* entry = LookupById(stream_id); local
416 AudioEntry* entry = LookupById(stream_id); local
453 DeleteEntry(scoped_ptr<AudioEntry> entry) argument
[all...]
/external/chromium_org/base/prefs/
H A Dpref_value_map.cc20 const Map::const_iterator entry = prefs_.find(key); local
21 if (entry != prefs_.end()) {
23 *value = entry->second;
31 const Map::const_iterator entry = prefs_.find(key); local
32 if (entry != prefs_.end()) {
34 *value = entry->second;
44 const Map::iterator entry = prefs_.find(key); local
45 if (entry != prefs_.end()) {
46 if (base::Value::Equals(entry->second, value))
48 delete entry
58 const Map::iterator entry = prefs_.find(key); local
[all...]
/external/chromium_org/chrome/browser/chromeos/drive/
H A Dresource_metadata.cc40 // Returns true when there is no entry with the specified name under the parent
41 // other than the specified entry.
59 // Returns true when the ID is used by an immutable entry.
125 ResourceEntry entry; local
126 FileError error = storage_->GetEntry(util::kDriveGrandRootLocalId, &entry);
137 if (!entry.resource_id().empty()) {
139 entry.clear_resource_id();
140 error = storage_->PutEntry(entry);
149 error = storage_->GetEntry(util::kDriveOtherDirLocalId, &entry);
160 if (!entry
225 AddEntry(const ResourceEntry& entry, std::string* out_id) argument
329 ResourceEntry entry; local
352 RefreshEntry(const ResourceEntry& entry) argument
418 ResourceEntry entry; local
451 ResourceEntry entry; local
500 PutEntryUnderDirectory(const ResourceEntry& entry) argument
514 GetDeduplicatedBaseName( const ResourceEntry& entry, std::string* base_name) argument
582 ResourceEntry entry; local
[all...]
/external/chromium_org/sync/internal_api/
H A Dsync_backup_manager.cc80 syncable::MutableEntry entry(trans.GetWrappedWriteTrans(),
82 CHECK(entry.good());
84 if (!entry.GetId().ServerKnows())
85 entry.PutId(syncable::Id::CreateFromServerId(entry.GetId().value()));
86 if (!entry.GetParentId().ServerKnows()) {
87 entry.PutParentIdPropertyOnly(syncable::Id::CreateFromServerId(
88 entry.GetParentId().value()));
90 entry.PutBaseVersion(1);
91 entry
[all...]
/external/apache-http/src/org/apache/http/impl/conn/tsccm/
H A DConnPoolByRoute.java250 * Obtains a pool entry with a connection within the given timeout.
260 * @return pool entry holding a connection for the route
279 BasicPoolEntry entry = null;
286 while (entry == null) {
305 entry = getFreeEntry(rospl, state);
306 if (entry != null) {
320 entry = createEntry(rospl, operator);
325 entry = createEntry(rospl, operator);
362 } // while no entry
368 return entry;
375 freeEntry(BasicPoolEntry entry, boolean reusable, long validDuration, TimeUnit timeUnit) argument
523 deleteEntry(BasicPoolEntry entry) argument
[all...]
/external/chromium_org/third_party/libevent/
H A Devent_rpcgen.py32 def AddEntry(self, entry):
33 if self._tags.has_key(entry.Tag()):
36 entry.Name(), entry.Tag(),
37 self._tags[entry.Tag()], line_count)
39 self._entries.append(entry)
40 self._tags[entry.Tag()] = entry.Name()
41 print >>sys.stderr, ' Added entry: %s' % entry
[all...]
/external/chromium_org/ui/file_manager/file_manager/foreground/js/
H A Dfile_type.js192 * @param {Entry} entry Reference to the file.
196 FileType.getExtension = function(entry) {
198 if (entry.isDirectory)
201 var extensionStartIndex = entry.name.lastIndexOf('.');
203 extensionStartIndex === entry.name.length - 1) {
207 return entry.name.substr(extensionStartIndex);
238 * @param {Entry} entry Reference to the file.
241 FileType.getType = function(entry) {
242 if (entry.isDirectory)
247 if (types[i].pattern.test(entry
[all...]

Completed in 3468 milliseconds

<<11121314151617181920>>