HomeSort by relevance Sort by last modified time
    Searched refs:Entry (Results 1 - 25 of 1115) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/chromium_org/third_party/WebKit/Source/modules/filesystem/
EntriesCallback.idl 32 void handleEvent(Entry[] entries);
EntryCallback.idl 32 void handleEvent(Entry entry);
DataTransferItemFileSystem.h 39 class Entry;
44 static Entry* webkitGetAsEntry(ExecutionContext*, DataTransferItem&);
DataTransferItemFileSystem.idl 32 [CallWith=ExecutionContext] Entry webkitGetAsEntry();
EntryCallback.h 38 class Entry;
44 virtual void handleEvent(Entry*) = 0;
EntriesCallback.h 38 class Entry;
39 typedef HeapVector<Member<Entry> > EntryHeapVector;
Entry.cpp 31 #include "modules/filesystem/Entry.h"
46 Entry::Entry(DOMFileSystemBase* fileSystem, const String& fullPath)
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)
HTMLInputElementFileSystem.idl 34 [CallWith=ExecutionContext] readonly attribute Entry[] webkitEntries;
  /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/v8/src/
circular-queue.h 43 // Reserved values for the entry marker.
50 struct V8_ALIGNED(PROCESSOR_CACHE_LINE_SIZE) Entry {
51 Entry() : marker(kEmpty) {}
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/net/ftp/
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_org/third_party/skia/src/effects/gradients/
SkGradientBitmapCache.h 27 struct Entry;
28 mutable Entry* fHead;
29 mutable Entry* fTail;
31 inline Entry* detach(Entry*) const;
32 inline void attachToHead(Entry*) const;
  /external/lldb/source/Plugins/SymbolFile/DWARF/
DWARFDeclContext.h 33 struct Entry
35 Entry () :
40 Entry (dw_tag_t t, const char *n) :
47 NameMatches (const Entry& rhs) const
74 m_entries.push_back(Entry(tag, name));
86 Entry &
93 const Entry &
104 typedef std::vector<Entry> collection;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestEnumMapGenerator.java 21 import java.util.Map.Entry;
34 public SampleElements<Entry<AnEnum, String>> samples() {
35 return new SampleElements<Entry<AnEnum, String>>(
47 Entry<AnEnum, String>[] array = new Entry[entries.length];
51 Entry<AnEnum, String> e = (Entry<AnEnum, String>) o;
58 Entry<AnEnum, String>[] entries);
62 public final Entry<AnEnum, String>[] createArray(int length) {
63 return new Entry[length]
    [all...]
TestStringMapGenerator.java 21 import java.util.Map.Entry;
37 public SampleElements<Map.Entry<String, String>> samples() {
38 return new SampleElements<Map.Entry<String, String>>(
50 Entry<String, String>[] array = new Entry[entries.length];
54 Entry<String, String> e = (Entry<String, String>) o;
61 Entry<String, String>[] entries);
65 public final Entry<String, String>[] createArray(int length) {
66 return new Entry[length]
    [all...]
TestMapEntrySetGenerator.java 31 implements TestSetGenerator<Map.Entry<K, V>> {
42 public SampleElements<Map.Entry<K, V>> samples() {
47 public Set<Map.Entry<K, V>> create(Object... elements) {
48 Map.Entry<K, V>[] entries = createArray(elements.length);
53 public abstract Set<Map.Entry<K, V>> createFromEntries(
54 Map.Entry<K, V>[] entries);
58 public Map.Entry<K, V>[] createArray(int length) {
59 return new Map.Entry[length];
64 public List<Map.Entry<K, V>> order(List<Map.Entry<K, V>> insertionOrder)
    [all...]
  /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_org/third_party/WebKit/Source/core/rendering/
ClipRectsCache.h 34 struct Entry {
35 Entry()
50 Entry& get(ClipRectsCacheSlot slot)
59 m_entries[slot] = Entry();
63 Entry m_entries[NumberOfClipRectsCacheSlots];
  /external/lldb/include/lldb/DataFormatters/
FormatCache.h 27 struct Entry
36 Entry ();
37 Entry (const Entry& rhs);
38 Entry (lldb::TypeSummaryImplSP);
39 Entry (lldb::SyntheticChildrenSP);
40 Entry (lldb::TypeSummaryImplSP,lldb::SyntheticChildrenSP);
42 Entry& operator= (const Entry& rhs);
62 typedef std::map<ConstString,Entry> CacheMap
    [all...]
  /external/javassist/src/main/javassist/bytecode/analysis/
IntQueue.java 20 private static class Entry {
21 private IntQueue.Entry next;
23 private Entry(int value) {
27 private IntQueue.Entry head;
29 private IntQueue.Entry tail;
32 IntQueue.Entry entry = new Entry(value); local
34 tail.next = entry;
35 tail = entry;
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/html/parser/
HTMLFormattingElementList.h 46 // Ideally Entry would be private, but HTMLTreeBuilder has to coordinate
48 // access to Entry::isMarker() and Entry::replaceElement() to do so.
49 class Entry {
53 explicit Entry(PassRefPtrWillBeRawPtr<HTMLStackItem> item)
58 explicit Entry(MarkerEntryType)
62 ~Entry() {}
88 explicit Bookmark(Entry* entry)
90 , m_mark(entry)
    [all...]
  /external/llvm/include/llvm/IR/
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/clang/test/CodeGen/
pointer-signext.c 26 MEMORY_MAP *Entry;
30 Entry = CR (Link, MEMORY_MAP, Link);
31 return (int) Entry->Signature;
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfStringPool.cpp 21 std::pair<MCSymbol *, unsigned> &Entry =
23 if (!Entry.first) {
24 Entry.second = Pool.size() - 1;
25 Entry.first = Asm.GetTempSymbol(Prefix, Entry.second);
27 return Entry;
55 for (const auto &Entry : Entries) {
57 Asm.OutStreamer.EmitLabel(Entry->getValue().first);
61 StringRef(Entry->getKeyData(), Entry->getKeyLength() + 1))
    [all...]
  /cts/tests/tests/hardware/src/android/hardware/cts/helpers/
ActivityResultMultiplexedLatch.java 35 private final HashMap<Integer, Entry> mActivityEntries = new HashMap<Integer, Entry>();
42 private Entry mEntry;
44 private Latch(Entry entry) {
45 mEntry = entry;
69 private class Entry {
75 public Entry(int requestCode) {
86 Entry entry; local
104 Entry entry; local
    [all...]

Completed in 651 milliseconds

1 2 3 4 5 6 7 8 91011>>