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

12345

/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/chromium_org/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/chromium_org/v8/test/mjsunit/regress/
H A Dregress-crbug-306851.js30 function Counter() { class
34 Object.defineProperty(Counter.prototype, 'count', {
39 var obj = new Counter();
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCounter.idl22 ] 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));
46 bool equals(const Counter& other) const
53 PassRefPtr<Counter> cloneForCSSOM() const
61 Counter(PassRefPtr<CSSPrimitiveValue> identifier, PassRefPtr<CSSPrimitiveValue> listStyle, PassRefPtr<CSSPrimitiveValue> separator) function in class:WebCore::Counter
/external/chromium_org/crypto/
H A Dencryptor.cc13 // Encyptor::Counter Implementation.
14 Encryptor::Counter::Counter(const base::StringPiece& counter) { function in class:crypto::Encryptor::Counter
20 Encryptor::Counter::~Counter() {
23 bool Encryptor::Counter::Increment() {
38 void Encryptor::Counter::Write(void* buf) {
43 size_t Encryptor::Counter::GetLengthInBytes() const {
56 counter_.reset(new Counter(counter));
H A Dencryptor.h33 class CRYPTO_EXPORT Counter { class in class:crypto::Encryptor
35 explicit Counter(const base::StringPiece& counter);
36 ~Counter();
114 scoped_ptr<Counter> counter_;
/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>");
/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()));
/external/chromium-trace/trace-viewer/src/tracing/analysis/
H A Danalyze_counters_test.js16 var Counter = tracing.trace_model.Counter;
27 var ctr = new Counter(null, 0, '', 'ctr');
62 var ctr = new Counter(null, 0, 'foo', 'ctr[0]');
73 var ctr1 = new Counter(null, 0, '', 'ctr1');
76 var ctr2 = new Counter(null, 0, '', 'ctr2');
87 var ctr1 = new Counter(null, 0, '', 'a');
99 var ctr2 = new Counter(null, 0, '', 'b');
/external/chromium-trace/trace-viewer/src/tracing/trace_model/
H A Dcounter.js12 * @fileoverview Provides the Counter class.
20 function Counter(parent, id, category, name) {
32 Counter.prototype = {
171 Counter.compare = function(x, y) {
182 Counter: Counter
H A Dcpu.js15 var Counter = tracing.trace_model.Counter;
40 this.counters[id] = new Counter(this, id, cat, name);

Completed in 586 milliseconds

12345