Searched defs:Entry (Results 1 - 25 of 347) sorted by path

1234567891011>>

/external/antlr/antlr-3.4/runtime/ActionScript/project/lib/
H A DFlexAntTasks.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/adobe/ com/adobe/ac/ com/adobe/ac/ant/ ...
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Collections/
H A DHashList.cs60 Entry enumerator in enum:Antlr.Runtime.Collections.HashList.HashListEnumerator.EnumerationMode
118 public DictionaryEntry Entry property in class:Antlr.Runtime.Collections.HashList.HashListEnumerator
385 return new HashListEnumerator(this, HashListEnumerator.EnumerationMode.Entry);
477 return new HashListEnumerator(this, HashListEnumerator.EnumerationMode.Entry);
/external/apache-http/src/org/apache/commons/logging/impl/
H A DWeakHashtable.java166 Map.Entry entry = (Map.Entry) it.next();
171 Entry dereferencedEntry = new Entry(key, value);
257 Map.Entry entry = (Map.Entry) it.next();
348 /** Entry implementation */
349 private final static class Entry implements Map.Entry { class in class:WeakHashtable
354 private Entry(Objec method in class:WeakHashtable.Entry
[all...]
/external/chromium_org/cc/resources/
H A Dmemory_history.h22 struct Entry { struct in class:cc::MemoryHistory
23 Entry() function in struct:cc::MemoryHistory::Entry
38 void SaveEntry(const Entry& entry);
41 typedef RingBuffer<Entry, 80> RingBufferType;
/external/chromium_org/chrome/browser/
H A Dcustom_home_pages_table_model.cc57 struct CustomHomePagesTableModel::Entry { struct in class:CustomHomePagesTableModel
58 Entry() : task_id(base::CancelableTaskTracker::kBadTaskId) {} function in struct:CustomHomePagesTableModel::Entry
109 std::vector<Entry> moved_entries;
151 entries_.insert(entries_.begin() + static_cast<size_t>(index), Entry());
160 Entry* entry = &(entries_[index]);
222 void CustomHomePagesTableModel::LoadTitle(Entry* entry) {
240 Entry* entry = NULL;
/external/chromium_org/chrome/browser/media_galleries/
H A Dmedia_galleries_dialog_controller.h46 struct Entry { struct in class:MediaGalleriesDialogController
47 Entry(const MediaGalleryPrefInfo& pref_info, bool selected) function in struct:MediaGalleriesDialogController::Entry
51 Entry() {} function in struct:MediaGalleriesDialogController::Entry
57 typedef std::vector<Entry> Entries;
69 virtual bool ShouldShowFolderViewer(const Entry& entry) const = 0;
/external/chromium_org/chrome/browser/prerender/
H A Dprerender_history.h27 // Entry is an individual entry in the history list. It corresponds to a
29 struct Entry { struct in class:prerender::PrerenderHistory
30 Entry() : final_status(FINAL_STATUS_MAX), origin(ORIGIN_MAX) {} function in struct:prerender::PrerenderHistory::Entry
32 Entry(const GURL& url_arg, function in struct:prerender::PrerenderHistory::Entry
62 void AddEntry(const Entry& entry);
71 std::list<Entry> entries_;
/external/chromium_org/chrome/browser/sessions/
H A Dtab_restore_service.cc13 // Entry ----------------------------------------------------------------------
15 // ID of the next Entry.
18 TabRestoreService::Entry::Entry() function in class:TabRestoreService::Entry
23 TabRestoreService::Entry::Entry(Type type) function in class:TabRestoreService::Entry
28 TabRestoreService::Entry::~Entry() {}
33 : Entry(TAB),
45 TabRestoreService::Window::Window() : Entry(WINDO
[all...]
H A Dtab_restore_service.h56 struct Entry { struct in class:TabRestoreService
57 Entry();
58 explicit Entry(Type type);
59 virtual ~Entry();
78 struct Tab : public Entry {
111 struct Window : public Entry {
125 typedef std::list<Entry*> Entries;
H A Dtab_restore_service_helper.h36 typedef TabRestoreService::Entry Entry; typedef in class:TabRestoreServiceHelper
103 void AddEntry(Entry* entry, bool prune, bool to_front);
116 static bool ValidateEntry(Entry* entry);
159 static bool FilterEntry(Entry* entry);
/external/chromium_org/chrome/browser/ui/views/toolbar/
H A Dwrench_menu.h116 typedef std::pair<ui::MenuModel*,int> Entry; typedef in class:WrenchMenu
117 typedef std::map<int,Entry> CommandIDToEntry;
/external/chromium_org/components/os_crypt/
H A Die7_password_win.cc23 // item_count * sizeof(Entry);
36 struct Entry { struct in namespace:__anon6658
47 Entry entry[1]; // List of entries containing a string. Even-indexed
78 const Entry* user_entry = &information->entry[2*i];
79 const Entry* pass_entry = user_entry+1;
/external/chromium_org/components/policy/core/common/
H A Dpolicy_map.cc14 PolicyMap::Entry::Entry() function in class:policy::PolicyMap::Entry
20 void PolicyMap::Entry::DeleteOwnedMembers() {
27 scoped_ptr<PolicyMap::Entry> PolicyMap::Entry::DeepCopy() const {
28 scoped_ptr<Entry> copy(new Entry);
40 bool PolicyMap::Entry::has_higher_priority_than(
41 const PolicyMap::Entry& other) const {
48 bool PolicyMap::Entry
[all...]
H A Dpolicy_map.h23 // Each policy maps to an Entry which keeps the policy value as well as other
25 struct POLICY_EXPORT Entry { struct in class:policy::PolicyMap
31 Entry();
37 scoped_ptr<Entry> DeepCopy() const;
40 bool has_higher_priority_than(const Entry& other) const;
43 bool Equals(const Entry& other) const;
46 typedef std::map<std::string, Entry> PolicyMapType;
54 const Entry* Get(const std::string& policy) const;
83 // by Entry::has_higher_priority_than(). If a policy is contained in both
/external/chromium_org/content/browser/android/
H A Dsystem_ui_resource_manager_impl.cc77 class SystemUIResourceManagerImpl::Entry class in class:content::SystemUIResourceManagerImpl
80 explicit Entry(UIResourceProvider* provider) : id_(0), provider_(provider) { function in class:content::SystemUIResourceManagerImpl::Entry
84 virtual ~Entry() {
122 DISALLOW_COPY_AND_ASSIGN(Entry);
142 SystemUIResourceManagerImpl::Entry* SystemUIResourceManagerImpl::GetEntry(
147 resource_map_[type].reset(new Entry(ui_resource_provider_));
/external/chromium_org/content/browser/appcache/
H A Dappcache_response.h74 class Entry { class in class:content::AppCacheDiskCacheInterface
83 virtual ~Entry() {}
86 virtual int CreateEntry(int64 key, Entry** entry,
88 virtual int OpenEntry(int64 key, Entry** entry,
119 AppCacheDiskCacheInterface::Entry* entry_;
184 void OnOpenEntryComplete(AppCacheDiskCacheInterface::Entry** entry, int rv);
250 void OnCreateEntryComplete(AppCacheDiskCacheInterface::Entry** entry, int rv);
/external/chromium_org/content/browser/quota/
H A Dquota_database_unittest.cc355 typedef QuotaDatabase::OriginInfoTableEntry Entry; typedef
356 Entry kTableEntries[] = {
357 Entry(GURL("http://go/"), kStorageTypeTemporary, 2147483647, now, now),
358 Entry(GURL("http://oo/"), kStorageTypeTemporary, 0, now, now),
359 Entry(GURL("http://gle/"), kStorageTypeTemporary, 1, now, now),
361 Entry* begin = kTableEntries;
362 Entry* end = kTableEntries + ARRAYSIZE_UNSAFE(kTableEntries);
369 typedef EntryVerifier<Entry> Verifier;
H A Dquota_manager_unittest.cc1917 typedef std::pair<TypedOrigin, int> Entry; typedef
1918 const Entry kEntries[] = {
1922 std::set<Entry> entries
/external/chromium_org/extensions/common/
H A Dvalue_counter.cc17 ValueCounter::Entry::Entry(const base::Value& value) function in class:extensions::ValueCounter::Entry
20 ValueCounter::Entry::~Entry() {}
22 int ValueCounter::Entry::Increment() { return ++count_; }
24 int ValueCounter::Entry::Decrement() { return --count_; }
52 entries_.push_back(linked_ptr<Entry>(new Entry(value)));
H A Dvalue_counter.h43 class Entry { class in class:extensions::ValueCounter
45 explicit Entry(const base::Value& value);
46 ~Entry();
58 DISALLOW_COPY_AND_ASSIGN(Entry);
60 typedef std::vector<linked_ptr<Entry> > EntryList;
/external/chromium_org/mojo/system/
H A Dhandle_table.cc15 HandleTable::Entry::Entry() : busy(false) { function in class:mojo::system::HandleTable::Entry
18 HandleTable::Entry::Entry(const scoped_refptr<Dispatcher>& dispatcher) function in class:mojo::system::HandleTable::Entry
22 HandleTable::Entry::~Entry() {
113 std::vector<Entry*> entries(num_handles);
203 handle_to_entry_map_[new_handle] = Entry(dispatcher);
H A Dhandle_table.h121 struct Entry { struct in class:mojo::system::HandleTable
122 Entry();
123 explicit Entry(const scoped_refptr<Dispatcher>& dispatcher);
124 ~Entry();
129 typedef base::hash_map<MojoHandle, Entry> HandleToEntryMap;
/external/chromium_org/net/base/
H A Dexpiring_cache.h82 typedef std::pair<ValueType, ExpirationType> Entry; typedef in class:net::ExpiringCache
83 typedef std::map<KeyType, Entry> EntryMap;
151 entries_.insert(std::make_pair(key, Entry(value, expiration)));
H A Dnet_log.cc123 base::Value* NetLog::Entry::ToValue() const {
148 base::Value* NetLog::Entry::ParametersToValue() const {
170 NetLog::Entry::Entry(const EntryData* data, LogLevel log_level) function in class:net::NetLog::Entry
174 NetLog::Entry::~Entry() {
198 OnAddEntry(Entry(&entry_data, log_level()));
H A Dnet_log.h138 // An Entry pre-binds EntryData to a LogLevel, so observers will observe the
141 class NET_EXPORT Entry { class in class:net::NetLog
143 Entry(const EntryData* data, LogLevel log_level);
144 ~Entry();
168 DISALLOW_COPY_AND_ASSIGN(Entry);
200 virtual void OnAddEntry(const Entry& entry) = 0;

Completed in 4786 milliseconds

1234567891011>>