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

1234567

/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/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.cpp6 #include "core/css/Counter.h"
10 void Counter::trace(Visitor* visitor)
H A DCounter.idl23 ] interface Counter {
H A DCounter.h30 class Counter : public RefCountedWillBeGarbageCollected<Counter>, public ScriptWrappable { class in namespace:blink
33 static PassRefPtrWillBeRawPtr<Counter> create(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> identifier, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> listStyle, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> separator)
35 return adoptRefWillBeNoop(new Counter(identifier, listStyle, separator));
48 bool equals(const Counter& other) const
55 PassRefPtrWillBeRawPtr<Counter> cloneForCSSOM() const
65 Counter(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> identifier, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> listStyle, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> separator) function in class:blink::Counter
/external/chromium_org/v8/src/arm64/
H A Dinstrument-arm64.cc10 Counter::Counter(const char* name, CounterType type) function in class:v8::internal::Counter
17 void Counter::Enable() {
22 void Counter::Disable() {
27 bool Counter::IsEnabled() {
32 void Counter::Increment() {
39 uint64_t Counter::count() {
49 const char* Counter::name() {
54 CounterType Counter::type() {
116 // Construct Counter object
[all...]
H A Dinstrument-arm64.h33 class Counter { class in namespace:v8::internal
35 explicit Counter(const char* name, CounterType type = Gauge);
72 Counter* GetCounter(const char* name);
77 std::list<Counter*> counters_;
/external/vixl/src/a64/
H A Dinstrument-a64.cc31 Counter::Counter(const char* name, CounterType type) function in class:vixl::Counter
38 void Counter::Enable() {
43 void Counter::Disable() {
48 bool Counter::IsEnabled() {
53 void Counter::Increment() {
60 uint64_t Counter::count() {
70 const char* Counter::name() {
75 CounterType Counter::type() {
137 // Construct Counter object
[all...]
H A Dinstrument-a64.h54 class Counter { class in namespace:vixl
56 Counter(const char* name, CounterType type = Gauge);
94 Counter* GetCounter(const char* name);
99 std::list<Counter*> counters_;
/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.h34 class CRYPTO_EXPORT Counter { class in class:crypto::Encryptor
36 explicit Counter(const base::StringPiece& counter);
37 ~Counter();
115 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/clang/lib/CodeGen/
H A DCodeGenPGO.h127 void emitCounterIncrement(CGBuilderTy &Builder, unsigned Counter);
138 uint64_t getRegionCount(unsigned Counter) { argument
141 return (*RegionCounts)[Counter];
151 unsigned Counter; member in class:clang::CodeGen::RegionCounter
158 : PGO(&PGO), Counter(CounterIndex), Count(PGO.getRegionCount(Counter)),
163 : PGO(&PGO), Counter(PGO.getRegionCounter(S)),
164 Count(PGO.getRegionCount(Counter)),
192 PGO->emitCounterIncrement(Builder, Counter);
/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/llvm/utils/TableGen/
H A DCallingConvEmitter.cpp33 unsigned Counter; member in class:__anon26568::CallingConvEmitter
60 Counter = 0;
115 O << IndentStr << "static const MCPhysReg RegList" << ++Counter local
124 << Counter << ", " << RegList->getSize() << ")) {\n";
143 unsigned RegListNumber = ++Counter;
144 unsigned ShadowRegListNumber = ++Counter;
176 O << IndentStr << "unsigned Offset" << ++Counter local
190 << Counter << ", LocVT, LocInfo));\n"; local
197 unsigned ShadowRegListNumber = ++Counter;
208 O << IndentStr << "unsigned Offset" << ++Counter
214 << Counter << ", LocVT, LocInfo));\\n"; local
[all...]
/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

Completed in 296 milliseconds

1234567