/external/webkit/Source/WebCore/dom/ |
D | IgnoreDestructiveWriteCountIncrementer.h | 37 : m_count(document ? &document->m_ignoreDestructiveWriteCount : 0) in IgnoreDestructiveWriteCountIncrementer() 39 if (!m_count) in IgnoreDestructiveWriteCountIncrementer() 41 ++(*m_count); in IgnoreDestructiveWriteCountIncrementer() 46 if (!m_count) in ~IgnoreDestructiveWriteCountIncrementer() 48 --(*m_count); in ~IgnoreDestructiveWriteCountIncrementer() 52 unsigned* m_count;
|
/external/webkit/Source/JavaScriptCore/heap/ |
D | Local.h | 107 , m_count(0) in LocalStack() 113 ASSERT(m_count > 0); in peek() 114 return m_stack[m_count - 1].get(); in peek() 119 ASSERT(m_count > 0); in pop() 120 return m_stack[--m_count].get(); in pop() 125 if (m_count == m_stack.size()) in push() 128 m_stack[m_count] = value; in push() 129 m_count++; in push() 132 bool isEmpty() const { return !m_count; } in isEmpty() 133 unsigned size() const { return m_count; } in size() [all …]
|
/external/webkit/Source/WebCore/editing/ |
D | DeleteFromTextNodeCommand.cpp | 38 , m_count(count) in DeleteFromTextNodeCommand() 42 ASSERT(m_offset + m_count <= m_node->length()); in DeleteFromTextNodeCommand() 53 m_text = m_node->substringData(m_offset, m_count, ec); in doApply() 59 …)->nodeTextChangeNotification(m_node->renderer(), AXObjectCache::AXTextDeleted, m_offset, m_count); in doApply() 61 m_node->deleteData(m_offset, m_count, ec); in doApply() 75 …->nodeTextChangeNotification(m_node->renderer(), AXObjectCache::AXTextInserted, m_offset, m_count); in doUnapply()
|
D | DeleteFromTextNodeCommand.h | 50 unsigned m_count; variable
|
/external/webkit/Source/JavaScriptCore/wtf/ |
D | RefCountedLeakCounter.cpp | 69 if (m_count) { 71 LOG(RefCountedLeaks, "LEAK: %u %s", m_count, m_description); 83 atomicIncrement(&m_count); 85 ++m_count; 92 atomicDecrement(&m_count); 94 --m_count;
|
D | CryptographicallyRandomNumber.cpp | 68 int m_count; member in WTF::__anon873c7d240111::ARC4RandomNumberGenerator 83 : m_count(0) in ARC4RandomNumberGenerator() 111 m_count = 1600000; in stir() 116 if (m_count <= 0) in stirIfNeeded() 147 m_count -= 4; in randomNumber() 161 m_count--; in randomValues()
|
D | RefCountedLeakCounter.h | 41 volatile int m_count;
|
/external/webkit/Source/WebKit/android/WebCoreSupport/ |
D | WebCookieJar.cpp | 186 , m_count(0) in FlushSemaphore() 211 int lastCount = m_count; in Wait() 212 while (m_count < numCallbacks) { in Wait() 216 …ASSERT(lastCount != m_count, "Wait finished without incrementing m_count %d %d", m_count, lastCoun… in Wait() 217 lastCount = m_count; in Wait() 219 m_count -= numCallbacks; in Wait() 227 m_count++; in Callback() 233 volatile int m_count; member in android::FlushSemaphore
|
D | V8Counters.h | 58 int count() { return m_count; } in count() 63 operator int*() { return &m_count; } 65 int m_count;
|
D | V8Counters.cpp | 44 : m_count(0), m_sampleTotal(0), m_isHistogram(isHistogram) { } in Counter() 48 m_count++; in addSample()
|
/external/webkit/Source/WebCore/rendering/style/ |
D | StyleMultiColData.cpp | 31 , m_count(RenderStyle::initialColumnCount()) in StyleMultiColData() 46 , m_count(o.m_count) in StyleMultiColData() 61 return m_width == o.m_width && m_count == o.m_count && m_gap == o.m_gap in operator ==()
|
D | StyleMultiColData.h | 57 unsigned short m_count; variable
|
D | RenderStyle.h | 709 unsigned short columnCount() const { return rareNonInheritedData->m_multiCol->m_count; } in columnCount() 1083 …>m_multiCol, m_autoCount, false); SET_VAR(rareNonInheritedData.access()->m_multiCol, m_count, c); } in setColumnCount() 1084 …->m_multiCol, m_autoCount, true); SET_VAR(rareNonInheritedData.access()->m_multiCol, m_count, 0); } in setHasAutoColumnCount()
|
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/ |
D | DTMNamedNodeMap.java | 54 short m_count = -1; field in DTMNamedNodeMap 76 if (m_count == -1) in getLength() 86 m_count = count; in getLength() 89 return (int) m_count; in getLength()
|
/external/valgrind/main/drd/tests/ |
D | pth_broadcast.c | 23 int m_count; member 42 while (p->m_count < n) in csema_p() 44 p->m_count -= n; in csema_p() 52 p->m_count++; in csema_v()
|
D | annotate_smart_pointer.cpp | 265 : m_mutex(), m_count() in counter() 273 m_count = -1; in ~counter() 279 result = m_count; in get() 287 result = m_count++; in post_increment() 294 int m_count; member in counter
|
/external/emma/core/java12/com/vladium/emma/data/ |
D | DataFactory.java | 305 if (rc >= 0) ++ m_count; in read() 314 if (rc >= 0) m_count += rc; in read() 322 if (rc >= 0) m_count += rc; in read() 340 return m_count; in getCount() 343 private long m_count; field in DataFactory.RandomAccessFileInputStream 352 m_count += len; in write() 358 m_count += b.length; in write() 364 ++ m_count; in write() 380 return m_count; in getCount() 383 private long m_count; field in DataFactory.RandomAccessFileOutputStream
|
/external/webkit/Source/WebCore/rendering/ |
D | RenderTableCell.cpp | 854 : m_count(0) in CollapsedBorders() 862 m_borders[m_count].borderValue = borderValue; in addBorder() 863 m_borders[m_count].side = borderSide; in addBorder() 864 m_borders[m_count].shouldPaint = shouldPaint; in addBorder() 865 m_borders[m_count].x1 = x1; in addBorder() 866 m_borders[m_count].x2 = x2; in addBorder() 867 m_borders[m_count].y1 = y1; in addBorder() 868 m_borders[m_count].y2 = y2; in addBorder() 869 m_borders[m_count].style = borderStyle; in addBorder() 870 m_count++; in addBorder() [all …]
|
/external/apache-xml/src/main/java/org/apache/xalan/templates/ |
D | ElemLiteralResult.java | 554 private int m_count = -1; field in ElemLiteralResult.LiteralElementAttributes 571 if (m_count == -1) in getLength() 573 if (null != m_avts) m_count = m_avts.size(); in getLength() 574 else m_count = 0; in getLength() 576 return m_count; in getLength()
|
/external/webkit/Source/WebCore/platform/graphics/gpu/ |
D | PODRedBlackTree.h | 667 : m_count(0) { } in Counter() 669 virtual void visit(const T& data) { ++m_count; } in visit() 670 int count() const { return m_count; } in count() 673 int m_count;
|
/external/libvpx/mkvparser/ |
D | mkvparser.cpp | 2430 m_count(0) in SeekHead() 2508 m_count = static_cast<int>(count_); in SeekHead() 2518 return m_count; in GetCount() 2526 if (idx >= m_count) in GetEntry() 2869 m_count(0), in Cues() 2880 const long n = m_count + m_preload_count; in ~Cues() 2902 return m_count; //TODO: really ignore preload count? in GetCount() 2918 assert(m_count == 0); in Init() 2960 assert(m_count == 0); in PreloadCuePoint() 3051 CuePoint* const pCP = m_cue_points[m_count]; in LoadCuePoint() [all …]
|
D | mkvparser.hpp | 424 int m_count; member in mkvparser::SeekHead 531 mutable long m_count; member in mkvparser::Cues
|
/external/webkit/Source/WebKit/qt/tests/qwebpage/ |
D | tst_qwebpage.cpp | 800 int m_count; member in PluginCounterPage 805 , m_count(0) in PluginCounterPage() 829 m_count++; in createPlugin() 881 QCOMPARE(page->m_count, 1); in destroyPlugin() 900 QCOMPARE(page->m_count, 1); in createViewlessPlugin()
|
/external/webkit/Source/WebCore/ |
D | ChangeLog-2006-05-10 | 31014 (KWQVectorImpl::append): Assign the new item to index m_count, not m_size.
|
D | ChangeLog-2007-10-14 | 68122 Renamed m_count to m_countInParent for clarify, and named the list
|