Home
last modified time | relevance | path

Searched refs:Deque (Results 1 – 25 of 55) sorted by relevance

123

/external/webkit/Source/JavaScriptCore/wtf/
DDeque.h47 class Deque {
55 Deque();
56 Deque(const Deque<T, inlineCapacity>&);
57 Deque& operator=(const Deque<T, inlineCapacity>&);
58 ~Deque();
60 void swap(Deque<T, inlineCapacity>&);
119 DequeIteratorBase(const Deque<T, inlineCapacity>*, size_t);
140 Deque<T, inlineCapacity>* m_deque;
143 friend class Deque<T, inlineCapacity>; variable
158 DequeIterator(Deque<T, inlineCapacity>* deque, size_t index) : Base(deque, index) { } in DequeIterator()
[all …]
DMainThread.cpp70 typedef Deque<FunctionWithContext> FunctionQueue;
/external/webkit/Source/WebCore/platform/text/
DSegmentedString.cpp69 Deque<SegmentedSubstring>::const_iterator it = m_substrings.begin(); in length()
70 Deque<SegmentedSubstring>::const_iterator e = m_substrings.end(); in length()
81 Deque<SegmentedSubstring>::iterator it = m_substrings.begin(); in setExcludeLineNumbers()
82 Deque<SegmentedSubstring>::iterator e = m_substrings.end(); in setExcludeLineNumbers()
147 Deque<SegmentedSubstring>::const_iterator it = s.m_substrings.begin(); in append()
148 Deque<SegmentedSubstring>::const_iterator e = s.m_substrings.end(); in append()
160 Deque<SegmentedSubstring>::const_reverse_iterator it = s.m_substrings.rbegin(); in prepend()
161 Deque<SegmentedSubstring>::const_reverse_iterator e = s.m_substrings.rend(); in prepend()
192 Deque<SegmentedSubstring>::const_iterator it = m_substrings.begin(); in toString()
193 Deque<SegmentedSubstring>::const_iterator e = m_substrings.end(); in toString()
/external/webkit/Source/WebCore/plugins/
DPluginMainThreadScheduler.cpp65 m_callQueueMap.set(npp, Deque<Call>()); in registerPlugin()
76 void PluginMainThreadScheduler::dispatchCallsForPlugin(NPP npp, const Deque<Call>& calls) in dispatchCallsForPlugin()
78 Deque<Call>::const_iterator end = calls.end(); in dispatchCallsForPlugin()
79 for (Deque<Call>::const_iterator it = calls.begin(); it != end; ++it) { in dispatchCallsForPlugin()
DPluginMainThreadScheduler.h57 void dispatchCallsForPlugin(NPP, const Deque<Call>& calls);
58 typedef HashMap<NPP, Deque<Call> > CallQueueMap;
/external/webkit/Source/WebCore/storage/wince/
DDatabaseThreadWinCE.cpp76 Deque<RefPtr<DatabaseTask> > reservedTasks; in unscheduleDatabaseTasks()
77 … for (Deque<RefPtr<DatabaseTask> >::const_iterator i = m_queue.begin(); i != m_queue.end(); ++i) { in unscheduleDatabaseTasks()
DLocalStorageThreadWinCE.h52 Deque<RefPtr<LocalStorageTask> > m_queue;
DDatabaseThreadWinCE.h59 Deque<RefPtr<DatabaseTask> > m_queue;
/external/webkit/Source/WebKit2/Platform/CoreIPC/
DArgumentDecoder.cpp39 ArgumentDecoder::ArgumentDecoder(const uint8_t* buffer, size_t bufferSize, Deque<Attachment>& attac… in ArgumentDecoder()
53 Deque<Attachment>::iterator end = m_attachments.end(); in ~ArgumentDecoder()
54 for (Deque<Attachment>::iterator it = m_attachments.begin(); it != end; ++it) in ~ArgumentDecoder()
DArgumentDecoder.h42 ArgumentDecoder(const uint8_t* buffer, size_t bufferSize, Deque<Attachment>&);
121 Deque<Attachment> m_attachments;
/external/webkit/Source/WebKit/mac/ForwardingHeaders/wtf/
DDeque.h1 #import <JavaScriptCore/Deque.h>
/external/webkit/Source/WebKit/gtk/WebCoreSupport/
DEditorClientGtk.h61 WTF::Deque<WTF::RefPtr<WebCore::EditCommand> > undoStack;
62 WTF::Deque<WTF::RefPtr<WebCore::EditCommand> > redoStack;
/external/webkit/Tools/WebKitAPITest/
DTestsController.h58 Deque<Test*> m_tests;
/external/webkit/Source/WebCore/storage/
DSQLTransactionCoordinator.h54 typedef Deque<RefPtr<SQLTransaction> > TransactionsQueue;
DIDBTransactionBackendImpl.h80 typedef Deque<OwnPtr<ScriptExecutionContext::Task> > TaskQueue;
DSQLTransaction.h128 Deque<RefPtr<SQLStatement> > m_statementQueue;
DDatabase.h106 Deque<RefPtr<SQLTransaction> > m_transactionQueue;
DIDBDatabaseBackendImpl.h101 Deque<RefPtr<PendingSetVersionCall> > m_pendingSetVersionCalls;
/external/webkit/Source/WebKit2/Platform/CoreIPC/unix/
DConnectionUnix.cpp163 Deque<Attachment> attachments; in readyReadHandler()
167 …AttachmentResourceGuard<Deque<Attachment>, Deque<Attachment>::iterator> attachementDisposer(attach… in readyReadHandler()
/external/webkit/Source/WebCore/html/parser/
DHTMLScriptRunner.h90Deque<PendingScript> m_scriptsToExecuteAfterParsing; // http://www.whatwg.org/specs/web-apps/curre…
/external/webkit/Source/WebCore/loader/
DResourceLoadScheduler.h87 typedef Deque<RefPtr<ResourceLoader> > RequestQueue;
/external/webkit/Source/WebKit2/UIProcess/Plugins/
DPluginProcessProxy.h130Deque<RefPtr<Messages::WebProcessProxy::GetPluginProcessConnection::DelayedReply> > m_pendingConne…
/external/webkit/Source/WebCore/loader/cache/
DCachedResourceLoader.h148 Deque<PendingPreload> m_pendingPreloads;
/external/webkit/Source/WebKit2/WebProcess/Plugins/
DPluginView.h160 Deque<RefPtr<URLRequest> > m_pendingURLRequests;
/external/webkit/Source/WebKit/chromium/src/
DEditorClientImpl.h165 typedef Deque<RefPtr<WebCore::EditCommand> > EditCommandStack;

123