OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:CCI
(Results
1 - 2
of
2
) sorted by null
/external/clang/lib/StaticAnalyzer/Core/
CheckerManager.cpp
62
CachedDeclCheckersMapTy::iterator
CCI
= CachedDeclCheckersMap.find(DeclKind);
63
if (
CCI
!= CachedDeclCheckersMap.end()) {
64
checkers = &(
CCI
->second);
766
CachedStmtCheckersMapTy::iterator
CCI
= CachedStmtCheckersMap.find(Key);
767
if (
CCI
!= CachedStmtCheckersMap.end())
768
return
CCI
->second;
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/
InstructionsTest.cpp
729
auto
CCI
= const_cast<const SwitchInst *>(SI)->case_begin();
731
ASSERT_NE(
CCI
, SI->case_end());
732
EXPECT_EQ(1,
CCI
->getCaseValue()->getSExtValue());
733
EXPECT_EQ(BB1.get(),
CCI
->getCaseSuccessor());
734
EXPECT_EQ(2, (
CCI
+ 1)->getCaseValue()->getSExtValue());
735
EXPECT_EQ(BB2.get(), (
CCI
+ 1)->getCaseSuccessor());
736
EXPECT_EQ(3, (
CCI
+ 2)->getCaseValue()->getSExtValue());
737
EXPECT_EQ(BB3.get(), (
CCI
+ 2)->getCaseSuccessor());
738
EXPECT_EQ(
CCI
+ 1, std::next(
CCI
));
[
all
...]
Completed in 119 milliseconds