/external/chromium_org/third_party/WebKit/Source/modules/filesystem/ |
Entry.h | 49 class Entry : public EntryBase, public ScriptWrappable { 60 Entry(PassRefPtr<DOMFileSystemBase>, const String& fullPath);
|
Entry.cpp | 31 #include "modules/filesystem/Entry.h" 46 Entry::Entry(PassRefPtr<DOMFileSystemBase> fileSystem, const String& fullPath) 52 void Entry::getMetadata(PassOwnPtr<MetadataCallback> successCallback, PassOwnPtr<ErrorCallback> errorCallback) 57 void Entry::moveTo(PassRefPtr<DirectoryEntry> parent, const String& name, PassOwnPtr<EntryCallback> successCallback, PassOwnPtr<ErrorCallback> errorCallback) const 62 void Entry::copyTo(PassRefPtr<DirectoryEntry> parent, const String& name, PassOwnPtr<EntryCallback> successCallback, PassOwnPtr<ErrorCallback> errorCallback) const 67 void Entry::remove(PassOwnPtr<VoidCallback> successCallback, PassOwnPtr<ErrorCallback> errorCallback) const 72 void Entry::getParent(PassOwnPtr<EntryCallback> successCallback, PassOwnPtr<ErrorCallback> errorCallback) const
|
/external/chromium_org/ppapi/native_client/src/trusted/plugin/ |
nacl_http_response_headers.h | 36 typedef std::pair<std::string, std::string> Entry; 54 std::vector<Entry> header_entries_;
|
/external/llvm/include/llvm/ADT/ |
StringSet.h | 31 // Get or create the map entry for the key; if it doesn't exist the value 36 StringMapEntry<char> &Entry = this->GetOrCreateValue(Key); 37 if (Entry.getValue() == '+') 39 Entry.setValue('+');
|
/external/chromium/net/base/ |
capturing_net_log.cc | 9 CapturingNetLog::Entry::Entry(EventType type, 18 CapturingNetLog::Entry::~Entry() {} 49 Entry entry(type, time, source, phase, extra_parameters); 51 entries_.push_back(entry);
|
host_cache.cc | 14 HostCache::Entry::Entry(int error, 20 HostCache::Entry::~Entry() { 36 const HostCache::Entry* HostCache::Lookup(const Key& key, 46 Entry* entry = it->second.get(); 47 if (CanUseEntry(entry, now)) 48 return entry; 53 HostCache::Entry* HostCache::Set(const Key& key 64 scoped_refptr<Entry>& entry = entries_[key]; local 123 Entry* entry = (it->second).get(); local 140 Entry* entry = (it->second).get(); local [all...] |
/external/chromium/net/disk_cache/ |
disk_cache.h | 33 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 72 // object representing the specified disk cache entry. When the entry pointer 75 // will be invoked when the entry is available. The pointer to receive the 76 // |entry| must remain valid until the operation completes. 77 virtual int OpenEntry(const std::string& key, Entry** entry [all...] |
/external/chromium/net/ftp/ |
ftp_auth_cache.cc | 15 FtpAuthCache::Entry::Entry(const GURL& origin, 23 FtpAuthCache::Entry::~Entry() {} 29 FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) { 42 Entry* entry = Lookup(origin); local 43 if (entry) { 44 entry->username = username; 45 entry->password = password [all...] |
ftp_auth_cache.h | 29 struct Entry { 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); 45 // Add an entry for |origin| to the cache (consisting of |username| and 46 // |password|). If there is already an entry for |origin|, it will be 51 // Remove the entry for |origin| from the cache, if one exists and matches 57 typedef std::list<Entry> EntryList;
|
/external/chromium_org/chrome/browser/sessions/ |
tab_restore_service.cc | 13 // Entry ---------------------------------------------------------------------- 15 // ID of the next Entry. 18 TabRestoreService::Entry::Entry() 23 TabRestoreService::Entry::Entry(Type type) 28 TabRestoreService::Entry::~Entry() {} 33 : Entry(TAB), 45 TabRestoreService::Window::Window() : Entry(WINDOW), selected_tab_index(-1) [all...] |
/external/chromium_org/chrome/common/extensions/ |
value_counter.cc | 19 ValueCounter::Entry::Entry(const base::Value& value) 24 ValueCounter::Entry::~Entry() { 27 int ValueCounter::Entry::Increment() { 31 int ValueCounter::Entry::Decrement() { 63 entries_.push_back(linked_ptr<Entry>(new Entry(value)));
|
/external/chromium_org/chromeos/ime/ |
candidate_window.cc | 15 // The default entry number of a page in CandidateWindow. 36 const Entry& left = candidates_[i]; 37 const Entry& right = cw.candidates_[i]; 68 CandidateWindow::Entry::Entry() { 71 CandidateWindow::Entry::~Entry() {
|
/external/chromium_org/net/disk_cache/ |
disk_cache.h | 32 class Entry; 69 // for a given Entry (as opposed to the Backend) will still generate a 79 // Opens an existing entry. Upon success, |entry| holds a pointer to an Entry 80 // object representing the specified disk cache entry. When the entry pointer 83 // will be invoked when the entry is available. The pointer to receive the 84 // |entry| must remain valid until the operation completes. 85 virtual int OpenEntry(const std::string& key, Entry** entry [all...] |
/external/chromium_org/net/ftp/ |
ftp_auth_cache.cc | 15 FtpAuthCache::Entry::Entry(const GURL& origin, 21 FtpAuthCache::Entry::~Entry() {} 27 FtpAuthCache::Entry* FtpAuthCache::Lookup(const GURL& origin) { 39 Entry* entry = Lookup(origin); local 40 if (entry) { 41 entry->credentials = credentials; 43 entries_.push_front(Entry(origin, credentials)) [all...] |
ftp_auth_cache.h | 29 struct Entry { 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); 43 // Add an entry for |origin| to the cache using |credentials|. If there is 44 // already an entry for |origin|, it will be overwritten. 47 // Remove the entry for |origin| from the cache, if one exists and matches 52 typedef std::list<Entry> EntryList;
|
/external/chromium/chrome/browser/ui/views/ |
wrench_menu.h | 48 typedef std::pair<ui::MenuModel*,int> Entry; 49 typedef std::map<int,Entry> IDToEntry;
|
/external/clang/test/CodeGen/ |
pointer-signext.c | 26 MEMORY_MAP *Entry; 30 Entry = CR (Link, MEMORY_MAP, Link); 31 return (int) Entry->Signature;
|
/external/llvm/include/llvm/Support/ |
PredIteratorCache.h | 43 BasicBlock **&Entry = BlockToPredsMap[BB]; 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/IR/ |
ValueSymbolTable.cpp | 57 // Try insert the vmap entry with this suffix. 80 ValueName &Entry = vmap.GetOrCreateValue(Name); 81 if (Entry.getValue() == 0) { 82 Entry.setValue(V); 83 //DEBUG(dbgs() << " Inserted value: " << Entry.getKeyData() << ": " 85 return &Entry; 96 // Try insert the vmap entry with this suffix.
|
/external/llvm/utils/TableGen/ |
StringToOffsetTable.h | 31 StringMapEntry<unsigned> &Entry = StringOffset.GetOrCreateValue(Str, -1U); 32 if (Entry.getValue() == -1U) { 34 Entry.setValue(AggregateString.size()); 40 return Entry.getValue();
|
/external/chromium_org/net/dns/ |
host_cache.cc | 17 HostCache::Entry::Entry(int error, const AddressList& addrlist, 25 HostCache::Entry::Entry(int error, const AddressList& addrlist) 31 HostCache::Entry::~Entry() { 43 const HostCache::Entry* HostCache::Lookup(const Key& key, 53 const Entry& entry, 60 entries_.Put(key, entry, now, now + ttl) [all...] |
/external/chromium_org/third_party/skia/src/effects/gradients/ |
SkBitmapCache.cpp | 12 struct SkBitmapCache::Entry { 13 Entry* fPrev; 14 Entry* fNext; 20 Entry(const void* buffer, size_t size, const SkBitmap& bm) 29 ~Entry() { sk_free(fBuffer); } 46 Entry* entry = fHead; local 47 while (entry) { 48 Entry* next = entry->fNext 86 Entry* entry = fHead; local 111 Entry* entry = SkNEW_ARGS(Entry, (buffer, len, bm)); local 133 Entry* entry = fHead; local [all...] |
/external/skia/src/effects/gradients/ |
SkBitmapCache.cpp | 12 struct SkBitmapCache::Entry { 13 Entry* fPrev; 14 Entry* fNext; 20 Entry(const void* buffer, size_t size, const SkBitmap& bm) 29 ~Entry() { sk_free(fBuffer); } 46 Entry* entry = fHead; local 47 while (entry) { 48 Entry* next = entry->fNext 86 Entry* entry = fHead; local 111 Entry* entry = SkNEW_ARGS(Entry, (buffer, len, bm)); local 133 Entry* entry = fHead; local [all...] |
/frameworks/compile/mclinker/include/mcld/Target/ |
GOT.h | 38 class Entry : public TargetFragment 44 Entry(uint64_t pValue, SectionData* pParent) 49 virtual ~Entry() {} 85 /// needed. If an entry is needed, the empty entry is reserved for layout
|
/external/chromium/chrome/browser/net/ |
chrome_net_log.cc | 44 ChromeNetLog::Entry::Entry(uint32 order, 58 ChromeNetLog::Entry::~Entry() {}
|