HomeSort by relevance Sort by last modified time
    Searched refs:m_counter (Results 1 - 8 of 8) sorted by null

  /development/samples/BrowserPlugin/jni/animation/
AnimationThread.cpp 34 m_counter = 0;
136 m_counter++;
139 float fps = m_counter / ((android::uptimeMillis() - m_startTime) / 1000);
140 float spf = ((android::uptimeMillis() - m_startTime)) / m_counter;
141 float lpf = (m_idleTime) / m_counter;
142 float exe = (m_executionTime) / m_counter;
143 gLogI.log(kError_ANPLogType, "TEXT: counter(%d) fps(%f) spf(%f) lock(%f) execution(%f)\n", (int)m_counter, fps, spf, lpf, exe);
146 m_counter = 0;
AnimationThread.h 43 float m_counter; member in class:AnimationThread
  /external/webkit/Source/WebCore/rendering/style/
ContentData.h 88 return m_content.m_counter;
94 m_content.m_counter = counter.leakPtr();
119 CounterContent* m_counter; member in union:WebCore::ContentData::__anon14912
ContentData.cpp 74 delete m_content.m_counter;
  /external/webkit/Source/WebCore/rendering/
RenderCounter.h 54 CounterContent m_counter; member in class:WebCore::RenderCounter
RenderCounter.cpp 451 , m_counter(counter)
489 makeCounterNode(beforeAfterContainer, m_counter.identifier(), true)->addRenderer(const_cast<RenderCounter*>(this));
495 String text = listMarkerText(m_counter.listStyle(), value);
497 if (!m_counter.separator().isNull()) {
501 text = listMarkerText(m_counter.listStyle(), child->countInParent())
502 + m_counter.separator() + text;
  /external/webkit/Source/JavaScriptCore/bytecode/
SamplingTool.h 287 m_counter += count;
292 int64_t* addressOfCounter() { return &m_counter; }
298 m_counter = 0;
310 int64_t m_counter; member in class:JSC::AbstractSamplingCounter
403 fprintf(stderr, "DeletableSamplingCounter \"%s\" deleted early (with count %lld)\n", m_name, m_counter);
SamplingTool.cpp 395 printf("\t%s\t: %lld\n", currCounter->m_name, currCounter->m_counter);

Completed in 95 milliseconds