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

1 2 3

  /external/webkit/Source/WebKit/mac/ForwardingHeaders/wtf/
Deque.h 1 #import <JavaScriptCore/Deque.h>
  /external/webkit/Source/WebCore/ForwardingHeaders/wtf/
Deque.h 3 #include <JavaScriptCore/Deque.h>
  /external/webkit/Source/WebCore/storage/wince/
LocalStorageThreadWinCE.h 28 #include <wtf/Deque.h>
52 Deque<RefPtr<LocalStorageTask> > m_queue;
DatabaseThreadWinCE.h 27 #include <wtf/Deque.h>
59 Deque<RefPtr<DatabaseTask> > m_queue;
DatabaseThreadWinCE.cpp 76 Deque<RefPtr<DatabaseTask> > reservedTasks;
77 for (Deque<RefPtr<DatabaseTask> >::const_iterator i = m_queue.begin(); i != m_queue.end(); ++i) {
  /libcore/support/src/test/java/tests/io/
MockOs.java 24 import java.util.Deque;
37 private final InheritableThreadLocal<Map<String, Deque<InvocationHandler>>> handlers
38 = new InheritableThreadLocal<Map<String, Deque<InvocationHandler>>>() {
39 @Override protected Map<String, Deque<InvocationHandler>> initialValue() {
40 return new HashMap<String, Deque<InvocationHandler>>();
88 public Deque<InvocationHandler> getHandlers(String methodName) {
89 Map<String, Deque<InvocationHandler>> threadFaults = handlers.get();
90 Deque<InvocationHandler> result = threadFaults.get(methodName);
103 Deque<InvocationHandler> handlers = getHandlers(methodName);
  /external/webkit/Source/WebCore/plugins/
PluginMainThreadScheduler.h 29 #include <wtf/Deque.h>
57 void dispatchCallsForPlugin(NPP, const Deque<Call>& calls);
58 typedef HashMap<NPP, Deque<Call> > CallQueueMap;
PluginMainThreadScheduler.cpp 65 m_callQueueMap.set(npp, Deque<Call>());
76 void PluginMainThreadScheduler::dispatchCallsForPlugin(NPP npp, const Deque<Call>& calls)
78 Deque<Call>::const_iterator end = calls.end();
79 for (Deque<Call>::const_iterator it = calls.begin(); it != end; ++it) {
  /external/webkit/Source/WebCore/storage/
SQLTransactionCoordinator.h 36 #include <wtf/Deque.h>
54 typedef Deque<RefPtr<SQLTransaction> > TransactionsQueue;
IDBTransactionBackendImpl.h 36 #include <wtf/Deque.h>
80 typedef Deque<OwnPtr<ScriptExecutionContext::Task> > TaskQueue;
Database.h 37 #include <wtf/Deque.h>
106 Deque<RefPtr<SQLTransaction> > m_transactionQueue;
SQLTransaction.h 35 #include <wtf/Deque.h>
128 Deque<RefPtr<SQLStatement> > m_statementQueue;
IDBDatabaseBackendImpl.h 31 #include <wtf/Deque.h>
101 Deque<RefPtr<PendingSetVersionCall> > m_pendingSetVersionCalls;
DatabaseThread.h 32 #include <wtf/Deque.h>
  /external/webkit/Tools/WebKitAPITest/
TestsController.h 30 #include <wtf/Deque.h>
58 Deque<Test*> m_tests;
  /external/webkit/Source/JavaScriptCore/wtf/
Deque.h 33 // FIXME: Could move what Vector and Deque share into a separate file.
34 // Deque doesn't actually use Vector.
47 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>&)
    [all...]
  /external/webkit/Source/WebCore/platform/text/
SegmentedString.cpp 69 Deque<SegmentedSubstring>::const_iterator it = m_substrings.begin();
70 Deque<SegmentedSubstring>::const_iterator e = m_substrings.end();
81 Deque<SegmentedSubstring>::iterator it = m_substrings.begin();
82 Deque<SegmentedSubstring>::iterator e = m_substrings.end();
147 Deque<SegmentedSubstring>::const_iterator it = s.m_substrings.begin();
148 Deque<SegmentedSubstring>::const_iterator e = s.m_substrings.end();
160 Deque<SegmentedSubstring>::const_reverse_iterator it = s.m_substrings.rbegin();
161 Deque<SegmentedSubstring>::const_reverse_iterator e = s.m_substrings.rend();
192 Deque<SegmentedSubstring>::const_iterator it = m_substrings.begin();
193 Deque<SegmentedSubstring>::const_iterator e = m_substrings.end()
    [all...]
  /external/webkit/Source/WebCore/html/parser/
HTMLScriptRunner.h 30 #include <wtf/Deque.h>
90 Deque<PendingScript> m_scriptsToExecuteAfterParsing; // http://www.whatwg.org/specs/web-apps/current-work/#list-of-scripts-that-will-execute-when-the-document-has-finished-parsing
  /external/webkit/Source/WebKit/gtk/WebCoreSupport/
EditorClientGtk.h 37 #include <wtf/Deque.h>
61 WTF::Deque<WTF::RefPtr<WebCore::EditCommand> > undoStack;
62 WTF::Deque<WTF::RefPtr<WebCore::EditCommand> > redoStack;
  /external/webkit/Source/WebKit2/Platform/CoreIPC/
ArgumentDecoder.h 31 #include <wtf/Deque.h>
42 ArgumentDecoder(const uint8_t* buffer, size_t bufferSize, Deque<Attachment>&);
121 Deque<Attachment> m_attachments;
ArgumentDecoder.cpp 39 ArgumentDecoder::ArgumentDecoder(const uint8_t* buffer, size_t bufferSize, Deque<Attachment>& attachments)
53 Deque<Attachment>::iterator end = m_attachments.end();
54 for (Deque<Attachment>::iterator it = m_attachments.begin(); it != end; ++it)
  /libcore/luni/src/main/java/java/util/
Deque.java 15 * both ends. The name <i>deque</i> is short for "double ended queue"
16 * and is usually pronounced "deck". Most <tt>Deque</tt>
22 * ends of the deque. Methods are provided to insert, remove, and
28 * <tt>Deque</tt> implementations; in most implementations, insert
71 * <p>This interface extends the {@link Queue} interface. When a deque is
73 * added at the end of the deque and removed from the beginning. The methods
75 * <tt>Deque</tt> methods as indicated in the following table:
81 * <td ALIGN=CENTER> <b>Equivalent <tt>Deque</tt> Method</b></td>
111 * When a deque is used as a stack, elements are pushed and popped from the
112 * beginning of the deque. Stack methods are precisely equivalent t
    [all...]
  /external/webkit/Source/WebCore/loader/
ResourceLoadScheduler.h 30 #include <wtf/Deque.h>
87 typedef Deque<RefPtr<ResourceLoader> > RequestQueue;
  /external/webkit/Source/WebKit2/UIProcess/Plugins/
PluginProcessProxy.h 35 #include <wtf/Deque.h>
130 Deque<RefPtr<Messages::WebProcessProxy::GetPluginProcessConnection::DelayedReply> > m_pendingConnectionReplies;
  /libcore/luni/src/main/java/java/util/concurrent/
BlockingDeque.java 11 * A {@link Deque} that additionally supports blocking operations that wait
12 * for the deque to become non-empty when retrieving an element, and wait for
13 * space to become available in the deque when storing an element.
171 public interface BlockingDeque<E> extends BlockingQueue<E>, Deque<E> {
180 * Inserts the specified element at the front of this deque if it is
183 * available. When using a capacity-restricted deque, it is generally
195 * Inserts the specified element at the end of this deque if it is
198 * available. When using a capacity-restricted deque, it is generally
210 * Inserts the specified element at the front of this deque if it is
214 * When using a capacity-restricted deque, this method is generall
    [all...]

Completed in 442 milliseconds

1 2 3