Searched defs:Count (Results 1 - 25 of 144) sorted by relevance

123456

/external/llvm/utils/count/
H A Dcount.c14 unsigned Count, NumLines, NumRead; local
22 Count = strtol(argv[1], &End, 10);
44 if (Count != NumLines) {
45 fprintf(stderr, "Expected %d lines, got %d.\n", Count, NumLines);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
H A DIIntStream.cs149 int Count { get; } property in interface:Antlr.Runtime.IIntStream
H A DANTLRStringStream.cs193 public virtual int Count { property in class:Antlr.Runtime.ANTLRStringStream
206 if (markDepth >= markers.Count) {
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Misc/
H A DFastQueue.cs54 public virtual int Count { property in class:Antlr.Runtime.Misc.FastQueue
56 return _data.Count - _p;
77 if (absIndex >= _data.Count)
78 throw new ArgumentException(string.Format("queue index {0} > last index {1}", absIndex, _data.Count - 1));
91 if (Count == 0)
97 if (_p == _data.Count) {
120 int n = Count;
H A DLookaheadStream.cs94 if (_p == _data.Count && _markDepth == 0) {
115 int n = (_p + need - 1) - _data.Count + 1; // how many more elements we need?
132 public override int Count { property in class:Antlr.Runtime.Misc.LookaheadStream
147 if ((_p + k - 1) > _data.Count)
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
H A DIIntStream.cs145 int Count property in interface:Antlr.Runtime.IIntStream
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Misc/
H A DFastQueue.cs56 public virtual int Count property in class:Antlr.Runtime.Misc.FastQueue
60 return _data.Count - _p;
84 if (absIndex >= _data.Count)
85 throw new ArgumentException(string.Format("queue index {0} > last index {1}", absIndex, _data.Count - 1));
99 if (Count == 0)
105 if ( _p == _data.Count )
133 int n = Count;
H A DLookaheadStream.cs110 if ( _p == _data.Count && _markDepth == 0 )
134 int n = ( _p + need - 1 ) - _data.Count + 1; // how many more elements we need?
153 public override int Count property in class:Antlr.Runtime.Misc.LookaheadStream
173 if ((_p + k - 1) > _data.Count)
/external/clang/include/clang/Basic/
H A DAddressSpaces.h39 Count = Last-Offset enumerator in enum:clang::LangAS::ID
44 typedef unsigned Map[Count];
/external/llvm/unittests/ADT/
H A DBitVectorTest.cpp76 unsigned Count = 0; local
78 ++Count;
82 EXPECT_EQ(Count, Vec.count());
83 EXPECT_EQ(Count, 23u);
106 Count = 0;
108 ++Count;
112 EXPECT_EQ(Count, Vec.count());
113 EXPECT_EQ(Count, 42u);
121 EXPECT_EQ(Count + 1, Vec.count());
124 EXPECT_EQ(Count, Ve
[all...]
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/Tree/
H A DRewriteRuleElementStream.cs155 int n = Count;
177 int n = Count;
227 ( elements != null && cursor < elements.Count );
231 public virtual int Count property in class:Antlr.Runtime.Tree.RewriteRuleElementStream
242 return elements.Count;
/external/clang/utils/analyzer/
H A DSumTimerInfo.py26 Count = 0 variable
41 Count = Count + 1 variable
73 print "TU Count %d" % (Count)
/external/guava/guava/src/com/google/common/collect/
H A DCount.java29 final class Count implements Serializable { class in inherits:Serializable
32 Count() { method in class:Count
36 Count(int value) { method in class:Count
71 return obj instanceof Count && ((Count) obj).value == value;
/external/llvm/lib/Analysis/
H A DCaptureTracking.cpp86 int Count = 0; local
92 if (Count++ >= Threshold)
/external/llvm/lib/IR/
H A DUse.cpp105 ptrdiff_t Count = Done; local
108 if (!Count) {
111 Count = Done;
113 new(Stop) Use(PrevPtrTag(Count & 1));
114 Count >>= 1;
H A DGCOV.cpp106 uint32_t Count = Buff.readInt() / 2; local
107 for (unsigned i = 0, e = Count; i != e; ++i) {
222 uint32_t Count) {
225 FI.addLineCount(Filename, *I, Count);
239 void FileInfo::addLineCount(StringRef Filename, uint32_t Line, uint32_t Count) {
248 L[Line-1] = Count;
253 L[Line-1] = Count;
/external/llvm/lib/Transforms/Scalar/
H A DBasicBlockPlacement.cpp140 double Count = PI->getExecutionCount(*SI); local
141 if (Count > MaxExecutionCount ||
143 (Count == MaxExecutionCount && *SI == &*InsertPos)) {
144 MaxExecutionCount = Count;
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Tree/
H A DRewriteRuleElementStream.cs144 int n = Count;
164 int n = Count;
207 (elements != null && cursor < elements.Count);
211 public virtual int Count { property in class:Antlr.Runtime.Tree.RewriteRuleElementStream
218 return elements.Count;
/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
H A DDebugTokenStream.cs173 public virtual int Count property in class:Antlr.Runtime.Debug.DebugTokenStream
177 return input.Count;
/external/chromium_org/base/metrics/
H A Dsample_map.cc13 typedef HistogramBase::Count Count; typedef in namespace:base
20 void SampleMap::Accumulate(Sample value, Count count) {
26 Count SampleMap::GetCount(Sample value) const {
27 map<Sample, Count>::const_iterator it = sample_counts_.find(value);
33 Count SampleMap::TotalCount() const {
34 Count count = 0;
35 for (map<Sample, Count>::const_iterator it = sample_counts_.begin();
51 Count count;
76 void SampleMapIterator::Get(Sample* min, Sample* max, Count* coun
[all...]
/external/chromium_org/chrome/browser/extensions/
H A DPRESUBMIT.py45 def Count(self): member in class:HistogramValueChecker.EnumRange
/external/lzma/C/
H A DPpmd.h37 Byte Count; /* Count to next change of Shift */ member in struct:__anon21973
40 #define Ppmd_See_Update(p) if ((p)->Shift < PPMD_PERIOD_BITS && --(p)->Count == 0) \
41 { (p)->Summ <<= 1; (p)->Count = (Byte)(3 << (p)->Shift++); }
/external/webrtc/src/system_wrappers/source/
H A Dcritical_section_unittest.cc56 int Count() const { function in class:webrtc::__anon28145::ProtectedCount
78 while (count->Count() < target && loop_counter < 100*target) {
83 return (count->Count() >= target);
110 // the lock, even though count.Count() locks and unlocks the critical section
113 ASSERT_EQ(0, count.Count());
146 EXPECT_LE(2, count.Count());
150 int count_before = count.Count();
154 EXPECT_EQ(count_before, count.Count());
159 EXPECT_LT(count_before, count.Count());
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
H A DDebugTokenStream.cs147 public virtual int Count { property in class:Antlr.Runtime.Debug.DebugTokenStream
149 return input.Count;
H A DDebugTreeNodeStream.cs163 public virtual int Count { property in class:Antlr.Runtime.Debug.DebugTreeNodeStream
165 return input.Count;

Completed in 556 milliseconds

123456