HomeSort by relevance Sort by last modified time
    Searched defs:Counter (Results 1 - 25 of 141) sorted by null

1 2 3 4 5 6

  /external/v8/test/mjsunit/regress/
regress-crbug-306851.js 30 function Counter() {
34 Object.defineProperty(Counter.prototype, 'count', {
39 var obj = new Counter();
  /external/google-breakpad/src/testing/gtest/samples/
sample4.h 37 // A simple monotonic counter.
38 class Counter {
43 // Creates a counter that starts at 0.
44 Counter() : counter_(0) {}
46 // Returns the current counter value, and increments it.
49 // Prints the current counter value to STDOUT.
  /external/protobuf/gtest/samples/
sample4.h 37 // A simple monotonic counter.
38 class Counter {
43 // Creates a counter that starts at 0.
44 Counter() : counter_(0) {}
46 // Returns the current counter value, and increments it.
49 // Prints the current counter value to STDOUT.
  /external/vulkan-validation-layers/tests/gtest-1.7.0/samples/
sample4.h 37 // A simple monotonic counter.
38 class Counter {
43 // Creates a counter that starts at 0.
44 Counter() : counter_(0) {}
46 // Returns the current counter value, and increments it.
49 // Prints the current counter value to STDOUT.
  /ndk/sources/third_party/googletest/googletest/samples/
sample4.h 37 // A simple monotonic counter.
38 class Counter {
43 // Creates a counter that starts at 0.
44 Counter() : counter_(0) {}
46 // Returns the current counter value, and increments it.
49 // Prints the current counter value to STDOUT.
  /hardware/bsp/intel/peripheral/libmraa/examples/python/
hello_isr.py 28 class Counter:
31 c = Counter()
  /external/libcxx/test/support/
Counter.h 18 class Counter : public Counter_base
21 Counter() : data_() { ++gConstructed; }
22 Counter(const T &data) : data_(data) { ++gConstructed; }
23 Counter(const Counter& rhs) : data_(rhs.data_) { ++gConstructed; }
24 Counter& operator=(const Counter& rhs) { ++gConstructed; data_ = rhs.data_; return *this; }
26 Counter(Counter&& rhs) : data_(std::move(rhs.data_)) { ++gConstructed; }
27 Counter& operator=(Counter&& rhs) { ++gConstructed; data_ = std::move(rhs.data_); return *this;
    [all...]
  /external/guice/extensions/struts2/example/src/com/google/inject/struts2/example/
Counter.java 22 * Session-scoped counter.
25 public class Counter {
  /external/javassist/sample/rmi/
Counter.java 8 public class Counter {
25 web.exportObject("counter", new Counter());
30 "Usage: java sample.rmi.Counter <port number>");
  /external/autotest/client/common_lib/cros/graphite/
statsd_mock.py 25 class Counter(stats_es_mock.mock_class_base):
26 """Mock class for statsd.Counter."""
stats.py 99 class Counter(statsd.Counter):
100 """Wrapper around statsd.Counter."""
110 statsd.Counter._send(self, subname, value)
114 self.Counter = Counter
autotest_stats.py 55 class Counter(_statsd.Counter):
56 """Wrapper around _statsd.Counter"""
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
Counter.java 19 * $Id: Counter.java 468645 2006-10-28 06:57:24Z minchau $
37 public class Counter
61 * find a counter if the node being counted is not immediatly
79 * Construct a counter object.
86 Counter(ElemNumber numberElem, NodeSetDTM countNodes) throws TransformerException
93 * Construct a counter object.
99 Counter(ElemNumber numberElem) throws TransformerException
  /external/chromium-trace/catapult/telemetry/telemetry/timeline/
counter.py 9 # counter sample into an event. During stable operation, the samples are stored
12 def __init__(self, counter, sample_index):
13 self._counter = counter
57 class Counter(event_container.TimelineEventContainer):
58 """ Stores all the samples for a given counter.
61 super(Counter, self).__init__(name, parent)
  /external/chromium-trace/catapult/third_party/gsutil/third_party/pyasn1-modules/pyasn1_modules/
rfc1155.py 34 class Counter(univ.Integer):
63 namedtype.NamedType('counter', Counter()),
  /external/vixl/src/vixl/a64/
instrument-a64.h 54 class Counter {
56 explicit Counter(const char* name, CounterType type = Gauge);
94 Counter* GetCounter(const char* name);
99 std::list<Counter*> counters_;
103 // Counter information is dumped every sample_period_ instructions decoded.
104 // For a sample_period_ = 0 a final counter value is only produced when the
  /external/llvm/utils/TableGen/
CallingConvEmitter.cpp 33 unsigned Counter;
63 Counter = 0;
118 O << IndentStr << "static const MCPhysReg RegList" << ++Counter
127 << Counter << ")) {\n";
145 unsigned RegListNumber = ++Counter;
146 unsigned ShadowRegListNumber = ++Counter;
178 O << IndentStr << "unsigned Offset" << ++Counter
196 << Counter << ", LocVT, LocInfo));\n";
203 unsigned ShadowRegListNumber = ++Counter;
214 O << IndentStr << "unsigned Offset" << ++Counter
    [all...]
  /external/snakeyaml/src/test/java/org/yaml/snakeyaml/representer/
RepresentIterableTest.java 43 String output = yaml.dump(new Counter(7));
49 return new Counter(10);
53 private class Counter implements Iterator<Integer> {
55 private int counter = 0; field in class:RepresentIterableTest.Counter
57 public Counter(int max) {
62 return counter < max;
66 return counter++;
  /external/v8/src/arm64/
instrument-arm64.h 33 class Counter {
35 explicit Counter(const char* name, CounterType type = Gauge);
72 Counter* GetCounter(const char* name);
77 std::list<Counter*> counters_;
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_HalfHor4x4_unsafe_s.s 87 Counter RN 11
97 MOV Counter, #2
177 SUBS Counter, Counter, #1
  /bionic/tests/
time_test.cpp 262 struct Counter {
276 Counter(void (*fn)(sigval_t)) : value(0), timer_valid(false) {
289 ~Counter() {
312 Counter* cd = reinterpret_cast<Counter*>(value.sival_ptr);
317 Counter* cd = reinterpret_cast<Counter*>(value.sival_ptr);
326 Counter counter(Counter::CountAndDisarmNotifyFunction)
    [all...]
  /external/llvm/lib/CodeGen/
LexicalScopes.cpp 221 unsigned Counter = 0;
233 ChildScope->setDFSIn(++Counter);
239 WS->setDFSOut(++Counter);
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_ExpandFrame_I_s.s 68 Counter RN 12
92 MOV Temp, iFrameWidth ;// Outer loop counter
109 MOV Counter, iExpandPels ;// Inner loop counter
121 SUBS Counter, Counter, #8
140 MOV Counter, iExpandPels ;// Inner loop counter
152 SUBS Counter, Counter, #
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 191 // Set the current block counter to being empty.
217 // Set the current block counter.
326 // Increment the block counter.
329 BlockCounter Counter = WList->getBlockCounter();
330 Counter = BCounterFactory.IncrementCount(Counter, LC->getCurrentStackFrame(),
332 WList->setBlockCounter(Counter);
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
sizeofpack.cpp 124 struct Counter
126 static const int count = 1 + Counter<Args...>::count;
130 struct Counter<T>

Completed in 5591 milliseconds

1 2 3 4 5 6