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

  /external/clang/lib/AST/
MicrosoftMangle.cpp     [all...]
ASTContext.cpp 834 const ConstantArrayType *CAT = cast<ConstantArrayType>(T);
836 std::pair<uint64_t, unsigned> EltInfo = getTypeInfo(CAT->getElementType());
837 Width = EltInfo.first*CAT->getSize().getZExtValue();
1745 const ConstantArrayType *cat = cast<ConstantArrayType>(ty); local
    [all...]
  /frameworks/compile/slang/
slang_rs_export_type.cpp 81 const clang::ConstantArrayType *CAT,
87 const clang::Type *ElementType = GET_CONSTANT_ARRAY_ELEMENT_TYPE(CAT);
104 if (numElements == 3 && CAT->getSize() != 1) {
115 return CAT;
261 const clang::ConstantArrayType *CAT =
264 return ConstantArrayTypeExportableHelper(CAT, SPS, DiagEngine, VD,
379 const clang::ConstantArrayType *CAT =
381 const clang::Type *ElementType = GET_CONSTANT_ARRAY_ELEMENT_TYPE(CAT);
    [all...]
slang_rs_object_ref_count.cpp 436 const clang::ConstantArrayType *CAT =
438 return static_cast<int>(CAT->getSize().getSExtValue());
    [all...]
slang_rs_reflection.cpp 342 const RSExportConstantArrayType* CAT =
344 std::string ElementTypeName = GetTypeName(CAT->getElementType());
    [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 835 const ConstantArrayType *CAT = cast<ConstantArrayType>(E->getType());
839 Str.resize(CAT->getSize().getZExtValue(), '\0');
    [all...]
CodeGenModule.cpp     [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 102 const ConstantArrayType *CAT = cast<ConstantArrayType>(AT);
118 if (StrLength > CAT->getSize().getZExtValue())
124 if (StrLength-1 > CAT->getSize().getZExtValue())
495 if (const ConstantArrayType *CAT =
497 maxElements = static_cast<int>(CAT->getSize().getZExtValue());
    [all...]
SemaExpr.cpp     [all...]

Completed in 3999 milliseconds