Searched defs:FA (Results 1 - 10 of 10) sorted by relevance

/external/clang/test/CXX/special/class.inhctor/
H A Dp4.cpp14 friend class FA;
36 struct FA : A { struct in inherits:A
39 FA fa0{X<0>{}};
40 FA fa1{X<1>{}}; // expected-error {{calling a protected constructor}}
41 FA fa2{X<2>{}}; // expected-error {{calling a private constructor}}
/external/clang/test/Parser/
H A Dcxx-using-declaration.cpp5 void FA() {} function in namespace:A
10 using A::FA;
16 FA();
/external/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITMultipleModuleTest.cpp87 // Module A { Function FA },
89 // execute FA then FB
94 Function *FA, *FB; local
95 createTwoModuleCase(A, FA, B, FB);
100 uint64_t ptr = TheJIT->getFunctionAddress(FA->getName().str());
107 // Module A { Function FA },
109 // execute FB then FA
114 Function *FA, *FB; local
115 createTwoModuleCase(A, FA, B, FB);
124 ptr = TheJIT->getFunctionAddress(FA
135 Function *FA, *FB; local
156 Function *FA, *FB; local
203 Function *FA, *FB; local
241 Function *FA, *FB, *FC; local
266 Function *FA, *FB, *FC; local
291 Function *FA, *FB, *FC; local
316 Function *FA, *FB, *FC; local
341 Function *FA, *FB1, *FB2; local
362 Function *FA, *FB1, *FB2; local
383 Function *FA, *FB1, *FB2; local
[all...]
H A DMCJITTestBase.h186 // Module A { Extern FB1, Function FA which calls FB1 },
187 // Module B { Extern FA, Function FB1, Function FB2 which calls FA },
188 void createCrossModuleRecursiveCase(std::unique_ptr<Module> &A, Function *&FA, argument
199 // Define FA in A (with a call to FB1).
200 FA = insertAccumulateFunction(A.get(), FB1Extern, "FA");
202 // Declare FA in B (as an external)
203 Function *FAExtern = insertExternalReferenceToFunction(B.get(), FA);
205 // Define FB2 in B (with a call to FA)
213 createThreeModuleChainedCallsCase(std::unique_ptr<Module> &A, Function *&FA, std::unique_ptr<Module> &B, Function *&FB, std::unique_ptr<Module> &C, Function *&FC) argument
232 createTwoModuleCase(std::unique_ptr<Module> &A, Function *&FA, std::unique_ptr<Module> &B, Function *&FB) argument
243 createTwoModuleExternCase(std::unique_ptr<Module> &A, Function *&FA, std::unique_ptr<Module> &B, Function *&FB) argument
257 createThreeModuleCase(std::unique_ptr<Module> &A, Function *&FA, std::unique_ptr<Module> &B, Function *&FB, std::unique_ptr<Module> &C, Function *&FC) argument
[all...]
/external/clang/lib/Edit/
H A DEditedSource.cpp32 FileEditsTy::iterator FA = getActionForOffset(Offs); local
33 if (FA != FileEdits.end()) {
34 if (FA->first != Offs)
69 FileEdit &FA = FileEdits[Offs]; local
70 if (FA.Text.empty()) {
71 FA.Text = copyString(text);
76 FA.Text = copyString(Twine(text) + FA.Text);
78 FA.Text = copyString(Twine(FA
98 FileEdit &FA = I->second; local
115 FileEdit &FA = I->second; local
152 FileEdit &FA = I->second; local
170 FileEdit &FA = I->second; local
195 FileEdit &FA = I->second; local
391 FileEdit &FA = I->second; local
[all...]
/external/llvm/lib/MC/
H A DMachObjectWriter.cpp748 const MCFragment *FA = Asm.getSymbolData(SA).getFragment(); local
751 if (!FA)
754 A_Base = FA->getAtom();
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineMulDivRem.cpp818 UDivFoldAction(FoldUDivOperandCb FA, Value *InputOperand) argument
819 : FoldAction(FA), OperandToFold(InputOperand), FoldResult(nullptr) {}
820 UDivFoldAction(FoldUDivOperandCb FA, Value *InputOperand, size_t SLHS) argument
821 : FoldAction(FA), OperandToFold(InputOperand), SelectLHSIdx(SLHS) {}
/external/pcre/dist/sljit/
H A DsljitNativePPC_common.c118 #define FA(fa) ((fa) << 16) macro
1862 FAIL_IF(push_inst(compiler, FSUB | FD(dst_r) | FA(TMP_FREG1) | FB(TMP_FREG2)));
1887 return push_inst(compiler, FCMPU | CRD(4) | FA(src1) | FB(src2));
1998 FAIL_IF(push_inst(compiler, SELECT_FOP(op, FADDS, FADD) | FD(dst_r) | FA(src1) | FB(src2)));
2002 FAIL_IF(push_inst(compiler, SELECT_FOP(op, FSUBS, FSUB) | FD(dst_r) | FA(src1) | FB(src2)));
2006 FAIL_IF(push_inst(compiler, SELECT_FOP(op, FMULS, FMUL) | FD(dst_r) | FA(src1) | FC(src2) /* FMUL use FC as src2 */));
2010 FAIL_IF(push_inst(compiler, SELECT_FOP(op, FDIVS, FDIV) | FD(dst_r) | FA(src1) | FB(src2)));
/external/llvm/lib/MC/MCParser/
H A DAsmParser.cpp1995 MCAsmMacroParameter FA; local
1998 if (parseIdentifier(FA.Name)) {
2014 if (NamedParametersFound && FA.Name.empty()) {
2021 if (parseMacroArgument(FA.Value, Vararg))
2025 if (!FA.Name.empty()) {
2028 if (M->Parameters[FAI].Name == FA.Name)
2034 "parameter named '" + FA.Name + "' does not exist for macro '" +
2041 if (!FA.Value.empty()) {
2044 A[PI] = FA.Value;
/external/clang/lib/Sema/
H A DSemaDeclCXX.cpp1459 if (FinalAttr *FA = CXXBaseDecl->getAttr<FinalAttr>()) {
1462 << FA->isSpelledAsSealed();
1464 << CXXBaseDecl->getDeclName() << FA->getRange();
1849 } else if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
1850 Diag(FA->getLocation(),
1852 << (FA->isSpelledAsSealed() ? "sealed" : "final")
1870 if (FinalAttr *FA = D->getAttr<FinalAttr>()) {
1871 Diag(FA->getLocation(),
1873 << (FA->isSpelledAsSealed() ? "sealed" : "final")
1874 << FixItHint::CreateRemoval(FA
1896 FinalAttr *FA = Old->getAttr<FinalAttr>(); local
[all...]

Completed in 4773 milliseconds