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

1 2 3 4 5 6

  /external/chromium/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.
sample4.cc 38 // Returns the current counter value, and increments it.
39 int Counter::Increment() {
43 // Prints the current counter value to STDOUT.
44 void Counter::Print() const {
sample4_unittest.cc 36 TEST(Counter, Increment) {
37 Counter c;
  /external/chromium_org/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.
sample4.cc 38 // Returns the current counter value, and increments it.
39 int Counter::Increment() {
43 // Prints the current counter value to STDOUT.
44 void Counter::Print() const {
sample4_unittest.cc 36 TEST(Counter, Increment) {
37 Counter c;
  /external/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.
sample4.cc 38 // Returns the current counter value, and increments it.
39 int Counter::Increment() {
43 // Prints the current counter value to STDOUT.
44 void Counter::Print() const {
sample4_unittest.cc 36 TEST(Counter, Increment) {
37 Counter c;
  /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.
sample4.cc 38 // Returns the current counter value, and increments it.
39 int Counter::Increment() {
43 // Prints the current counter value to STDOUT.
44 void Counter::Print() const {
sample4_unittest.cc 36 TEST(Counter, Increment) {
37 Counter c;
  /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.
sample4.cc 38 // Returns the current counter value, and increments it.
39 int Counter::Increment() {
43 // Prints the current counter value to STDOUT.
44 void Counter::Print() const {
sample4_unittest.cc 36 TEST(Counter, Increment) {
37 Counter c;
  /external/wpa_supplicant_8/src/eapol_auth/
eapol_auth_sm_i.h 21 typedef unsigned int Counter;
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 authAuthReauthsWhileAuthenticated
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
Counter.idl 22 ] interface Counter {
Counter.h 29 class Counter : public RefCounted<Counter> {
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)
  /external/chromium_org/crypto/
encryptor.cc 13 // Encyptor::Counter Implementation.
14 Encryptor::Counter::Counter(const base::StringPiece& counter) {
15 CHECK(sizeof(counter_) == counter.length());
17 memcpy(&counter_, counter.data(), sizeof(counter_));
20 Encryptor::Counter::~Counter() {
23 bool Encryptor::Counter::Increment() {
34 // TODO(hclam): Return false if counter value overflows
    [all...]
encryptor.h 31 // This class implements a 128-bits counter to be used in AES-CTR encryption.
32 // Only 128-bits counter is supported in this class.
33 class CRYPTO_EXPORT Counter {
35 explicit Counter(const base::StringPiece& counter);
36 ~Counter();
38 // Increment the counter value.
41 // Write the content of the counter to |buf|. |buf| should have enough
45 // Return the length of this counter.
80 // Sets the counter value when in CTR mode. Currently only 128-bit
    [all...]
  /external/javassist/sample/rmi/
Counter.java 8 public class Counter {
25 web.exportObject("counter", new Counter());
30 "Usage: java sample.rmi.Counter <port number>");
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm_neon/vc/comm/src/
omxVCCOMM_ExpandFrame_I_s.s 54 Counter RN 12
78 MOV Temp, iFrameWidth ;// Outer loop counter
95 MOV Counter, iExpandPels ;// Inner loop counter
107 SUBS Counter, Counter, #8
126 MOV Counter, iExpandPels ;// Inner loop counter
138 SUBS Counter, Counter, #
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
CountersTable.java 35 * of which has a list of Counter objects. This really isn't a true
67 * Put a counter into the table and create an empty
142 Counter counter = (Counter) counters.elementAt(i); local
144 count = counter.getPreviouslyCounted(support, target);
155 // the backwards list (m_newFound) to the forwards list (counter.m_countNodes).
171 Counter counter = (Counter) counters.elementAt(i) local
197 Counter counter = new Counter(numberElem, new NodeSetDTM(support.getDTMManager())); local
    [all...]
  /libnativehelper/include/nativehelper/
toStringArray.h 28 template <typename Counter, typename Getter>
29 jobjectArray toStringArray(JNIEnv* env, Counter* counter, Getter* getter) {
30 size_t count = (*counter)();
48 template <typename Counter, typename Getter>
49 jobjectArray toStringArray16(JNIEnv* env, Counter* counter, Getter* getter) {
50 size_t count = (*counter)();
  /frameworks/av/media/libstagefright/codecs/on2/h264dec/omxdl/arm11/vc/m4p10/src/
armVCM4P10_InterpolateLuma_HalfDiagVerHor4x4_unsafe_s.s 102 Counter RN 8
122 ;// Set up counter of format, [0] [0] [1 (height)] [8 (width)]
123 MOV Counter, #1
125 ADD Counter, Temp, Counter, LSL #8 ;// [0 0 H W]
186 SUBS Counter, Counter, #1 << 8 ;// Loop till height is 10
192 ADDS Counter, Counter, #(1 << 8)-4 ;// Loop till width is 12
195 ADD Counter, Counter, #1<<
    [all...]

Completed in 165 milliseconds

1 2 3 4 5 6