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

12345678

/external/chromium_org/v8/src/
H A Ddata-flow.cc44 int BitVector::Count() const { function in class:v8::internal::BitVector
/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
/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;
/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/chromium_org/third_party/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfOutlineDictionary_autogen.cpp47 int64_t SkPdfOutlineDictionary::Count(SkPdfNativeDoc* doc) { function in class:SkPdfOutlineDictionary
48 SkPdfNativeObject* ret = get("Count", "");
56 return get("Count", "") != NULL;
H A DSkPdfPageTreeNodeDictionary_autogen.cpp47 int64_t SkPdfPageTreeNodeDictionary::Count(SkPdfNativeDoc* doc) { function in class:SkPdfPageTreeNodeDictionary
48 SkPdfNativeObject* ret = get("Count", "");
56 return get("Count", "") != NULL;
/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/include/llvm/CodeGen/
H A DJumpInstrTables.h74 unsigned Count; member in struct:llvm::JumpInstrTables::TableMeta
/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/skia/experimental/PdfViewer/pdfparser/native/pdfapi/
H A DSkPdfOutlineDictionary_autogen.cpp47 int64_t SkPdfOutlineDictionary::Count(SkPdfNativeDoc* doc) { function in class:SkPdfOutlineDictionary
48 SkPdfNativeObject* ret = get("Count", "");
56 return get("Count", "") != NULL;
H A DSkPdfPageTreeNodeDictionary_autogen.cpp47 int64_t SkPdfPageTreeNodeDictionary::Count(SkPdfNativeDoc* doc) { function in class:SkPdfPageTreeNodeDictionary
48 SkPdfNativeObject* ret = get("Count", "");
56 return get("Count", "") != NULL;
/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/chromium_org/tools/strict_enum_value_checker/
H A Dstrict_enum_value_checker.py32 def Count(self): member in class:StrictEnumValueChecker.EnumRange
/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
91 if (Count++ >= Threshold)
148 Count = 0;
152 if (Count++ >= Threshold)
/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/third_party/webrtc/system_wrappers/source/
H A Dcritical_section_unittest.cc42 int Count() const { function in class:webrtc::__anon16156::ProtectedCount
63 while (count->Count() < target && loop_counter < 100 * target) {
67 return (count->Count() >= target);
88 // the lock, even though count.Count() locks and unlocks the critical section
91 ASSERT_EQ(0, count.Count());
121 EXPECT_LE(2, count.Count());
125 int count_before = count.Count();
129 EXPECT_EQ(count_before, count.Count());
H A Devent_tracer_unittest.cc32 int Count() const { return events_logged_; } function in class:__anon16160::TestStatistics
69 EXPECT_FALSE(TestStatistics::Get()->Count());
78 EXPECT_EQ(2, TestStatistics::Get()->Count());
/external/llvm/lib/IR/
H A DUse.cpp70 ptrdiff_t Count = Done; local
73 if (!Count) {
76 Count = Done;
78 new (Stop) Use(PrevPtrTag(Count & 1));
79 Count >>= 1;

Completed in 2629 milliseconds

12345678