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

1 2 3 4

  /external/chromium_org/v8/test/mjsunit/regress/
regress-crbug-306851.js 30 function Counter() {
34 Object.defineProperty(Counter.prototype, 'count', {
39 var obj = new Counter();
  /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.
  /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.
  /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.
  /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/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 32 // This class implements a 128-bits counter to be used in AES-CTR encryption.
33 // Only 128-bits counter is supported in this class.
34 class CRYPTO_EXPORT Counter {
36 explicit Counter(const base::StringPiece& counter);
37 ~Counter();
39 // Increment the counter value.
42 // Write the content of the counter to |buf|. |buf| should have enough
46 // Return the length of this counter.
81 // Sets the counter value when in CTR mode. Currently only 128-bit
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
Counter.h 30 class Counter : public RefCountedWillBeGarbageCollected<Counter>, public ScriptWrappable {
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)
  /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_org/tools/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
49 class Counter(event_container.TimelineEventContainer):
50 """ Stores all the samples for a given counter.
53 super(Counter, self).__init__(name, parent)
  /external/lldb/examples/summaries/cocoa/
metrics.py 31 class Counter:
68 self.metrics[name] = Counter()
  /external/vixl/src/a64/
instrument-a64.h 54 class Counter {
56 Counter(const char* name, CounterType type = Gauge);
94 Counter* GetCounter(const char* name);
99 std::list<Counter*> counters_;
  /external/chromium_org/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_;
  /external/llvm/utils/TableGen/
CallingConvEmitter.cpp 33 unsigned Counter;
60 Counter = 0;
115 O << IndentStr << "static const MCPhysReg RegList" << ++Counter
124 << Counter << ", " << RegList->getSize() << ")) {\n";
143 unsigned RegListNumber = ++Counter;
144 unsigned ShadowRegListNumber = ++Counter;
176 O << IndentStr << "unsigned Offset" << ++Counter
190 << Counter << ", LocVT, LocInfo));\n";
197 unsigned ShadowRegListNumber = ++Counter;
208 O << IndentStr << "unsigned Offset" << ++Counter
    [all...]
  /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 204 struct Counter {
210 Counter(void (*fn)(sigval_t)) : value(0), timer_valid(false) {
230 ~Counter() {
249 Counter* cd = reinterpret_cast<Counter*>(value.sival_ptr);
254 Counter* cd = reinterpret_cast<Counter*>(value.sival_ptr);
263 Counter counter(Counter::CountAndDisarmNotifyFunction)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/timeline/
CountersGraph.js 75 this._currentValuesBar.id = "counter-values-bar";
82 * @return {!WebInspector.CountersGraph.Counter}
86 var counter = new WebInspector.CountersGraph.Counter();
87 this._counters.push(counter);
88 this._counterUI.push(new WebInspector.CountersGraph.CounterUI(this, uiName, uiValueTemplate, color, counter));
89 return counter;
160 if (!counterUI.counter.times.length)
163 var distance = Math.abs(x * window.devicePixelRatio - counterUI.counter.x[index]);
166 bestTime = counterUI.counter.times[index]
    [all...]
  /external/clang/lib/CodeGen/
CodeGenPGO.h 63 /// Return the counter value of the current region.
66 /// Set the counter value for the current region. This is used to keep track
67 /// of changes to the most recent counter from control flow and non-local
72 /// counter value of zero. This is important so that subsequent regions can
109 /// Clean up region counter state. Must be called if assignRegionCounters is
126 /// Emit code to increment the counter at the given index
127 void emitCounterIncrement(CGBuilderTy &Builder, unsigned Counter);
129 /// Return the region counter for the given statement. This should only be
130 /// called on statements that have a dedicated counter.
137 /// Return the region count for the counter at the given index
    [all...]
  /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/chromium_org/third_party/WebKit/Source/bindings/scripts/
v8_interface.py 433 method_counts = Counter(method['name'] for method in methods)
    [all...]
  /external/chromium_org/v8/tools/
stats-viewer.py 31 """A cross-platform execution counter viewer.
51 # Mapping from counter prefix to the formatting to be used for the counter
68 name_filter: The regexp filter to apply to counter names.
77 # A mapping from counter names to the ui element that displays
81 # The counter collection used to access the counters file
103 print "\"%s\" is neither a counter file nor a PID." % self.data_name
113 print "Can't find counter file in maps for PID %s." % self.data_name
147 counter = self.data.Counter(i
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
CoreEngine.cpp 190 // Set the current block counter to being empty.
216 // Set the current block counter.
325 // Increment the block counter.
328 BlockCounter Counter = WList->getBlockCounter();
329 Counter = BCounterFactory.IncrementCount(Counter, LC->getCurrentStackFrame(),
331 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>
  /external/lldb/test/functionalities/data-formatter/data-formatter-cpp/
main.cpp 18 typedef int Counter; // should show as int
24 typedef Counter Accumulator; // should show as int
81 Counter CTILookInt = 6;
  /external/llvm/include/llvm/CodeGen/
AsmPrinter.h 478 mutable unsigned Counter;

Completed in 778 milliseconds

1 2 3 4