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

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DEntry.h48 class Entry : public EntryBase, public ScriptWrappable { class in namespace:blink
62 Entry(DOMFileSystemBase*, const String& fullPath);
H A DEntry.cpp31 #include "modules/filesystem/Entry.h"
46 Entry::Entry(DOMFileSystemBase* fileSystem, const String& fullPath) function in class:blink::Entry
51 void Entry::getMetadata(MetadataCallback* successCallback, ErrorCallback* errorCallback)
56 void Entry::moveTo(DirectoryEntry* parent, const String& name, EntryCallback* successCallback, ErrorCallback* errorCallback) const
61 void Entry::copyTo(DirectoryEntry* parent, const String& name, EntryCallback* successCallback, ErrorCallback* errorCallback) const
66 void Entry::remove(VoidCallback* successCallback, ErrorCallback* errorCallback) const
71 void Entry::getParent(EntryCallback* successCallback, ErrorCallback* errorCallback) const
76 void Entry::trace(Visitor* visitor)
/external/llvm/include/llvm/ADT/
H A DStringSet.h36 StringMapEntry<char> &Entry = this->GetOrCreateValue(Key); local
37 if (Entry.getValue() == '+')
39 Entry.setValue('+');
/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...]
/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/net/ftp/
H A Dftp_auth_cache.cc15 FtpAuthCache::Entry::Entry(const GURL& origin, function in class:net::FtpAuthCache::Entry
21 FtpAuthCache::Entry::~Entry() {}
27 FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) {
39 Entry* entry = Lookup(origin);
43 entries_.push_front(Entry(origin, credentials));
H A Dftp_auth_cache.h29 struct Entry { struct in class:net::FtpAuthCache
30 Entry(const GURL& origin, const AuthCredentials& credentials);
31 ~Entry();
40 // Return Entry corresponding to given |origin| or NULL if not found.
41 Entry* Lookup(const GURL& origin);
52 typedef std::list<Entry> EntryList;
/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/net/disk_cache/
H A Ddisk_cache.h34 class Entry;
84 virtual int OpenNextEntry(Entry** next_entry,
92 // for a given Entry (as opposed to the Backend) will still generate a
102 // Opens an existing entry. Upon success, |entry| holds a pointer to an Entry
108 virtual int OpenEntry(const std::string& key, Entry** entry,
112 // Entry object representing the newly created disk cache entry. When the
117 virtual int CreateEntry(const std::string& key, Entry** entry,
161 class NET_EXPORT Entry { class in namespace:disk_cache
312 virtual ~Entry() {}
316 void operator()(Entry* entr
[all...]
/external/chromium_org/net/dns/
H A Dhost_cache.cc17 HostCache::Entry::Entry(int error, const AddressList& addrlist, function in class:net::HostCache::Entry
25 HostCache::Entry::Entry(int error, const AddressList& addrlist) function in class:net::HostCache::Entry
31 HostCache::Entry::~Entry() {
43 const HostCache::Entry* HostCache::Lookup(const Key& key,
53 const Entry& entry,
103 const Entry& entry,
/external/chromium_org/third_party/skia/src/effects/gradients/
H A DSkGradientBitmapCache.cpp12 struct SkGradientBitmapCache::Entry { struct in class:SkGradientBitmapCache
13 Entry* fPrev;
14 Entry* fNext;
20 Entry(const void* buffer, size_t size, const SkBitmap& bm) function in struct:SkGradientBitmapCache::Entry
29 ~Entry() { sk_free(fBuffer); }
46 Entry* entry = fHead;
48 Entry* next = entry->fNext;
54 SkGradientBitmapCache::Entry* SkGradientBitmapCache::detach(Entry* entry) const {
72 void SkGradientBitmapCache::attachToHead(Entry* entr
[all...]
/external/chromium_org/ui/base/ime/
H A Dcandidate_window.cc38 const Entry& left = candidates_[i];
39 const Entry& right = cw.candidates_[i];
68 const CandidateWindow::Entry& candidate_entry = candidates()[i];
97 CandidateWindow::Entry::Entry() { function in class:ui::CandidateWindow::Entry
100 CandidateWindow::Entry::~Entry() {
/external/skia/src/effects/gradients/
H A DSkBitmapCache.cpp12 struct SkBitmapCache::Entry { struct in class:SkBitmapCache
13 Entry* fPrev;
14 Entry* fNext;
20 Entry(const void* buffer, size_t size, const SkBitmap& bm) function in struct:SkBitmapCache::Entry
29 ~Entry() { sk_free(fBuffer); }
46 Entry* entry = fHead;
48 Entry* next = entry->fNext;
54 SkBitmapCache::Entry* SkBitmapCache::detach(Entry* entry) const {
72 void SkBitmapCache::attachToHead(Entry* entr
[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/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/components/policy/core/common/
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/mojo/system/
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/third_party/android_crazy_linker/src/src/
H A Dcrazy_linker_proc_maps.h32 struct Entry { struct in class:crazy::ProcMaps
47 bool GetNextEntry(Entry* entry);
/external/chromium_org/third_party/re2/re2/
H A Dprefilter_tree.h62 // Each unique node has a corresponding Entry that helps in
64 struct Entry { struct in class:re2::PrefilterTree
110 vector<Entry> entries_;
/external/chromium_org/third_party/skia/src/core/
H A DSkTileGrid.h53 struct Entry { struct in class:SkTileGrid
63 SkTDArray<Entry>* fTiles;
/external/chromium_org/ui/views/
H A Dview_model.h74 struct Entry { struct in class:views::ViewModel
75 Entry() : view(NULL) {} function in struct:views::ViewModel::Entry
80 typedef std::vector<Entry> Entries;
/external/chromium_org/v8/src/
H A Dcircular-queue.h50 struct V8_ALIGNED(PROCESSOR_CACHE_LINE_SIZE) Entry {
51 Entry() : marker(kEmpty) {} function
56 Entry* Next(Entry* entry);
58 Entry buffer_[Length];
59 V8_ALIGNED(PROCESSOR_CACHE_LINE_SIZE) Entry* enqueue_pos_;
60 V8_ALIGNED(PROCESSOR_CACHE_LINE_SIZE) Entry* dequeue_pos_;
/external/chromium_org/v8/src/compiler/
H A Dnode-cache.h33 struct Entry { struct in class:v8::internal::compiler::NodeCache
38 Entry* entries_; // lazily-allocated hash entries.
/external/clang/test/CodeGen/
H A Dpointer-signext.c26 MEMORY_MAP *Entry; local
30 Entry = CR (Link, MEMORY_MAP, Link);
31 return (int) Entry->Signature;

Completed in 576 milliseconds

1234567891011>>