/external/openssh/ |
opensshd.init.in | 8 CAT=@CAT@ 43 PID=`${CAT} ${PIDFILE}`
|
/external/chromium_org/third_party/icu/source/tools/tzcode/ |
tz.alias | 33 CAT Africa/Harare
|
icuzones | 48 Link Africa/Harare CAT
|
/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, 527 const clang::ConstantArrayType *CAT = 529 const clang::Type *ElementType = GET_CONSTANT_ARRAY_ELEMENT_TYPE(CAT); [all...] |
slang_rs_export_type.h | 459 // @CAT was normalized by calling RSExportType::NormalizeType() before 462 const clang::ConstantArrayType *CAT);
|
slang_rs_reflection_cpp.cpp | 92 const RSExportConstantArrayType* CAT = 94 std::string ElementTypeName = GetTypeName(CAT->getElementType());
|
/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)
|
/prebuilts/ndk/9/platforms/android-14/arch-mips/usr/include/asm/ |
asm.h | 22 #ifndef CAT 30 #define CAT(str1, str2) __CAT(str1, str2)
|
/prebuilts/ndk/9/platforms/android-18/arch-mips/usr/include/asm/ |
asm.h | 22 #ifndef CAT 30 #define CAT(str1, str2) __CAT(str1, str2)
|
/prebuilts/ndk/9/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 | 857 const ConstantArrayType *CAT = cast<ConstantArrayType>(E->getType()); 861 Str.resize(CAT->getSize().getZExtValue(), '\0'); [all...] |
/external/kernel-headers/original/asm-mips/ |
asm.h | 22 #ifndef CAT 28 #define CAT(str1, str2) __CAT(str1, str2)
|
/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/clang/lib/AST/ |
ExprConstant.cpp | 122 const ConstantArrayType *CAT = 124 Type = CAT->getElementType(); 125 ArraySize = CAT->getSize().getZExtValue(); 223 void addArrayUnchecked(const ConstantArrayType *CAT) { 229 MostDerivedType = CAT->getElementType(); 230 MostDerivedArraySize = CAT->getSize().getZExtValue(); 853 void addArray(EvalInfo &Info, const Expr *E, const ConstantArrayType *CAT) { 855 Designator.addArrayUnchecked(CAT); [all...] |
ASTContext.cpp | 2449 const ConstantArrayType *cat = cast<ConstantArrayType>(ty); local [all...] |