Searched refs:CAT (Results 1 - 25 of 30) sorted by relevance

12

/external/valgrind/main/none/tests/amd64/
H A Dxacq_xrel.c12 #define CAT(_x,_y) CAT2(_x,_y) macro
15 void CAT(do_,_insn) ( void ) \
52 void CAT(do_,_insn) ( void ) \
/external/chromium_org/third_party/icu/source/tools/tzcode/
H A Dtz.alias33 CAT Africa/Harare
H A Dicuzones48 Link Africa/Harare CAT
/external/eigen/bench/btl/libs/BLAS/
H A Dblas_interface.hh51 #define CAT(A,B) CAT2(A,B) macro
H A Dblas_interface_impl.hh2 #define BLAS_FUNC(NAME) CAT(CAT(SCALAR_PREFIX,NAME),_)
/external/clang/test/Parser/
H A Dcxx-template-decl.cpp183 #define CAT(x,y) XCAT(x,y)
184 #define sassert(_b_) bool_<(_b_)>::type CAT(var, __LINE__);
/external/icu/icu4c/source/tools/tzcode/
H A Dicuzones48 Link Africa/Maputo CAT
/external/clang/lib/Analysis/
H A DScanfFormatString.cpp421 if (const ConstantArrayType *CAT = Ctx.getAsConstantArrayType(RawQT)) {
422 if (CAT->getSizeModifier() == ArrayType::Normal)
424 CAT->getSize().getZExtValue() - 1,
/external/clang/lib/CodeGen/
H A DCGExprConstant.cpp842 const ConstantArrayType *CAT = cast<ConstantArrayType>(T); local
846 Str.resize(CAT->getSize().getZExtValue(), '\0');
1169 const ArrayType *CAT = Context.getAsArrayType(DestType); local
1180 CAT->getElementType(), CGF);
1188 CAT->getElementType(), CGF);
1262 if (const ConstantArrayType *CAT =
1264 QualType ElementTy = CAT->getElementType();
1267 for (uint64_t I = 0, E = CAT->getSize().getZExtValue(); I != E; ++I) {
1449 if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(T)) {
1453 QualType ElementTy = CAT
[all...]
H A DCGExprCXX.cpp505 while (const ConstantArrayType *CAT
507 type = CAT->getElementType();
508 arraySizeMultiplier *= CAT->getSize();
779 if (const ConstantArrayType *CAT = dyn_cast_or_null<ConstantArrayType>(
784 InitListElements *= getContext().getConstantArrayElementCount(CAT);
H A DCGExpr.cpp599 if (const auto *CAT = dyn_cast<ConstantArrayType>(AT)) {
600 if (CAT->getSize().ugt(1))
638 if (const auto *CAT = dyn_cast<ConstantArrayType>(AT))
639 return CGF.Builder.getInt(CAT->getSize());
H A DCGDebugInfo.cpp1861 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty))
1862 Count = CAT->getSize().getZExtValue();
H A DCodeGenModule.cpp2723 const ConstantArrayType *CAT = Context.getAsConstantArrayType(E->getType()); local
2724 Str.resize(CAT->getSize().getZExtValue());
/external/clang/lib/AST/
H A DExprConstant.cpp122 const ConstantArrayType *CAT = local
124 Type = CAT->getElementType();
125 ArraySize = CAT->getSize().getZExtValue();
223 void addArrayUnchecked(const ConstantArrayType *CAT) { argument
229 MostDerivedType = CAT->getElementType();
230 MostDerivedArraySize = CAT->getSize().getZExtValue();
982 void addArray(EvalInfo &Info, const Expr *E, const ConstantArrayType *CAT) { argument
984 Designator.addArrayUnchecked(CAT);
2020 const ConstantArrayType *CAT = local
2022 assert(CAT
2037 const ConstantArrayType *CAT = local
[all...]
H A DASTContext.cpp1396 const ConstantArrayType *CAT) {
1398 Context.getTypeInfoInChars(CAT->getElementType());
1399 uint64_t Size = CAT->getSize().getZExtValue();
1414 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(T))
1415 return getConstantArrayInfoInChars(*this, CAT);
1472 const ConstantArrayType *CAT = cast<ConstantArrayType>(T); local
1474 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
1475 uint64_t Size = CAT->getSize().getZExtValue();
3930 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) {
3931 return getConstantArrayType(unqualElementType, CAT
1395 getConstantArrayInfoInChars(const ASTContext &Context, const ConstantArrayType *CAT) argument
[all...]
H A DMicrosoftMangle.cpp1776 if (const ConstantArrayType *CAT =
1778 Dimensions.push_back(CAT->getSize());
1779 ElementTy = CAT->getElementType();
/external/clang/lib/Sema/
H A DSemaExprObjC.cpp70 const ConstantArrayType *CAT = Context.getAsConstantArrayType(S->getType()); local
71 assert(CAT && "String literal not of constant array type!");
73 CAT->getElementType(), llvm::APInt(32, StrBuf.size() + 1),
74 CAT->getSizeModifier(), CAT->getIndexTypeCVRQualifiers());
H A DSemaExprMember.cpp1296 if (ObjCCategoryDecl *CAT = dyn_cast<ObjCCategoryDecl>(D))
1297 D = CAT->getClassInterface();
H A DSemaInit.cpp168 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT); local
184 if (StrLength > CAT->getSize().getZExtValue())
190 if (StrLength-1 > CAT->getSize().getZExtValue())
658 if (const ConstantArrayType *CAT =
660 maxElements = static_cast<int>(CAT->getSize().getZExtValue());
1389 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(arrayType)) {
1390 maxElements = CAT->getSize();
H A DSemaDeclObjC.cpp833 void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT, argument
844 for (const auto *Method : CAT->methods()) {
H A DSemaStmt.cpp2168 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(UnqAT))
2170 Context, CAT->getSize(), Context.getPointerDiffType(), RangeLoc);
H A DSemaChecking.cpp4238 if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(Ty)) {
4240 if (CAT->getSize().getSExtValue() <= 1)
H A DSemaExprCXX.cpp3979 if (const ConstantArrayType *CAT = Self.Context.getAsConstantArrayType(T))
3980 return CAT->getSize().getLimitedValue();
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1961 if (const ConstantArrayType* CAT = dyn_cast<ConstantArrayType>(AT))
1962 Size = CAT->getSize().getZExtValue();
/external/llvm/
H A Dconfigure758 CAT
7150 case $CAT in
7152 ac_cv_path_CAT="$CAT" # Let the user override the test with a path.
7173 CAT=$ac_cv_path_CAT
7174 if test -n "$CAT"; then
7175 { echo "$as_me:$LINENO: result: $CAT" >&5
7176 echo "${ECHO_T}$CAT" >&6; }
20311 CAT!$CAT$ac_delim

Completed in 1201 milliseconds

12