/external/webkit/WebCore/dom/ |
DynamicNodeList.h | 40 struct Caches : RefCounted<Caches> { 41 static PassRefPtr<Caches> create(); 50 Caches(); 67 DynamicNodeList(PassRefPtr<Node> rootNode, Caches*); 72 mutable RefPtr<Caches> m_caches;
|
ChildNodeList.h | 34 static PassRefPtr<ChildNodeList> create(PassRefPtr<Node> rootNode, Caches* caches) 36 return adoptRef(new ChildNodeList(rootNode, caches)); 43 ChildNodeList(PassRefPtr<Node> rootNode, Caches*);
|
NameNodeList.h | 37 static PassRefPtr<NameNodeList> create(PassRefPtr<Node> rootNode, const String& name, Caches* caches) 39 return adoptRef(new NameNodeList(rootNode, name, caches)); 43 NameNodeList(PassRefPtr<Node> rootNode, const String& name, Caches*);
|
TagNodeList.h | 35 static PassRefPtr<TagNodeList> create(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName, DynamicNodeList::Caches* caches) 37 return adoptRef(new TagNodeList(rootNode, namespaceURI, localName, caches)); 41 TagNodeList(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName, DynamicNodeList::Caches* caches);
|
ClassNodeList.h | 40 static PassRefPtr<ClassNodeList> create(PassRefPtr<Node> rootNode, const String& classNames, Caches* caches) 42 return adoptRef(new ClassNodeList(rootNode, classNames, caches)); 46 ClassNodeList(PassRefPtr<Node> rootNode, const String& classNames, Caches*);
|
NameNodeList.cpp | 34 NameNodeList::NameNodeList(PassRefPtr<Node> rootNode, const String& name, DynamicNodeList::Caches* caches) 35 : DynamicNodeList(rootNode, caches)
|
DynamicNodeList.cpp | 33 , m_caches(Caches::create()) 39 DynamicNodeList::DynamicNodeList(PassRefPtr<Node> rootNode, DynamicNodeList::Caches* caches) 41 , m_caches(caches) 149 // This should only be called for node lists that own their own caches. 154 DynamicNodeList::Caches::Caches() 161 PassRefPtr<DynamicNodeList::Caches> DynamicNodeList::Caches::create() 163 return adoptRef(new Caches()); [all...] |
ClassNodeList.cpp | 38 ClassNodeList::ClassNodeList(PassRefPtr<Node> rootNode, const String& classNames, DynamicNodeList::Caches* caches) 39 : DynamicNodeList(rootNode, caches)
|
TagNodeList.cpp | 32 TagNodeList::TagNodeList(PassRefPtr<Node> rootNode, const AtomicString& namespaceURI, const AtomicString& localName, DynamicNodeList::Caches* caches) 33 : DynamicNodeList(rootNode, caches)
|
NodeRareData.h | 40 RefPtr<DynamicNodeList::Caches> m_childNodeListCaches; 42 typedef HashMap<String, RefPtr<DynamicNodeList::Caches> > CacheMap; 46 typedef HashMap<QualifiedName, RefPtr<DynamicNodeList::Caches> > TagCacheMap; 60 : m_childNodeListCaches(DynamicNodeList::Caches::create())
|
/dalvik/libcore/support/src/test/java/tests/resources/JarIndex/ |
hyts_13.jar | |
hyts_33.jar | |
hyts_23.jar | |
/external/kernel-headers/original/asm-generic/ |
mman.h | 24 #define MS_INVALIDATE 2 /* invalidate the caches */
|
/external/kernel-headers/original/asm-x86/ |
cacheflush.h | 7 /* Caches aren't brain-dead on the intel. */
|
/system/extras/tests/sdcard/ |
sysutil.h | 44 // .syncAnddropCaches Call sync an drop page/dentries/inodes caches. 45 // .fsyncAnddropCaches Call fsync an drop page/dentries/inodes caches. 105 // Sync and drop caches. Sync is needed because dirty objects are not 113 // Fsync the given fd and drop caches. Fsync is needed because dirty
|
/external/v8/test/mjsunit/bugs/ |
bug-1344252.js | 32 // eventhough there are inline caches for setting the property 39 // Force the inline caches to monomorphic state.
|
/external/yaffs2/yaffs2/direct/ |
yaffscfg.c | 94 bootDev.nShortOpCaches = 10; // Use caches 108 flashDev.nShortOpCaches = 10; // Use caches
|
yaffscfg2k.c | 109 bootDev.nShortOpCaches = 10; // Use caches 137 flashDev.nShortOpCaches = 10; // Use caches 159 ram2kDev.nShortOpCaches = 10; // Use caches
|
/external/bluetooth/glib/glib/ |
gcache.h | 44 /* Caches
|
/external/skia/include/utils/ |
SkGLCanvas.h | 57 this call, new caches will be created.
|
/packages/apps/QuickSearchBox/src/com/android/quicksearchbox/ |
CachingIconLoader.java | 27 * Icon loader that caches the results of another icon loader.
|
/development/host/windows/usb/api/ |
adb_legacy_interface.h | 145 /** \brief Caches device descriptor for the USB device associated with
156 /** \brief Caches descriptor for the selected USB device configuration.
166 /** \brief Caches descriptor for this interface.
|
/external/bluetooth/glib/docs/reference/glib/tmpl/ |
caches.sgml | 2 Caches 5 caches allow sharing of complex data structures to save resources 13 GTK+ uses caches for #GtkStyles and #GdkGCs. These consume a lot of
|
/external/webkit/WebCore/loader/appcache/ |
ApplicationCacheStorage.cpp | 292 // Fallback namespaces always have the same origin as manifest URL, so we can avoid loading caches that cannot match. 480 executeSQLCommand("CREATE TABLE IF NOT EXISTS Caches (id INTEGER PRIMARY KEY AUTOINCREMENT, cacheGroup INTEGER, size INTEGER)"); 491 executeSQLCommand("CREATE TRIGGER IF NOT EXISTS CacheDeleted AFTER DELETE ON Caches" 548 SQLiteStatement statement(m_database, "INSERT INTO Caches (cacheGroup, size) VALUES (?, ?)"); 728 SQLiteStatement sizeUpdateStatement(m_database, "UPDATE Caches SET size=size+? WHERE id=?"); [all...] |