/external/openssh/ |
opensshd.init.in | 8 CAT=@CAT@ 43 PID=`${CAT} ${PIDFILE}`
|
/external/icu4c/tools/tzcode/ |
tz.alias | 33 CAT Africa/Harare
|
icuzones | 48 Link Africa/Harare CAT
|
/external/eigen/bench/btl/libs/BLAS/ |
blas_interface.hh | 51 #define CAT(A,B) CAT2(A,B)
|
blas_interface_impl.hh | 2 #define BLAS_FUNC(NAME) CAT(CAT(SCALAR_PREFIX,NAME),_)
|
/frameworks/compile/slang/ |
slang_rs_export_type.cpp | 119 const clang::ConstantArrayType *CAT, 125 const clang::Type *ElementType = GET_CONSTANT_ARRAY_ELEMENT_TYPE(CAT); 142 if (numElements == 3 && CAT->getSize() != 1) { 153 return CAT; 303 const clang::ConstantArrayType *CAT = 306 return ConstantArrayTypeExportableHelper(CAT, SPS, DiagEngine, VD, 526 const clang::ConstantArrayType *CAT = 528 const clang::Type *ElementType = GET_CONSTANT_ARRAY_ELEMENT_TYPE(CAT); [all...] |
slang_rs_reflection_cpp.cpp | 90 const RSExportConstantArrayType* CAT = 92 std::string ElementTypeName = GetTypeName(CAT->getElementType());
|
slang_rs_export_type.h | 459 // @CAT was normalized by calling RSExportType::NormalizeType() before 462 const clang::ConstantArrayType *CAT);
|
slang_rs_object_ref_count.cpp | 437 const clang::ConstantArrayType *CAT = 439 return static_cast<int>(CAT->getSize().getSExtValue()); [all...] |
/ndk/sources/host-tools/nawk-20071023/ |
maketab.c | 70 { CAT, "cat", " " },
|
b.c | 54 binary (CAT, OR): left and right are children 128 p1 = op2(CAT, op2(STAR, op2(ALL, NIL, NIL), NIL), p); 130 p1 = op2(CAT, p1, op2(FINAL, NIL, NIL)); 195 case CAT: 219 case CAT: 371 case CAT: 415 case CAT: 446 case CAT: 683 return (concat(op2(CAT, np, primary())));
|
awkgram.y | 86 %left CAT 214 | ppattern term %prec CAT { $$ = op2(CAT, $1, $2); } 247 | pattern term %prec CAT { $$ = op2(CAT, $1, $2); }
|
/bionic/libc/kernel/arch-mips/asm/ |
asm.h | 22 #ifndef CAT 30 #define CAT(str1, str2) __CAT(str1, str2)
|
/development/ndk/platforms/android-9/arch-mips/include/asm/ |
asm.h | 22 #ifndef CAT 30 #define CAT(str1, str2) __CAT(str1, str2)
|
/prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/ |
asm.h | 22 #ifndef CAT 30 #define CAT(str1, str2) __CAT(str1, str2)
|
/prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/ |
asm.h | 22 #ifndef CAT 30 #define CAT(str1, str2) __CAT(str1, str2)
|
/external/clang/lib/CodeGen/ |
CGExprConstant.cpp | 880 const ConstantArrayType *CAT = cast<ConstantArrayType>(E->getType()); 884 Str.resize(CAT->getSize().getZExtValue(), '\0'); [all...] |
CGExprCXX.cpp | 601 while (const ConstantArrayType *CAT 603 type = CAT->getElementType(); 604 arraySizeMultiplier *= CAT->getSize(); [all...] |
/development/ndk/sources/android/libportable/arch-mips/ |
pthread.c | 32 #define CAT(x, y) CAT_I(x, y) 48 #define MAYBE_STRIP_PARENS_I(cond, x) CAT(MAYBE_STRIP_PARENS_, cond)(x)
|
/external/kernel-headers/original/asm-mips/ |
asm.h | 22 #ifndef CAT 28 #define CAT(str1, str2) __CAT(str1, str2)
|
/external/clang/lib/AST/ |
ExprConstant.cpp | 104 const ConstantArrayType *CAT = 106 Type = CAT->getElementType(); 107 ArraySize = CAT->getSize().getZExtValue(); 205 void addArrayUnchecked(const ConstantArrayType *CAT) { 211 MostDerivedType = CAT->getElementType(); 212 MostDerivedArraySize = CAT->getSize().getZExtValue(); 760 void addArray(EvalInfo &Info, const Expr *E, const ConstantArrayType *CAT) { 762 Designator.addArrayUnchecked(CAT); [all...] |
ASTContext.cpp | 2310 const ConstantArrayType *cat = cast<ConstantArrayType>(ty); local [all...] |
MicrosoftMangle.cpp | [all...] |
/external/clang/lib/Sema/ |
SemaInit.cpp | 103 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT); 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()); [all...] |
SemaExprMember.cpp | [all...] |