HomeSort by relevance Sort by last modified time
    Searched defs:CAT (Results 1 - 25 of 27) sorted by null

1 2

  /external/eigen/bench/btl/libs/BLAS/
blas_interface.hh 51 #define CAT(A,B) CAT2(A,B)
  /external/valgrind/main/none/tests/amd64/
xacq_xrel.c 12 #define CAT(_x,_y) CAT2(_x,_y)
15 void CAT(do_,_insn) ( void ) \
52 void CAT(do_,_insn) ( void ) \
  /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)
  /frameworks/support/tests/java/android/support/v4/provider/
DocumentFileTest.java 52 private static final String CAT = "cat.jpg";
73 rootMeowCat = new File(rootMeow, CAT);
131 final DocumentFile cat = meow.findFile(CAT);
134 assertTrue("isFile", cat.isFile());
186 final DocumentFile cat = meow.findFile(CAT);
193 assertEquals("image/jpeg", cat.getType());
254 final DocumentFile cat = meow.findFile(CAT)
    [all...]
  /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-12/arch-mips/usr/include/asm/
asm.h 22 #ifndef CAT
30 #define CAT(str1, str2) __CAT(str1, str2)
  /prebuilts/ndk/9/platforms/android-13/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-15/arch-mips/usr/include/asm/
asm.h 22 #ifndef CAT
30 #define CAT(str1, str2) __CAT(str1, str2)
  /prebuilts/ndk/9/platforms/android-16/arch-mips/usr/include/asm/
asm.h 22 #ifndef CAT
30 #define CAT(str1, str2) __CAT(str1, str2)
  /prebuilts/ndk/9/platforms/android-17/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-19/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)
  /frameworks/compile/slang/
slang_rs_export_type.cpp 194 const clang::ConstantArrayType *CAT,
200 const clang::Type *ElementType = GetConstantArrayElementType(CAT);
217 if (numElements == 3 && CAT->getSize() != 1) {
228 return CAT;
371 const clang::ConstantArrayType *CAT =
374 return ConstantArrayTypeExportableHelper(CAT, SPS, Context, VD,
596 const clang::ConstantArrayType *CAT = static_cast<const clang::ConstantArrayType*>(CTI);
597 const clang::Type *ElementType = GetConstantArrayElementType(CAT);
    [all...]
slang_rs_reflection_cpp.cpp 95 const RSExportConstantArrayType *CAT =
97 std::string ElementTypeName = GetTypeName(CAT->getElementType());
    [all...]
slang_rs_object_ref_count.cpp 423 const clang::ConstantArrayType *CAT =
425 return static_cast<int>(CAT->getSize().getSExtValue());
    [all...]
slang_rs_reflection.cpp 202 const RSExportConstantArrayType *CAT =
204 std::string ElementTypeName = GetTypeName(CAT->getElementType());
    [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 842 const ConstantArrayType *CAT = cast<ConstantArrayType>(T);
846 Str.resize(CAT->getSize().getZExtValue(), '\0');
    [all...]
CodeGenModule.cpp     [all...]
  /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();
    [all...]
  /external/clang/lib/Sema/
SemaExprObjC.cpp 70 const ConstantArrayType *CAT = Context.getAsConstantArrayType(S->getType());
71 assert(CAT && "String literal not of constant array type!");
73 CAT->getElementType(), llvm::APInt(32, StrBuf.size() + 1),
74 CAT->getSizeModifier(), CAT->getIndexTypeCVRQualifiers());
    [all...]
SemaInit.cpp 168 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
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());
    [all...]

Completed in 711 milliseconds

1 2