HomeSort by relevance Sort by last modified time
    Searched refs:Count (Results 201 - 225 of 302) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.Debug/
Profiler.cs 144 // count how many entries go into table
235 return decisionStack.Count > 0;
355 if (e.backtracks) { // doesn't count gated syn preds on DFA edges
466 //for (int i = 0; i < input.Count && lastRealTokenTouchedInDecision != null && i <= lastRealTokenTouchedInDecision.TokenIndex; i++)
477 stats.numUniqueRulesInvoked = uniqueRules.Count;
643 for (int ti = i; ti < input.Count && ti <= j; ti++) {
677 public int numBacktrackOccurrences; // doesn't count gated DFA edges
725 public bool backtracks; // doesn't count gated DFA edges
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.Debug/
Profiler.cs 153 // count how many entries go into table
256 return decisionStack.Count > 0;
395 { // doesn't count gated syn preds on DFA edges
513 //for (int i = 0; i < input.Count && lastRealTokenTouchedInDecision != null && i <= lastRealTokenTouchedInDecision.TokenIndex; i++)
524 stats.numUniqueRulesInvoked = uniqueRules.Count;
700 for (int ti = i; ti < input.Count && ti <= j; ti++)
739 public int numBacktrackOccurrences; // doesn't count gated DFA edges
789 public bool backtracks; // doesn't count gated DFA edges
  /external/llvm/tools/llvm-diff/
DifferenceEngine.cpp 127 unsigned Count = 0;
129 if (!Blocks.count(*I)) Count++;
130 return Count;
442 return Values[L] == R || TentativeValues.count(std::make_pair(L, R));
669 if (!LNames.count(RFn->getName()))
  /frameworks/av/media/libeffects/lvm/lib/Bundle/src/
LVM_Control.c 503 LVM_INT16 Count = 5;
514 Count--;
516 (Count > 0));
    [all...]
  /frameworks/base/media/libdrm/mobile1/src/parser/
parser_rel.c 174 {"<o-dd:count>","</o-dd:count>"},
424 "o-ex:rights\\o-ex:agreement\\o-ex:permission\\o-dd:%s\\o-ex:constraint\\o-dd:count",
429 if (pBuf) { /* If count element exit the get the value */
433 for (i = 0; i < valueLen; i++) { /* Check the count format */
439 pConstraint->Count = atoi((char *)pTmp);
441 if(0 == pConstraint->Count)
445 else if( pConstraint->Count > 0)
  /external/llvm/include/llvm-c/
Core.h     [all...]
  /external/llvm/tools/macho-dump/
macho-dump.cpp 371 outs() << " ('count', " << LOLC->Count << ")\n"
377 for (unsigned i = 0; i != LOLC->Count; ++i) {
  /external/qemu/distrib/sdl-1.2.15/src/video/symbian/EKA1/
SDL_epocevents.cpp 444 if(err == KErrNone && array.Count() > 0)
450 for(TInt k = 0; k < array.Count(); k+= 2)
  /frameworks/base/media/libdrm/mobile1/src/objmng/
drm_api.c 225 licenseInfo->displayRights.count =
226 pRights->DisplayConstraint.Count;
242 licenseInfo->playRights.count = pRights->PlayConstraint.Count;
258 licenseInfo->executeRights.count =
259 pRights->ExecuteConstraint.Count;
275 licenseInfo->printRights.count =
276 pRights->PrintConstraint.Count;
356 if (0 != (uint8_t)(XXConstraint->Indicator & DRM_COUNT_CONSTRAINT)) { /* Have count restrict? */
359 if (XXConstraint->Count <= 0)
    [all...]
  /external/bison/data/
yacc.c 584 /* Copy COUNT objects from SRC to DST. The source and destination do
588 # define YYCOPY(Dst, Src, Count) \
589 __builtin_memcpy (Dst, Src, (Count) * sizeof (*(Src)))
591 # define YYCOPY(Dst, Src, Count) \
595 for (yyi = 0; yyi < (Count); yyi++) \
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
Store.h 165 /// If the StoreManager supports it, increment the reference count of
169 /// If the StoreManager supports it, decrement the reference count of
170 /// the specified Store object. If the reference count hits 0, the memory
184 /// \param[in] Count The current block count. Used to conjure
196 const Expr *E, unsigned Count,
  /external/clang/test/CXX/temp/temp.decls/temp.variadic/
metafunctions.cpp 19 namespace Count {
21 struct count { struct in namespace:Count
22 static const unsigned value = 1 + count<Tail...>::value;
26 struct count<T> { struct in namespace:Count
30 int check1[count<int>::value == 1? 1 : -1];
31 int check2[count<float, double>::value == 2? 1 : -1];
32 int check3[count<char, signed char, unsigned char>::value == 3? 1 : -1];
36 template<typename ...> struct count;
39 struct count<Head, Tail...> { struct in namespace:CountWithPackExpansion
40 static const unsigned value = 1 + count<Tail...>::value
44 struct count<> { struct in namespace:CountWithPackExpansion
    [all...]
  /external/clang/test/CodeGenCXX/
predefined-expr.cpp 9 // CHECK: private unnamed_addr constant [57 x i8] c"void NonTypeTemplateParam<42>::size() const [Count = 42]\00"
407 template <int Count>
  /external/llvm/include/llvm/Object/
MachOFormat.h 243 uint32_t Count;
244 // Load command is followed by Count number of zero-terminated UTF8 strings,
  /external/llvm/unittests/ADT/
SmallStringTest.cpp 151 TEST_F(SmallStringTest, Count) {
153 EXPECT_EQ(2U, theString.count('l'));
154 EXPECT_EQ(1U, theString.count('o'));
155 EXPECT_EQ(0U, theString.count('z'));
156 EXPECT_EQ(0U, theString.count("helloworld"));
157 EXPECT_EQ(1U, theString.count("hello"));
158 EXPECT_EQ(1U, theString.count("ello"));
159 EXPECT_EQ(0U, theString.count("zz"));
  /external/llvm/utils/TableGen/
DAGISelMatcherGen.cpp 659 unsigned Count = 0;
661 ++Count;
664 Count += numNodesThatMayLoadOrStore(N->getChild(i), CGP);
666 return Count;
    [all...]
  /external/llvm/lib/Analysis/
MemoryDependenceAnalysis.cpp 606 int Count = -1) {
607 if (Count == -1) Count = Cache.size();
608 if (Count == 0) return;
610 for (unsigned i = 1; i != unsigned(Count); ++i)
    [all...]
  /external/llvm/lib/IR/
Core.cpp 560 unsigned Count) {
562 makeArrayRef(unwrap<Value>(Vals, Count), Count)));
565 LLVMValueRef LLVMMDNode(LLVMValueRef *Vals, unsigned Count) {
566 return LLVMMDNodeInContext(LLVMGetGlobalContext(), Vals, Count);
680 unsigned Count, LLVMBool Packed) {
681 Constant **Elements = unwrap<Constant>(ConstantVals, Count);
682 return wrap(ConstantStruct::getAnon(*unwrap(C), makeArrayRef(Elements, Count),
696 LLVMValueRef LLVMConstStruct(LLVMValueRef *ConstantVals, unsigned Count,
698 return LLVMConstStructInContext(LLVMGetGlobalContext(), ConstantVals, Count,
    [all...]
  /external/clang/lib/Format/
Format.cpp 311 Whitespaces(Whitespaces), Count(0) {}
    [all...]
  /external/llvm/lib/CodeGen/
RegAllocGreedy.cpp 203 unsigned Count = 0;
208 Count++;
210 return Count;
    [all...]
  /external/ppp/pppd/plugins/radius/etc/
dictionary.ascend 66 ATTRIBUTE Ascend-Base-Channel-Count 172 integer
130 ATTRIBUTE Ascend-Inc-Channel-Count 236 integer
131 ATTRIBUTE Ascend-Dec-Channel-Count 237 integer
  /external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime/
BaseRecognizer.cs 214 state.syntaxErrors++; // don't count spurious
322 * separate count. Does not count the spurious errors found between
    [all...]
  /external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime/
BaseRecognizer.cs 236 state.syntaxErrors++; // don't count spurious
375 * separate count. Does not count the spurious errors found between
    [all...]
  /external/v8/test/mjsunit/
debug-compile-event.js 52 // Count the events.
debug-script.js 35 // Count script types.

Completed in 579 milliseconds

1 2 3 4 5 6 7 891011>>