Searched refs:Counter (Results 1 - 25 of 59) sorted by relevance

123

/external/chromium/testing/gtest/samples/
H A Dsample4.cc39 int Counter::Increment() {
44 void Counter::Print() const {
H A Dsample4.h38 class Counter { class
44 Counter() : counter_(0) {} function in class:Counter
H A Dsample4_unittest.cc36 TEST(Counter, Increment) {
37 Counter c;
/external/gtest/samples/
H A Dsample4.cc39 int Counter::Increment() {
44 void Counter::Print() const {
H A Dsample4.h38 class Counter { class
44 Counter() : counter_(0) {} function in class:Counter
H A Dsample4_unittest.cc36 TEST(Counter, Increment) {
37 Counter c;
/external/protobuf/gtest/samples/
H A Dsample4.cc39 int Counter::Increment() {
44 void Counter::Print() const {
H A Dsample4.h38 class Counter { class
44 Counter() : counter_(0) {} function in class:Counter
H A Dsample4_unittest.cc36 TEST(Counter, Increment) {
37 Counter c;
/external/wpa_supplicant_8/hostapd/src/eapol_auth/
H A Deapol_auth_sm_i.h21 typedef unsigned int Counter; typedef
80 Counter authEntersConnecting;
81 Counter authEapLogoffsWhileConnecting;
82 Counter authEntersAuthenticating;
83 Counter authAuthSuccessesWhileAuthenticating;
84 Counter authAuthTimeoutsWhileAuthenticating;
85 Counter authAuthFailWhileAuthenticating;
86 Counter authAuthEapStartsWhileAuthenticating;
87 Counter authAuthEapLogoffWhileAuthenticating;
88 Counter authAuthReauthsWhileAuthenticate
[all...]
/external/wpa_supplicant_8/src/eapol_auth/
H A Deapol_auth_sm_i.h21 typedef unsigned int Counter; typedef
80 Counter authEntersConnecting;
81 Counter authEapLogoffsWhileConnecting;
82 Counter authEntersAuthenticating;
83 Counter authAuthSuccessesWhileAuthenticating;
84 Counter authAuthTimeoutsWhileAuthenticating;
85 Counter authAuthFailWhileAuthenticating;
86 Counter authAuthEapStartsWhileAuthenticating;
87 Counter authAuthEapLogoffWhileAuthenticating;
88 Counter authAuthReauthsWhileAuthenticate
[all...]
/external/wpa_supplicant_8/wpa_supplicant/src/eapol_auth/
H A Deapol_auth_sm_i.h21 typedef unsigned int Counter; typedef
80 Counter authEntersConnecting;
81 Counter authEapLogoffsWhileConnecting;
82 Counter authEntersAuthenticating;
83 Counter authAuthSuccessesWhileAuthenticating;
84 Counter authAuthTimeoutsWhileAuthenticating;
85 Counter authAuthFailWhileAuthenticating;
86 Counter authAuthEapStartsWhileAuthenticating;
87 Counter authAuthEapLogoffWhileAuthenticating;
88 Counter authAuthReauthsWhileAuthenticate
[all...]
/external/webkit/Source/WebCore/css/
H A DCounter.idl23 interface Counter {
H A DCounter.h29 class Counter : public RefCounted<Counter> { class in namespace:WebCore
31 static PassRefPtr<Counter> create(PassRefPtr<CSSPrimitiveValue> identifier, PassRefPtr<CSSPrimitiveValue> listStyle, PassRefPtr<CSSPrimitiveValue> separator)
33 return adoptRef(new Counter(identifier, listStyle, separator));
47 Counter(PassRefPtr<CSSPrimitiveValue> identifier, PassRefPtr<CSSPrimitiveValue> listStyle, PassRefPtr<CSSPrimitiveValue> separator) function in class:WebCore::Counter
H A DCSSPrimitiveValue.h32 class Counter;
169 Counter* getCounterValue(ExceptionCode&) const;
170 Counter* getCounterValue() const { return m_type != CSS_COUNTER ? 0 : m_value.counter; }
218 void init(PassRefPtr<Counter>);
234 Counter* counter;
H A DCSSPrimitiveValue.idl64 Counter getCounterValue()
/external/javassist/sample/rmi/
H A DCounter.java8 public class Counter { class
25 web.exportObject("counter", new Counter());
30 "Usage: java sample.rmi.Counter <port number>");
H A DCountApplet.java13 private Counter counter;
53 counter = (Counter)importer.lookupObject(paramName);
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DCountersTable.java35 * of which has a list of Counter objects. This really isn't a true
142 Counter counter = (Counter) counters.elementAt(i);
171 Counter counter = (Counter) counters.elementAt(i);
197 Counter counter = new Counter(numberElem, new NodeSetDTM(support.getDTMManager()));
H A DCounter.java19 * $Id: Counter.java 468645 2006-10-28 06:57:24Z minchau $
37 public class Counter class
86 Counter(ElemNumber numberElem, NodeSetDTM countNodes) throws TransformerException method in class:Counter
99 Counter(ElemNumber numberElem) throws TransformerException
/external/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp32 unsigned Counter; member in class:__anon9300::CallingConvEmitter
59 Counter = 0;
114 O << IndentStr << "static const uint16_t RegList" << ++Counter local
123 << Counter << ", " << RegList->getSize() << ")) {\n";
142 unsigned RegListNumber = ++Counter;
143 unsigned ShadowRegListNumber = ++Counter;
175 O << IndentStr << "unsigned Offset" << ++Counter local
191 << Counter << ", LocVT, LocInfo));\n"; local
/external/v8/src/
H A Dd8.h45 class Counter { class in namespace:v8
68 Counter* GetNextCounter();
75 Counter counters_[kMaxCounters];
82 Counter* Lookup(const char* name) {
88 return reinterpret_cast<Counter*>(answer->value);
90 void Set(const char* name, Counter* value) {
105 Counter* CurrentValue() { return static_cast<Counter*>(entry_->value); }
379 static Counter* GetCounter(const char* name, bool is_histogram);
H A Dmksnapshot.cc46 class Counter { class
71 max_name_size_ = Counter::kMaxNameSize;
74 Counter* GetNextCounter() {
83 Counter counters_[kMaxCounters];
/external/llvm/include/llvm/Support/
H A DGCOV.h189 GCOVBlock(uint32_t N) : Number(N), Counter(0) {}
193 void addCount(uint64_t N) { Counter = N; }
198 uint64_t Counter; member in class:llvm::GCOVBlock
/external/guava/guava-tests/test/com/google/common/util/concurrent/
H A DAtomicDoubleArrayTest.java287 class Counter extends CheckedRunnable { class in class:AtomicDoubleArrayTest
290 Counter(AtomicDoubleArray a) { aa = a; } method in class:AtomicDoubleArrayTest.Counter
321 Counter c1 = new Counter(aa);
322 Counter c2 = new Counter(aa);

Completed in 490 milliseconds

123