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

12

/external/openssh/
H A Dopensshd.init.in8 CAT=@CAT@
43 PID=`${CAT} ${PIDFILE}`
H A Dconfigure644 CAT
4571 case $CAT in
4573 ac_cv_path_CAT="$CAT" # Let the user override the test with a path.
4594 CAT=$ac_cv_path_CAT
4595 if test -n "$CAT"; then
4596 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CAT" >&5
4597 $as_echo "$CAT" >&6; }
/external/icu4c/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/lib/CodeGen/
H A DCGExprConstant.cpp880 const ConstantArrayType *CAT = cast<ConstantArrayType>(E->getType()); local
884 Str.resize(CAT->getSize().getZExtValue(), '\0');
1197 const ArrayType *CAT = Context.getAsArrayType(DestType); local
1208 CAT->getElementType(), CGF);
1216 CAT->getElementType(), CGF);
1290 if (const ConstantArrayType *CAT =
1292 QualType ElementTy = CAT->getElementType();
1295 for (uint64_t I = 0, E = CAT->getSize().getZExtValue(); I != E; ++I) {
1483 if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(T)) {
1487 QualType ElementTy = CAT
[all...]
H A DCGExprCXX.cpp601 while (const ConstantArrayType *CAT
603 type = CAT->getElementType();
604 arraySizeMultiplier *= CAT->getSize();
H A DCGExpr.cpp649 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) {
650 if (CAT->getSize().ugt(1))
688 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT))
689 return CGF.Builder.getInt(CAT->getSize());
H A DCodeGenModule.cpp2472 const ConstantArrayType *CAT = Context.getAsConstantArrayType(E->getType()); local
2473 Str.resize(CAT->getSize().getZExtValue());
2512 const ConstantArrayType *CAT = Context.getAsConstantArrayType(S->getType()); local
2513 Str.resize(CAT->getSize().getZExtValue());
H A DCGDebugInfo.cpp1632 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(Ty))
1633 Count = CAT->getSize().getZExtValue();
/external/kernel-headers/original/asm-mips/
H A Dasm.h22 #ifndef CAT
28 #define CAT(str1, str2) __CAT(str1, str2) macro
/external/clang/lib/AST/
H A DExprConstant.cpp104 const ConstantArrayType *CAT = local
106 Type = CAT->getElementType();
107 ArraySize = CAT->getSize().getZExtValue();
205 void addArrayUnchecked(const ConstantArrayType *CAT) { argument
211 MostDerivedType = CAT->getElementType();
212 MostDerivedArraySize = CAT->getSize().getZExtValue();
760 void addArray(EvalInfo &Info, const Expr *E, const ConstantArrayType *CAT) { argument
762 Designator.addArrayUnchecked(CAT);
1554 const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(ObjType); local
1555 assert(CAT
3762 const ConstantArrayType *CAT = local
3790 const ConstantArrayType *CAT = Info.Ctx.getAsConstantArrayType(E->getType()); local
[all...]
H A DASTContext.cpp1338 const ConstantArrayType *CAT = cast<ConstantArrayType>(T); local
1340 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
1341 uint64_t Size = CAT->getSize().getZExtValue();
3691 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT)) {
3692 return getConstantArrayType(unqualElementType, CAT->getSize(),
3693 CAT->getSizeModifier(), 0);
3994 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(ATy))
3995 return cast<ArrayType>(getConstantArrayType(NewEltTy, CAT->getSize(),
3996 CAT->getSizeModifier(),
3997 CAT
[all...]
H A DMicrosoftMangle.cpp1413 if (const ConstantArrayType *CAT =
1415 Dimensions.push_back(CAT->getSize());
1416 ElementTy = CAT->getElementType();
/external/clang/lib/Sema/
H A DSemaInit.cpp103 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT); local
119 if (StrLength > CAT->getSize().getZExtValue())
125 if (StrLength-1 > CAT->getSize().getZExtValue())
497 if (const ConstantArrayType *CAT =
499 maxElements = static_cast<int>(CAT->getSize().getZExtValue());
1183 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(arrayType)) {
1184 maxElements = CAT->getSize();
H A DSemaExprMember.cpp1203 if (ObjCCategoryDecl *CAT = dyn_cast<ObjCCategoryDecl>(D))
1204 D = CAT->getClassInterface();
H A DSemaDeclObjC.cpp758 void Sema::DiagnoseClassExtensionDupMethods(ObjCCategoryDecl *CAT, argument
772 for (ObjCCategoryDecl::method_iterator i = CAT->meth_begin(),
773 e = CAT->meth_end(); i != e; ++i) {
H A DSemaChecking.cpp3378 if (const ConstantArrayType *CAT = Context.getAsConstantArrayType(Ty)) {
3380 if (CAT->getSize().getSExtValue() <= 1)
H A DSemaStmt.cpp1926 if (const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(UnqAT))
1927 BoundExpr = Owned(IntegerLiteral::Create(Context, CAT->getSize(),
H A DSemaExprCXX.cpp3717 if (const ConstantArrayType *CAT = Self.Context.getAsConstantArrayType(T))
3718 return CAT->getSize().getLimitedValue();
H A DSemaExpr.cpp3898 const ConstantArrayType *CAT = dyn_cast<ConstantArrayType>(AT); local
3899 if (!CAT)
3907 if (ArgCAT->getSize().ult(CAT->getSize())) {
3911 << (unsigned) CAT->getSize().getZExtValue();
/external/clang/lib/StaticAnalyzer/Core/
H A DRegionStore.cpp1857 if (const ConstantArrayType* CAT = dyn_cast<ConstantArrayType>(AT))
1858 Size = CAT->getSize().getZExtValue();
/external/llvm/
H A Dconfigure750 CAT
7350 case $CAT in
7352 ac_cv_path_CAT="$CAT" # Let the user override the test with a path.
7373 CAT=$ac_cv_path_CAT
7374 if test -n "$CAT"; then
7375 { echo "$as_me:$LINENO: result: $CAT" >&5
7376 echo "${ECHO_T}$CAT" >&6; }
22566 CAT!$CAT$ac_delim
/external/llvm/projects/sample/
H A Dconfigure742 CAT
6996 case $CAT in
6998 ac_cv_path_CAT="$CAT" # Let the user override the test with a path.
7019 CAT=$ac_cv_path_CAT
7020 if test -n "$CAT"; then
7021 { echo "$as_me:$LINENO: result: $CAT" >&5
7022 echo "${ECHO_T}$CAT" >&6; }
21786 CAT!$CAT$ac_delim

Completed in 721 milliseconds

12