Home
last modified time | relevance | path

Searched refs:CCI (Results 1 – 25 of 39) sorted by relevance

12

/external/llvm-project/clang-tools-extra/clangd/
DDumpAST.cpp167 std::string getKind(const CXXCtorInitializer *CCI) { in getKind() argument
168 if (CCI->isBaseInitializer()) in getKind()
170 if (CCI->isDelegatingInitializer()) in getKind()
172 if (CCI->isAnyMemberInitializer()) in getKind()
285 std::string getDetail(const CXXCtorInitializer *CCI) { in getDetail() argument
286 if (FieldDecl *FD = CCI->getAnyMember()) in getDetail()
288 if (TypeLoc TL = CCI->getBaseClassLoc()) in getDetail()
359 bool TraverseConstructorInitializer(CXXCtorInitializer *CCI) { in TraverseConstructorInitializer() argument
360 return !CCI || traverseNode("constructor initializer", CCI, [&] { in TraverseConstructorInitializer()
361 Base::TraverseConstructorInitializer(CCI); in TraverseConstructorInitializer()
[all …]
DFindTarget.cpp660 void add(const CXXCtorInitializer *CCI, RelSet Flags) { in add()
661 if (!CCI) in add()
663 debug(*CCI, Flags); in add()
665 if (CCI->isAnyMemberInitializer()) in add()
666 add(CCI->getAnyMember(), Flags); in add()
703 else if (const CXXCtorInitializer *CCI = N.get<CXXCtorInitializer>()) in allTargetDecls() local
704 Finder.add(CCI, Flags); in allTargetDecls()
1132 if (const CXXCtorInitializer *CCI = N.get<CXXCtorInitializer>()) { in explicitReference() local
1135 if (CCI->isAnyMemberInitializer()) { in explicitReference()
1137 CCI->getMemberLocation(), in explicitReference()
[all …]
DSelection.cpp701 } else if (const auto *CCI = N.get<CXXCtorInitializer>()) { in earlySourceRange() local
703 return CCI->getMemberLocation(); in earlySourceRange()
/external/llvm-project/llvm/unittests/IR/
DInstructionsTest.cpp813 auto CCI = const_cast<const SwitchInst *>(SI)->case_begin(); in TEST() local
815 ASSERT_NE(CCI, SI->case_end()); in TEST()
816 EXPECT_EQ(1, CCI->getCaseValue()->getSExtValue()); in TEST()
817 EXPECT_EQ(BB1.get(), CCI->getCaseSuccessor()); in TEST()
818 EXPECT_EQ(2, (CCI + 1)->getCaseValue()->getSExtValue()); in TEST()
819 EXPECT_EQ(BB2.get(), (CCI + 1)->getCaseSuccessor()); in TEST()
820 EXPECT_EQ(3, (CCI + 2)->getCaseValue()->getSExtValue()); in TEST()
821 EXPECT_EQ(BB3.get(), (CCI + 2)->getCaseSuccessor()); in TEST()
822 EXPECT_EQ(CCI + 1, std::next(CCI)); in TEST()
823 EXPECT_EQ(CCI + 2, std::next(CCI, 2)); in TEST()
[all …]
/external/llvm-project/llvm/unittests/Transforms/Utils/
DCloningTest.cpp683 ClonedCodeInfo CCI; in TEST() local
684 CloneFunctionInto(ImplFunction, DeclFunction, VMap, true, Returns, "", &CCI); in TEST()
687 EXPECT_FALSE(CCI.ContainsCalls); in TEST()
688 EXPECT_FALSE(CCI.ContainsDynamicAllocas); in TEST()
714 ClonedCodeInfo CCI; in TEST() local
715 CloneFunctionInto(DeclFunction, ImplFunction, VMap, true, Returns, "", &CCI); in TEST()
718 EXPECT_TRUE(CCI.ContainsCalls); in TEST()
719 EXPECT_TRUE(CCI.ContainsDynamicAllocas); in TEST()
763 ClonedCodeInfo CCI; in TEST() local
764 CloneFunctionInto(NewFunc, OldFunc, VMap, true, Returns, "", &CCI); in TEST()
/external/clang/lib/AST/
DASTTypeTraits.cpp140 if (const CXXCtorInitializer *CCI = get<CXXCtorInitializer>()) in getSourceRange() local
141 return CCI->getSourceRange(); in getSourceRange()
/external/llvm-project/clang/lib/StaticAnalyzer/Core/
DCheckerManager.cpp82 CachedDeclCheckersMapTy::iterator CCI = CachedDeclCheckersMap.find(DeclKind); in runCheckersOnASTDecl() local
83 if (CCI != CachedDeclCheckersMap.end()) { in runCheckersOnASTDecl()
84 checkers = &(CCI->second); in runCheckersOnASTDecl()
896 CachedStmtCheckersMapTy::iterator CCI = CachedStmtCheckersMap.find(Key); in getCachedStmtCheckersFor() local
897 if (CCI != CachedStmtCheckersMap.end()) in getCachedStmtCheckersFor()
898 return CCI->second; in getCachedStmtCheckersFor()
/external/clang/lib/StaticAnalyzer/Core/
DCheckerManager.cpp62 CachedDeclCheckersMapTy::iterator CCI = CachedDeclCheckersMap.find(DeclKind); in runCheckersOnASTDecl() local
63 if (CCI != CachedDeclCheckersMap.end()) { in runCheckersOnASTDecl()
64 checkers = &(CCI->second); in runCheckersOnASTDecl()
766 CachedStmtCheckersMapTy::iterator CCI = CachedStmtCheckersMap.find(Key); in getCachedStmtCheckersFor() local
767 if (CCI != CachedStmtCheckersMap.end()) in getCachedStmtCheckersFor()
768 return CCI->second; in getCachedStmtCheckersFor()
/external/llvm-project/clang/lib/AST/
DASTTypeTraits.cpp171 if (const CXXCtorInitializer *CCI = get<CXXCtorInitializer>()) in getSourceRange() local
172 return CCI->getSourceRange(); in getSourceRange()
/external/clang/test/Index/
Dcomplete-objc-message.m310 // RUN: c-index-test -code-completion-at=%s:134:6 %s | FileCheck -check-prefix=CHECK-CCI %s
311 // CHECK-CCI: ObjCInstanceMethodDecl:{ResultType void}{TypedText method1} (37)
312 // CHECK-CCI: ObjCInstanceMethodDecl:{ResultType void}{TypedText method2} (35)
330 // RUN: c-index-test -code-completion-at=%s:135:5 %s | FileCheck -check-prefix=CHECK-CCI %s
/external/llvm-project/clang/test/Index/
Dcomplete-objc-message.m310 // RUN: c-index-test -code-completion-at=%s:134:6 %s | FileCheck -check-prefix=CHECK-CCI %s
311 // CHECK-CCI: ObjCInstanceMethodDecl:{ResultType void}{TypedText method1} (37)
312 // CHECK-CCI: ObjCInstanceMethodDecl:{ResultType void}{TypedText method2} (35)
330 // RUN: c-index-test -code-completion-at=%s:135:5 %s | FileCheck -check-prefix=CHECK-CCI %s
/external/arm-trusted-firmware/docs/about/
Dfeatures.rst21 Generic Interrupt Controller (GIC), Cache Coherent Interconnect (CCI),
/external/arm-trusted-firmware/docs/perf/
Dpsci-performance-juno.rst212 on power on (for example, no need to enter CCI coherency)
/external/llvm-project/llvm/lib/Target/ARM/Disassembler/
DARMDisassembler.cpp829 MCInst::iterator CCI = MI.begin(); in AddThumbPredicate() local
830 for (unsigned i = 0; i < NumOps; ++i, ++CCI) { in AddThumbPredicate()
831 if (OpInfo[i].isPredicate() || CCI == MI.end()) break; in AddThumbPredicate()
835 CCI = MI.insert(CCI, MCOperand::createImm(CC)); in AddThumbPredicate()
836 ++CCI; in AddThumbPredicate()
838 MI.insert(CCI, MCOperand::createReg(0)); in AddThumbPredicate()
840 MI.insert(CCI, MCOperand::createReg(ARM::CPSR)); in AddThumbPredicate()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/Disassembler/
DARMDisassembler.cpp828 MCInst::iterator CCI = MI.begin(); in AddThumbPredicate() local
829 for (unsigned i = 0; i < NumOps; ++i, ++CCI) { in AddThumbPredicate()
830 if (OpInfo[i].isPredicate() || CCI == MI.end()) break; in AddThumbPredicate()
834 CCI = MI.insert(CCI, MCOperand::createImm(CC)); in AddThumbPredicate()
835 ++CCI; in AddThumbPredicate()
837 MI.insert(CCI, MCOperand::createReg(0)); in AddThumbPredicate()
839 MI.insert(CCI, MCOperand::createReg(ARM::CPSR)); in AddThumbPredicate()
/external/arm-trusted-firmware/docs/plat/arm/fvp/
Dindex.rst115 - ``FVP_CCI`` : The CCI driver is selected. This is the default
/external/arm-trusted-firmware/docs/
Dchange-log.rst2995 right interconnect driver, CCI or CCN, for the platform.
3194 both CCI-400 & CCI-500 IPs. Arm platforms ports have been migrated to this
3195 common driver. The standalone CCI-400 driver has been deprecated.
3473 - Refactored the CCI-400 driver to not have dependency on platform code.
/external/llvm-project/clang/lib/Sema/
DSemaOpenMP.cpp3654 auto CCI = CurComponents.rbegin(); in VisitMemberExpr() local
3658 if (CCI->getAssociatedExpression()->getStmtClass() != in VisitMemberExpr()
3665 CCI->getAssociatedExpression()))) in VisitMemberExpr()
3668 const Decl *CCD = CCI->getAssociatedDeclaration(); in VisitMemberExpr()
3674 std::advance(CCI, 1); in VisitMemberExpr()
3675 if (CCI == CCE) in VisitMemberExpr()
/external/arm-trusted-firmware/docs/getting_started/
Dporting-guide.rst1212 the CCI slave interface corresponding to the cluster that includes the
1762 CCI slave interface corresponding to the cluster that includes the primary
/external/arm-trusted-firmware/docs/design/
Dfirmware-design.rst1429 turning off CCI coherency during a cluster power down.
/external/cpuinfo/test/dmesg/
Dmeizu-pro-6.log1597 [ 1.690143] (8)[1:swapper/0][xxxx1] CCI, vboot = 48, VBOOT = 48
Dmeizu-pro-6s.log1646 [ 1.930896] (8)[1:swapper/0][xxxx1] CCI, vboot = 48, VBOOT = 48
Dhuawei-p9-lite.log156 [ 0.000000s][pid:1,cpu0,swapper/0]Hisilicon CCI Extra driver probed
/external/cldr/tools/java/org/unicode/cldr/util/data/
DApproximateWidth.txt6162 2DAA..2DAE; 8; # ETHIOPIC SYLLABLE CCI..ETHIOPIC SYLLABLE CCO
/external/cldr/tools/java/org/unicode/cldr/util/data/external/
D2013-1_UNLOCODE_CodeListPart3.csv4031 ,"RO","CCI","Clinceni","Clinceni","B","--3-----","RL","0507",,"4422N 02557E",
9301 ,"UA","CCI","Chop-Chierna","Chop-Chierna",,"-2------","AI","9501",,,
11836 ,"US","CCI","Calhoun City","Calhoun City","MS","--3-----","RQ","9307",,,

12