Searched refs:Entry (Results 151 - 175 of 1050) sorted by relevance

1234567891011>>

/external/chromium_org/content/browser/devtools/
H A Ddevtools_netlog_observer.h32 virtual void OnAddEntry(const net::NetLog::Entry& entry) OVERRIDE;
34 void OnAddURLRequestEntry(const net::NetLog::Entry& entry);
/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...]
H A Ddisk_cache_test_base.h28 class Entry;
66 int OpenNextEntry(disk_cache::Entry** next_entry);
125 int OpenEntry(const std::string& key, disk_cache::Entry** entry);
126 int CreateEntry(const std::string& key, disk_cache::Entry** entry);
135 int ReadData(disk_cache::Entry* entry, int index, int offset,
137 int WriteData(disk_cache::Entry* entry, int index, int offset,
139 int ReadSparseData(disk_cache::Entry* entry, int64 offset, net::IOBuffer* buf,
141 int WriteSparseData(disk_cache::Entry* entry, int64 offset,
/external/chromium_org/remoting/base/
H A Dvlog_net_log.cc22 virtual void OnAddEntry(const net::NetLog::Entry& entry) OVERRIDE;
34 void VlogNetLog::Observer::OnAddEntry(const net::NetLog::Entry& entry) {
/external/chromium_org/sync/engine/
H A Dcommit_util.h22 class Entry;
43 const syncable::Entry& meta_entry,
H A Dupdate_applicator.h30 class Entry;
63 bool SkipUpdate(const syncable::Entry& entry);
/external/chromium_org/sync/internal_api/public/
H A Dread_node.h18 // ReadNode wraps a syncable::Entry to provide the functionality of a
53 virtual const syncable::Entry* GetEntry() const OVERRIDE;
63 syncable::Entry* entry_;
/external/chromium_org/sync/syncable/
H A Dnigori_util.h27 class Entry;
50 const Entry& entry);
/external/chromium_org/third_party/WebKit/Source/modules/filesystem/
H A DDirectoryEntry.cpp43 : Entry(fileSystem, fullPath)
71 Entry::trace(visitor);
H A DDirectoryEntry.h34 #include "modules/filesystem/Entry.h"
47 class DirectoryEntry FINAL : public Entry {
67 DEFINE_TYPE_CASTS(DirectoryEntry, Entry, entry, entry->isDirectory(), entry.isDirectory());
H A DDirectoryEntry.idl33 ] interface DirectoryEntry : Entry {
H A DEntry.h48 class Entry : public EntryBase, public ScriptWrappable { class in namespace:blink
62 Entry(DOMFileSystemBase*, const String& fullPath);
/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/deqp/framework/common/
H A DtcuFunctionLibrary.hpp54 struct Entry struct in class:tcu::StaticFunctionLibrary
60 StaticFunctionLibrary (const Entry* entries, int numEntries);
/external/guava/guava/src/com/google/common/collect/
H A DForwardingSetMultimap.java21 import java.util.Map.Entry;
41 @Override public Set<Entry<K, V>> entries() {
H A DMapConstraints.java30 import java.util.Map.Entry;
175 * constraint. The {@link Entry#setValue} operation will be verified with the
182 private static <K, V> Entry<K, V> constrainedEntry( argument
183 final Entry<K, V> entry,
188 @Override protected Entry<K, V> delegate() {
200 * specified constraint. The {@link Entry#setValue} operation will be verified
201 * with the constraint, and the collection returned by {@link Entry#getValue}
208 private static <K, V> Entry<K, Collection<V>> constrainedAsMapEntry( argument
209 final Entry<K, Collection<V>> entry,
214 @Override protected Entry<
[all...]
H A DSingletonImmutableMap.java38 private transient Entry<K, V> entry;
45 SingletonImmutableMap(Entry<K, V> entry) {
51 private Entry<K, V> entry() {
52 Entry<K, V> e = entry;
82 private transient ImmutableSet<Entry<K, V>> entrySet;
84 @Override public ImmutableSet<Entry<K, V>> entrySet() {
85 ImmutableSet<Entry<K, V>> es = entrySet;
142 Entry<?, ?> entry = that.entrySet().iterator().next();
/external/guava/guava-gwt/src/com/google/common/collect/
H A DHashBasedTable_CustomFieldSerializer.java24 import java.util.Map.Entry;
42 for (Entry<?, ?> row : hashMap.entrySet()) {
/external/lldb/include/lldb/Interpreter/
H A DCommandObjectRegexCommand.h64 struct Entry struct in class:lldb_private::CommandObjectRegexCommand
70 typedef std::list<Entry> EntryCollection;
/external/llvm/include/llvm/Support/
H A DSpecialCaseList.h85 struct Entry;
86 StringMap<StringMap<Entry> > Entries;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DAddressPool.cpp43 for (const MCExpr *Entry : Entries)
44 Asm.OutStreamer.EmitValue(Entry, Asm.getDataLayout().getPointerSize());
/external/llvm/lib/IR/
H A DValue.cpp609 ValueHandleBase *&Entry = pImpl->ValueHandles[VP.getPointer()]; local
610 assert(Entry && "Value doesn't have any handles?");
611 AddToExistingUseList(&Entry);
623 ValueHandleBase *&Entry = Handles[VP.getPointer()]; local
624 assert(!Entry && "Value really did already have handles?");
625 AddToExistingUseList(&Entry);
678 ValueHandleBase *Entry = pImpl->ValueHandles[V]; local
679 assert(Entry && "Value bit set but no entries exist");
690 for (ValueHandleBase Iterator(Assert, *Entry); Entry; Entr
736 ValueHandleBase *Entry = pImpl->ValueHandles[Old]; local
[all...]
/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/chromium_org/net/base/
H A Dtrace_net_log_observer.h25 virtual void OnAddEntry(const NetLog::Entry& entry) OVERRIDE;

Completed in 1798 milliseconds

1234567891011>>