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

1 2

  /external/jmonkeyengine/engine/src/core/com/jme3/app/
StatsView.java 39 import com.jme3.renderer.Statistics;
48 * statistics of rendering. The data is retrieved every frame from a
49 * {@link com.jme3.renderer.Statistics} and then displayed on screen.<br/>
53 * {@link com.jme3.renderer.Statistics} from the
57 * Statistics stats = renderer.getStatistics();<br/>
65 private Statistics statistics; field in class:StatsView
74 public StatsView(String name, AssetManager manager, Statistics stats){
80 statistics = stats;
82 statLabels = statistics.getLabels()
    [all...]
  /external/icu4c/test/perf/perldriver/
Dataset.pm 9 use Statistics::Descriptive;
10 use Statistics::Distributions;
26 my $stats = Statistics::Descriptive::Full->new();
35 my $t = Statistics::Distributions::tdistr($n-1, 0.005);
  /external/jmonkeyengine/engine/src/core/com/jme3/system/
NullRenderer.java 41 import com.jme3.renderer.Statistics;
55 private static final Statistics stats = new Statistics();
61 public Statistics getStatistics() {
  /frameworks/native/services/surfaceflinger/
Layer.h 126 struct Statistics {
127 Statistics() : timestamp(0), set(0), vsync(0) { }
134 Statistics mFrameStats[128];
  /dalvik/dexgen/src/com/android/dexgen/dex/file/
Statistics.java 26 * Statistics about the contents of a file.
28 public final class Statistics {
35 public Statistics() {
40 * Adds the given item to the statistics.
56 * Adds the given list of items to the statistics.
68 * Writes the statistics as an annotation.
93 sb.append("Statistics:\n");
DexFile.java 586 * Generates and returns statistics for all the items in the file.
588 * @return {@code non-null;} the statistics
590 public Statistics getStatistics() {
591 Statistics stats = new Statistics();
  /dalvik/dx/src/com/android/dx/dex/file/
Statistics.java 26 * Statistics about the contents of a file.
28 public final class Statistics {
35 public Statistics() {
40 * Adds the given item to the statistics.
56 * Adds the given list of items to the statistics.
68 * Writes the statistics as an annotation.
93 sb.append("Statistics:\n");
DexFile.java 605 * Generates and returns statistics for all the items in the file.
607 * @return {@code non-null;} the statistics
609 public Statistics getStatistics() {
610 Statistics stats = new Statistics();
  /external/dexmaker/src/dx/java/com/android/dx/dex/file/
Statistics.java 26 * Statistics about the contents of a file.
28 public final class Statistics {
35 public Statistics() {
40 * Adds the given item to the statistics.
56 * Adds the given list of items to the statistics.
68 * Writes the statistics as an annotation.
93 sb.append("Statistics:\n");
DexFile.java 605 * Generates and returns statistics for all the items in the file.
607 * @return {@code non-null;} the statistics
609 public Statistics getStatistics() {
610 Statistics stats = new Statistics();
  /external/webkit/Source/WebCore/loader/cache/
MemoryCache.h 99 struct Statistics {
165 // Function to collect cache statistics for the caches window in the Safari Debug menu.
166 Statistics getStatistics();
MemoryCache.cpp 606 MemoryCache::Statistics MemoryCache::getStatistics()
608 Statistics stats;
663 Statistics s = getStatistics();
  /external/jmonkeyengine/engine/src/core/com/jme3/renderer/
Renderer.java 63 * The statistics allow tracking of how data
66 * to call {@link Statistics#clearFrame() } at the appropriate time
69 public Statistics getStatistics();
Statistics.java 42 * The statistics class allows tracking of real-time rendering statistics.
44 * The <code>Statistics</code> can be retrieved by using {@link Renderer#getStatistics() }.
48 public class Statistics {
95 * Retrieves the statistics data into the given array.
188 * Clears all frame-specific statistics such as objects used per frame.
  /external/webkit/Source/WebKit/chromium/src/
WebCache.cpp 94 MemoryCache::Statistics stats = cache->getStatistics();
  /packages/apps/Email/src/com/android/email/provider/
ContentCache.java 110 // Cache statistics
111 private final Statistics mStats;
426 mStats = new Statistics(this);
517 // Every 200 calls to getCursor, report cache statistics
761 static class Statistics {
765 // Cache statistics
779 // The following are for timing statistics
789 Statistics(ContentCache cache) {
794 Statistics(String name) {
840 Statistics totals = new Statistics("Totals")
    [all...]
  /external/webkit/Source/WebKit/mac/Misc/
WebCache.mm 44 + (NSArray *)statistics
46 WebCore::MemoryCache::Statistics s = WebCore::memoryCache()->getStatistics();
  /external/webkit/Source/WebKit2/UIProcess/
WebContext.h 156 struct Statistics {
161 static Statistics& statistics();
WebContext.cpp 452 WebContext::Statistics& WebContext::statistics() function in class:WebKit::WebContext
454 static Statistics statistics = Statistics(); local
456 return statistics;
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
cu_cmd.c     [all...]
  /external/jmonkeyengine/engine/src/lwjgl/com/jme3/renderer/lwjgl/
LwjglGL1Renderer.java 13 import com.jme3.renderer.Statistics;
58 private final Statistics statistics = new Statistics(); field in class:LwjglGL1Renderer
81 public Statistics getStatistics() {
82 return statistics;
126 statistics.clearMemory();
133 statistics.clearMemory();
427 // statistics.clearFrame();
716 statistics.onNewTexture()
    [all...]
  /external/webkit/Source/WebKit/win/
WebCache.cpp 89 HRESULT STDMETHODCALLTYPE WebCache::statistics( function in class:WebCache
100 WebCore::MemoryCache::Statistics stat = WebCore::memoryCache()->getStatistics();
  /external/webkit/Source/WebKit2/UIProcess/API/C/
WKContext.cpp 102 void WKContextGetGlobalStatistics(WKContextStatistics* statistics)
104 const WebContext::Statistics& webContextStatistics = WebContext::statistics();
106 statistics->wkViewCount = webContextStatistics.wkViewCount;
107 statistics->wkPageCount = webContextStatistics.wkPageCount;
108 statistics->wkFrameCount = webContextStatistics.wkViewCount;
  /external/valgrind/main/callgrind/
global.h 167 /*--- Statistics ---*/
170 typedef struct _Statistics Statistics;
603 /* dump statistics */
822 extern Statistics CLG_(stat);
  /external/jmonkeyengine/engine/src/android/com/jme3/renderer/android/
OGLESShaderRenderer.java 97 private final Statistics statistics = new Statistics(); field in class:OGLESShaderRenderer
145 public Statistics getStatistics() {
146 return statistics;
379 statistics.clearMemory();
387 statistics.clearMemory();
731 // statistics.clearFrame();
775 statistics.onShaderUse(shader, true);
779 statistics.onShaderUse(shader, false)
    [all...]

Completed in 623 milliseconds

1 2