Searched refs:CA (Results 1 - 25 of 89) sorted by relevance

1234

/external/llvm/unittests/LineEditor/
H A DLineEditor.cpp62 LineEditor::CompletionAction CA = LE->getCompletionAction("", 0); local
63 EXPECT_EQ(LineEditor::CompletionAction::AK_Insert, CA.Kind);
64 EXPECT_EQ("foo", CA.Text);
68 CA = LE->getCompletionAction("", 0);
69 EXPECT_EQ(LineEditor::CompletionAction::AK_ShowCompletions, CA.Kind);
70 ASSERT_EQ(2u, CA.Completions.size());
71 ASSERT_EQ("int foo()", CA.Completions[0]);
72 ASSERT_EQ("int bar()", CA.Completions[1]);
80 CA = LE->getCompletionAction("", 0);
81 EXPECT_EQ(LineEditor::CompletionAction::AK_Insert, CA
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/IPO/
H A DInlineAlways.cpp37 InlineCostAnalyzer CA; member in class:__anon18895::AlwaysInliner
45 return CA.getInlineCost(CS, NeverInline);
48 return CA.getInlineFudgeFactor(CS);
51 CA.resetCachedCostInfo(Caller);
54 CA.growCachedCostInfo(Caller, Callee);
61 CA.clear();
78 CA.setTargetData(getAnalysisIfAvailable<TargetData>());
H A DInlineSimple.cpp35 InlineCostAnalyzer CA; member in class:__anon18896::SimpleInliner
45 return CA.getInlineCost(CS, NeverInline);
48 return CA.getInlineFudgeFactor(CS);
51 CA.resetCachedCostInfo(Caller);
54 CA.growCachedCostInfo(Caller, Callee);
58 CA.clear();
79 CA.setTargetData(getAnalysisIfAvailable<TargetData>());
/external/wpa_supplicant_8/hs20/server/ca/
H A Docsp-responder.sh3 openssl ocsp -index demoCA/index.txt -port 8888 -nmin 5 -rsigner ocsp.pem -rkey ocsp.key -CA demoCA/cacert.pem -text
H A Docsp-responder-ica.sh3 openssl ocsp -index demoCA/index.txt -port 8888 -nmin 5 -rsigner demoCA/cacert.pem -rkey demoCA/private/cakey-plain.pem -CA demoCA/cacert.pem -resp_no_certs -text
/external/libcxx/test/libcxx/utilities/function.objects/func.require/
H A Dbullet_7.pass.cpp254 typedef A const CA; typedef
260 runTestCase< R(CA&), 1, ConstCaster >();
261 runTestCase< R(CA&, CA&), 2, ConstCaster >();
262 runTestCase< R(CA&, CA&, CA&), 3, ConstCaster >();
292 runFunctorTestCase<R(CA&), 1, LValueCaster, CC>();
293 runFunctorTestCase<R(CA&) const, 1, ConstCaster, CC>();
294 runFunctorTestCase<R(CA
[all...]
/external/llvm/lib/Transforms/Utils/
H A DCtorUtils.cpp41 Constant *CA = ConstantArray::get(ATy, CAList); local
44 if (CA->getType() == OldCA->getType()) {
45 GCL->setInitializer(CA);
51 new GlobalVariable(CA->getType(), GCL->isConstant(), GCL->getLinkage(),
52 CA, "", GCL->getThreadLocalMode());
71 ConstantArray *CA = cast<ConstantArray>(GV->getInitializer());
73 Result.reserve(CA->getNumOperands());
74 for (User::op_iterator i = CA->op_begin(), e = CA->op_end(); i != e; ++i) {
95 ConstantArray *CA
[all...]
/external/clang/test/CXX/drs/
H A Ddr10xx.cpp21 typedef const A CA; typedef in namespace:dr1048
29 case 3: return CA();
/external/libcxx/test/std/utilities/utility/utility.swap/
H A Dswap_array.pass.cpp88 using CA = CopyOnly[42];
91 static_assert(can_swap<CA&>(), "");
95 CA ca;
/external/clang/test/SemaCXX/
H A Dattr-flatten.cpp30 struct CA { struct
H A Dattr-no-split-stack.cpp30 struct CA { struct
/external/libcxx/test/std/utilities/allocator.adaptor/allocator.adaptor.members/
H A Dconstruct_pair.pass.cpp42 Alloc CA(P);
43 SA A(CA);
45 assert(checkConstruct<>(ptr->first, UA_AllocArg, CA));
46 assert(checkConstruct<>(ptr->second, UA_AllocLast, CA));
50 >(CA, ptr)));
64 Alloc CA(P);
65 SA A(CA);
67 assert(checkConstruct<>(ptr->first, UA_AllocArg, CA));
72 >(CA, ptr)));
H A Dconstruct_pair_const_lvalue_pair.pass.cpp46 Alloc CA(P);
47 SA A(CA);
50 assert(checkConstruct<int&>(ptr->first, UA_AllocArg, CA));
51 assert(checkConstruct<int const&>(ptr->second, UA_AllocLast, CA));
55 >(CA, ptr)));
73 Alloc CA(P);
74 SA A(CA);
77 assert(checkConstruct<int const&>(ptr->first, UA_AllocArg, CA));
82 >(CA, ptr)));
H A Dconstruct_pair_piecewise.pass.cpp46 Alloc CA(P);
47 SA A(CA);
51 assert(checkConstruct<int&>(ptr->first, UA_AllocArg, CA));
52 assert(checkConstruct<int const&&>(ptr->second, UA_AllocLast, CA));
56 >(CA, ptr)));
73 Alloc CA(P);
74 SA A(CA);
78 assert(checkConstruct<int&&>(ptr->first, UA_AllocArg, CA));
83 >(CA, ptr)));
H A Dconstruct_pair_rvalue.pass.cpp46 Alloc CA(P);
47 SA A(CA);
50 assert(checkConstruct<int&>(ptr->first, UA_AllocArg, CA));
51 assert(checkConstruct<int const&&>(ptr->second, UA_AllocLast, CA));
55 >(CA, ptr)));
73 Alloc CA(P);
74 SA A(CA);
77 assert(checkConstruct<int&&>(ptr->first, UA_AllocArg, CA));
82 >(CA, ptr)));
H A Dconstruct_pair_values.pass.cpp45 Alloc CA(P);
46 SA A(CA);
48 assert(checkConstruct<int&>(ptr->first, UA_AllocArg, CA));
49 assert(checkConstruct<int const&&>(ptr->second, UA_AllocLast, CA));
53 >(CA, ptr)));
70 Alloc CA(P);
71 SA A(CA);
73 assert(checkConstruct<int&&>(ptr->first, UA_AllocArg, CA));
78 >(CA, ptr)));
/external/libphonenumber/libphonenumber/test/com/google/i18n/phonenumbers/
H A DRegionCode.java36 static final String CA = "CA"; field in class:RegionCode
/external/ltp/testcases/commands/tpm-tools/tpmtoken/tpmtoken_import/
H A Dtpmtoken_import_openssl.cnf37 dir = /usr/share/ssl/CA # Where everything is kept
43 certificate = $dir/cacert.pem # The CA certificate
69 # For type CA, the listed attributes must be the same, and the optional
73 # For the CA policy
162 # requires this to avoid interpreting an end user certificate as a CA.
164 basicConstraints=CA:FALSE
212 basicConstraints = CA:FALSE
218 # Extensions for a typical CA
229 #basicConstraints = critical,CA:true
231 basicConstraints = CA
[all...]
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DCallEvent.h459 static bool classof(const CallEvent *CA) { argument
460 return CA->getKind() >= CE_BEG_FUNCTION_CALLS &&
461 CA->getKind() <= CE_END_FUNCTION_CALLS;
496 static bool classof(const CallEvent *CA) { argument
497 return CA->getKind() == CE_Function;
603 static bool classof(const CallEvent *CA) { argument
604 return CA->getKind() == CE_Block;
639 static bool classof(const CallEvent *CA) { argument
640 return CA->getKind() >= CE_BEG_CXX_INSTANCE_CALLS &&
641 CA
680 classof(const CallEvent *CA) argument
719 classof(const CallEvent *CA) argument
768 classof(const CallEvent *CA) argument
822 classof(const CallEvent *CA) argument
980 classof(const CallEvent *CA) argument
[all...]
/external/curl/tests/certs/scripts/
H A Dgenserv.sh38 echo No CA prefix
42 echo No CA certficate file $CAPREFIX-ca.caert
84 echo "openssl x509 -set_serial $SERIAL -extfile $PREFIX-sv.prm -days $DURATION -CA $CAPREFIX-ca.cacert -CAkey $CAPREFIX-ca.key -in $PREFIX-sv.csr -req -text -nameopt multiline -sha1 > $PREFIX-sv.crt "
86 $OPENSSL x509 -set_serial $SERIAL -extfile $PREFIX-sv.prm -days $DURATION -CA $CAPREFIX-ca.cacert -CAkey $CAPREFIX-ca.key -in $PREFIX-sv.csr -req -text -nameopt multiline -sha1 > $PREFIX-sv.crt
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DBasicInliner.cpp67 InlineCostAnalyzer CA; member in struct:llvm::BasicInlinerImpl
110 InlineCost IC = CA.getInlineCost(CS, NeverInline);
/external/clang/test/CXX/class/class.union/
H A Dp1.cpp31 CopyAssign& operator=(CopyAssign& CA) { abort(); } argument
/external/llvm/lib/Analysis/
H A DInlineCost.cpp960 CallAnalyzer CA(TTI, ACT, PSI, *F, InlineConstants::IndirectCallThreshold,
962 if (CA.analyzeCall(CS)) {
965 Cost -= std::max(0, CA.getThreshold() - CA.getCost());
1506 CallAnalyzer CA(CalleeTTI, ACT, PSI, *Callee, DefaultThreshold, CS);
1507 bool ShouldInline = CA.analyzeCall(CS);
1509 DEBUG(CA.dump());
1512 if (!ShouldInline && CA.getCost() < CA.getThreshold())
1514 if (ShouldInline && CA
[all...]
/external/cblas/testing/
H A Dc_cblat3.f1403 CHARACTER*14 CRC, CS, CU, CA, CD local in subroutine:CPRCN3
1416 CA = ' CblasNoTrans'
1418 CA = ' CblasTrans'
1420 CA = 'CblasConjTrans'
1433 WRITE(NOUT, FMT = 9994)CA, CD, M, N, ALPHA, LDA, LDB
1789 CHARACTER*14 CRC, CU, CA local in subroutine:CPRCN4
1797 CA = ' CblasNoTrans'
1799 CA = ' CblasTrans'
1801 CA = 'CblasConjTrans'
1808 WRITE(NOUT, FMT = 9995)NC, SNAME, CRC, CU, CA
1823 CHARACTER*14 CRC, CU, CA local in subroutine:CPRCN6
2242 CHARACTER*14 CRC, CU, CA local in subroutine:CPRCN5
2277 CHARACTER*14 CRC, CU, CA local in subroutine:CPRCN7
[all...]
H A Dc_zblat3.f1404 CHARACTER*14 CRC, CS, CU, CA, CD local in subroutine:ZPRCN3
1417 CA = ' CblasNoTrans'
1419 CA = ' CblasTrans'
1421 CA = 'CblasConjTrans'
1434 WRITE(NOUT, FMT = 9994)CA, CD, M, N, ALPHA, LDA, LDB
1790 CHARACTER*14 CRC, CU, CA local in subroutine:ZPRCN4
1798 CA = ' CblasNoTrans'
1800 CA = ' CblasTrans'
1802 CA = 'CblasConjTrans'
1809 WRITE(NOUT, FMT = 9995)NC, SNAME, CRC, CU, CA
1824 CHARACTER*14 CRC, CU, CA local in subroutine:ZPRCN6
2243 CHARACTER*14 CRC, CU, CA local in subroutine:ZPRCN5
2278 CHARACTER*14 CRC, CU, CA local in subroutine:ZPRCN7
[all...]

Completed in 889 milliseconds

1234