/external/webkit/Source/WebCore/page/ |
PageGroupLoadDeferrer.cpp | 29 #include <wtf/HashSet.h> 37 const HashSet<Page*>& pages = page->group().pages(); 39 HashSet<Page*>::const_iterator end = pages.end(); 40 for (HashSet<Page*>::const_iterator it = pages.begin(); it != end; ++it) {
|
GeolocationController.h | 32 #include <wtf/HashSet.h> 67 typedef HashSet<RefPtr<Geolocation> > ObserversSet;
|
/external/webkit/Source/WebCore/svg/ |
SVGDocumentExtensions.h | 28 #include <wtf/HashSet.h> 45 typedef HashSet<RefPtr<SVGStyledElement> > SVGPendingElements; 72 HashSet<SVGSVGElement*> m_timeContainers; // For SVG 1.2 support this will need to be made more general. 73 HashMap<SVGElement*, HashSet<SVGSMILElement*>* > m_animatedElements;
|
SVGFontElement.h | 40 HashSet<String> unicodeName1; 41 HashSet<String> unicodeName2; 42 HashSet<String> glyphName1; 43 HashSet<String> glyphName2;
|
SVGDocumentExtensions.cpp | 110 HashSet<SVGSVGElement*>::iterator end = m_timeContainers.end(); 111 for (HashSet<SVGSVGElement*>::iterator itr = m_timeContainers.begin(); itr != end; ++itr) 117 HashSet<SVGSVGElement*>::iterator end = m_timeContainers.end(); 118 for (HashSet<SVGSVGElement*>::iterator itr = m_timeContainers.begin(); itr != end; ++itr) 145 if (HashSet<SVGSMILElement*>* animationElementsForTarget = m_animatedElements.get(targetElement)) { 150 HashSet<SVGSMILElement*>* animationElementsForTarget = new HashSet<SVGSMILElement*>; 160 HashMap<SVGElement*, HashSet<SVGSMILElement*>* >::iterator it = m_animatedElements.find(targetElement); 163 HashSet<SVGSMILElement*>* animationElementsForTarget = it->second; 176 HashSet<SVGSMILElement*>* animationElementsForTarget = m_animatedElements.take(targetElement) [all...] |
/packages/apps/Launcher2/src/com/android/launcher2/ |
PagedViewIconCache.java | 21 import java.util.HashSet; 87 private void retainAll(HashSet<Key> keysToKeep, Key.Type t) { 88 HashSet<Key> keysToRemove = new HashSet<Key>(mIconOutlineCache.keySet()); 99 HashSet<Key> keysSet = new HashSet<Key>(); 107 HashSet<Key> keysSet = new HashSet<Key>(); 115 HashSet<Key> keysSet = new HashSet<Key>() [all...] |
/packages/apps/Mms/src/com/android/mms/util/ |
DraftCache.java | 22 import java.util.HashSet; 44 private HashSet<Long> mDraftSet = new HashSet<Long>(4); 45 private final HashSet<OnDraftChangedListener> mChangeListeners 46 = new HashSet<OnDraftChangedListener>(1); 89 HashSet<Long> oldDraftSet = mDraftSet; 90 HashSet<Long> newDraftSet = new HashSet<Long>(oldDraftSet.size()); 127 Set<Long> added = new HashSet<Long>(newDraftSet); 129 Set<Long> removed = new HashSet<Long>(oldDraftSet) [all...] |
/libcore/luni/src/test/java/org/apache/harmony/xnet/provider/jsse/ |
ClientSessionContextTest.java | 20 import java.util.HashSet; 45 Set<SSLSession> sessions = new HashSet<SSLSession>(); 51 Set<SSLSession> expected = new HashSet<SSLSession>(); 73 Set<SSLSession> sessions = new HashSet<SSLSession>(); 79 Set<SSLSession> expected = new HashSet<SSLSession>();
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
TransactionContext.java | 23 import java.util.HashSet; 36 private HashSet<Long> mUpdatedRawContacts = Sets.newHashSet(); 37 private HashSet<Long> mDirtyRawContacts = Sets.newHashSet(); 38 private HashSet<Long> mStaleSearchIndexRawContacts = Sets.newHashSet(); 39 private HashSet<Long> mStaleSearchIndexContacts = Sets.newHashSet();
|
/dalvik/dx/src/com/android/dx/dex/cf/ |
OptimizerOptions.java | 27 import java.util.HashSet; 38 private static HashSet<String> optimizeList; 45 private static HashSet<String> dontOptimizeList; 90 * Loads a list of newline-separated strings into a new HashSet and returns 91 * the HashSet. 96 private static HashSet<String> loadStringsFromFile(String filename) { 97 HashSet<String> result = new HashSet<String>();
|
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/ |
PKIXBuilderParametersTest.java | 29 import java.util.HashSet; 101 HashSet originalSet = (HashSet)taSet; 102 HashSet originalSetCopy = (HashSet)originalSet.clone(); 139 new PKIXBuilderParameters(new HashSet(), null);
|
/external/webkit/Source/WebKit/mac/WebCoreSupport/ |
WebApplicationCache.mm | 73 HashSet<RefPtr<SecurityOrigin>, SecurityOriginHash> coreOrigins; 78 HashSet<RefPtr<SecurityOrigin>, SecurityOriginHash>::const_iterator end = coreOrigins.end(); 79 for (HashSet<RefPtr<SecurityOrigin>, SecurityOriginHash>::const_iterator it = coreOrigins.begin(); it != end; ++it) {
|
/frameworks/base/core/java/com/google/android/mms/util/ |
PduCache.java | 27 import java.util.HashSet; 74 private final HashMap<Integer, HashSet<Uri>> mMessageBoxes; 75 private final HashMap<Long, HashSet<Uri>> mThreads; 78 mMessageBoxes = new HashMap<Integer, HashSet<Uri>>(); 79 mThreads = new HashMap<Long, HashSet<Uri>>(); 95 HashSet<Uri> msgBox = mMessageBoxes.get(msgBoxId); 97 msgBox = new HashSet<Uri>(); 102 HashSet<Uri> thread = mThreads.get(threadId); 104 thread = new HashSet<Uri>(); 201 HashSet<Uri> msgBox = mMessageBoxes.remove(msgBoxId) [all...] |
/cts/tests/tests/permission/src/android/permission/cts/ |
DebuggableTest.java | 23 import java.util.HashSet; 35 Set<String> debuggableApps = new HashSet<String>();
|
/cts/tools/dex-tools/test/dex/reader/util/ |
SpecialJavaFileManager.java | 20 import java.util.HashSet; 51 return new HashSet<MemoryByteCode>(store.values());
|
/dalvik/tests/062-character-encodings/src/ |
Main.java | 5 import java.util.HashSet; 18 Set<String> needed = new HashSet<String>(standardCharsets);
|
/external/javassist/src/main/javassist/bytecode/analysis/ |
Subroutine.java | 19 import java.util.HashSet; 29 //private Set callers = new HashSet(); 31 private Set access = new HashSet();
|
/external/webkit/Source/JavaScriptCore/debugger/ |
Debugger.h | 25 #include <wtf/HashSet.h> 57 HashSet<JSGlobalObject*> m_globalObjects;
|
/external/webkit/Source/WebCore/dom/ |
EventQueue.h | 30 #include <wtf/HashSet.h> 66 HashSet<Node*> m_nodesWithQueuedScrollEvents;
|
/external/webkit/Source/WebCore/history/ |
PageCache.h | 32 #include <wtf/HashSet.h> 65 typedef HashSet<RefPtr<CachedPage> > CachedPageSet;
|
/external/webkit/Source/WebCore/platform/mock/ |
GeolocationClientMock.h | 40 #include <wtf/HashSet.h> 92 typedef WTF::HashSet<RefPtr<Geolocation> > GeolocationSet;
|
GeolocationServiceMock.h | 31 #include <wtf/HashSet.h> 72 typedef HashSet<GeolocationServiceMock*> GeolocationServiceSet;
|
/external/webkit/Source/WebCore/rendering/ |
RenderBR.h | 43 virtual float width(unsigned /*from*/, unsigned /*len*/, const Font&, float /*xPos*/, HashSet<const SimpleFontData*>* = 0 /*fallbackFonts*/ , GlyphOverflow* = 0) const { return 0; } 44 virtual float width(unsigned /*from*/, unsigned /*len*/, float /*xpos*/, bool = false /*firstLine*/, HashSet<const SimpleFontData*>* = 0 /*fallbackFonts*/, GlyphOverflow* = 0) const { return 0; }
|
/external/webkit/Source/WebCore/storage/ |
OriginUsageRecord.h | 35 #include <wtf/HashSet.h> 61 HashSet<String> m_unknownSet;
|
/external/webkit/Source/WebKit/mac/WebView/ |
WebDocumentLoaderMac.h | 31 #import <wtf/HashSet.h> 67 HashSet<unsigned long> m_loadingResources;
|