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

12345678910

/external/webkit/Source/WebCore/fileapi/
H A DEntry.h50 class Entry : public EntryBase { class in namespace:WebCore
61 Entry(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
H A DEntry.cpp31 #include "Entry.h"
49 Entry::Entry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) function in class:WebCore::Entry
54 void Entry::getMetadata(PassRefPtr<MetadataCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef)
61 void Entry::moveTo(PassRefPtr<DirectoryEntry> parent, const String& name, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const
68 void Entry::copyTo(PassRefPtr<DirectoryEntry> parent, const String& name, PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const
75 void Entry::remove(PassRefPtr<VoidCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const
82 void Entry::getParent(PassRefPtr<EntryCallback> successCallback, PassRefPtr<ErrorCallback> errorCallbackRef) const
/external/chromium/net/disk_cache/
H A Ddisk_cache.h33 class Entry;
64 // for a given Entry (as opposed to the Backend) will still generate a
71 // Opens an existing entry. Upon success, |entry| holds a pointer to an Entry
77 virtual int OpenEntry(const std::string& key, Entry** entry,
81 // Entry object representing the newly created disk cache entry. When the
86 virtual int CreateEntry(const std::string& key, Entry** entry,
126 virtual int OpenNextEntry(void** iter, Entry** next_entry,
141 class Entry { class in namespace:disk_cache
293 virtual ~Entry() {}
/external/chromium/net/ftp/
H A Dftp_auth_cache.cc15 FtpAuthCache::Entry::Entry(const GURL& origin, function in class:net::FtpAuthCache::Entry
23 FtpAuthCache::Entry::~Entry() {}
29 FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) {
42 Entry* entry = Lookup(origin);
47 entries_.push_front(Entry(origin, username, password));
H A Dftp_auth_cache.h29 struct Entry { struct in class:net::FtpAuthCache
30 Entry(const GURL& origin, const string16& username,
32 ~Entry();
42 // Return Entry corresponding to given |origin| or NULL if not found.
43 Entry* Lookup(const GURL& origin);
57 typedef std::list<Entry> EntryList;
/external/chromium/chrome/browser/ui/views/
H A Dwrench_menu.h48 typedef std::pair<ui::MenuModel*,int> Entry; typedef in class:WrenchMenu
49 typedef std::map<int,Entry> IDToEntry;
/external/webkit/Source/WebCore/platform/text/
H A DAtomicStringKeyedMRUCache.h47 Entry entry = m_cache[foundIndex];
66 typedef pair<AtomicString, T> Entry; typedef in class:WebCore::AtomicStringKeyedMRUCache
67 typedef Vector<Entry, capacity> Cache;
/external/chromium/net/base/
H A Dcapturing_net_log.cc9 CapturingNetLog::Entry::Entry(EventType type, function in class:net::CapturingNetLog::Entry
18 CapturingNetLog::Entry::~Entry() {}
49 Entry entry(type, time, source, phase, extra_parameters);
H A Dhost_cache.cc14 HostCache::Entry::Entry(int error, function in class:net::HostCache::Entry
20 HostCache::Entry::~Entry() {
36 const HostCache::Entry* HostCache::Lookup(const Key& key,
46 Entry* entry = it->second.get();
53 HostCache::Entry* HostCache::Set(const Key& key,
64 scoped_refptr<Entry>& entry = entries_[key];
66 // Entry didn't exist, creating one now.
67 Entry* pt
[all...]
/external/skia/src/effects/
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/base/
H A Dfile_util_proxy.h27 struct Entry { struct in class:base::FileUtilProxy
49 const std::vector<Entry>&>::Type ReadDirectoryCallback;
/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;
/external/javassist/src/main/javassist/bytecode/analysis/
H A DIntQueue.java20 private static class Entry { class in class:IntQueue
21 private IntQueue.Entry next;
23 private Entry(int value) { method in class:IntQueue.Entry
27 private IntQueue.Entry head;
29 private IntQueue.Entry tail;
32 IntQueue.Entry entry = new Entry(value);
/external/llvm/include/llvm/ADT/
H A DUniqueVector.h36 unsigned insert(const T &Entry) { argument
38 unsigned &Val = Map[Entry];
47 Vector.push_back(Entry);
53 unsigned idFor(const T &Entry) const {
55 typename std::map<T, unsigned>::const_iterator MI = Map.find(Entry);
/external/llvm/include/llvm/Support/
H A DPredIteratorCache.h43 BasicBlock **&Entry = BlockToPredsMap[BB]; local
44 if (Entry) return Entry;
51 Entry = Memory.Allocate<BasicBlock*>(PredCache.size());
52 std::copy(PredCache.begin(), PredCache.end(), Entry);
53 return Entry;
/external/llvm/lib/VMCore/
H A DValueSymbolTable.cpp80 ValueName &Entry = vmap.GetOrCreateValue(Name); local
81 if (Entry.getValue() == 0) {
82 Entry.setValue(V);
83 //DEBUG(dbgs() << " Inserted value: " << Entry.getKeyData() << ": "
85 return &Entry;
/external/llvm/unittests/Bitcode/
H A DBitReaderTest.cpp33 BasicBlock* Entry = BasicBlock::Create(Mod->getContext(), "entry", Func); local
34 new UnreachableInst(Mod->getContext(), Entry);
/external/llvm/unittests/VMCore/
H A DVerifierTest.cpp29 BasicBlock *Entry = BasicBlock::Create(C, "entry", F.get()); local
37 BranchInst *BI = BranchInst::Create(Exit, Exit, False, Entry);
/external/llvm/utils/TableGen/
H A DStringToOffsetTable.h31 StringMapEntry<unsigned> &Entry = StringOffset.GetOrCreateValue(Str, -1U); local
32 if (Entry.getValue() == -1U) {
34 Entry.setValue(AggregateString.size());
40 return Entry.getValue();
/external/regex-re2/re2/
H A Dprefilter_tree.h59 // Each unique node has a corresponding Entry that helps in
61 struct Entry { struct in class:re2::PrefilterTree
107 vector<Entry> entries_;
/external/skia/src/gpu/
H A DGrTLList.h18 class Entry { class in class:GrTLList
19 Entry* fPrev;
20 Entry* fNext;
39 Entry* fHead;
40 Entry* fTail;
42 friend class Entry;
50 class Child : public GrTLList::Entry<Child> {
/external/chromium/chrome/browser/net/
H A Dchrome_net_log.cc44 ChromeNetLog::Entry::Entry(uint32 order, function in class:ChromeNetLog::Entry
58 ChromeNetLog::Entry::~Entry() {}
H A Dchrome_net_log.h38 struct Entry { struct in class:ChromeNetLog
39 Entry(uint32 order,
45 ~Entry();
55 typedef std::vector<Entry> EntryList;
/external/chromium/net/http/
H A Dhttp_auth_cache.cc69 HttpAuthCache::Entry* HttpAuthCache::Lookup(const GURL& origin,
86 HttpAuthCache::Entry* HttpAuthCache::LookupByPath(const GURL& origin,
88 HttpAuthCache::Entry* best_match = NULL;
111 HttpAuthCache::Entry* HttpAuthCache::Add(const GURL& origin,
122 HttpAuthCache::Entry* entry = Lookup(origin, realm, scheme);
130 entries_.push_front(Entry());
149 HttpAuthCache::Entry::~Entry() {
152 void HttpAuthCache::Entry::UpdateStaleChallenge(
158 HttpAuthCache::Entry function in class:net::HttpAuthCache::Entry
[all...]
/external/webkit/Source/WebCore/html/parser/
H A DHTMLFormattingElementList.h44 // Ideally Entry would be private, but HTMLTreeBuilder has to coordinate
46 // access to Entry::isMarker() and Entry::replaceElement() to do so.
47 class Entry { class in class:WebCore::HTMLFormattingElementList
50 explicit Entry(Element* element) function in class:WebCore::HTMLFormattingElementList::Entry
56 Entry(MarkerEntryType) function in class:WebCore::HTMLFormattingElementList::Entry
60 ~Entry() {}
83 Bookmark(Entry* entry)
89 void moveToAfter(Entry* before)
96 Entry* mar
[all...]

Completed in 481 milliseconds

12345678910