Home | History | Annotate | Download | only in AST

Lines Matching defs:Result

844   AttrVec *&Result = DeclAttrs[D];
845 if (!Result) {
847 Result = new (Mem) AttrVec;
850 return *Result;
1824 QualType Result;
1826 Result = getFunctionNoProtoType(FNPT->getResultType(), Info);
1831 Result = getFunctionType(FPT->getResultType(), FPT->arg_type_begin(),
1835 return cast<FunctionType>(Result.getTypePtr());
2086 QualType result;
2136 result = getPointerType(getVariableArrayDecayedType(
2142 result = getLValueReferenceType(
2150 result = getRValueReferenceType(
2157 result = getAtomicType(getVariableArrayDecayedType(at->getValueType()));
2163 result = getConstantArrayType(
2173 result = getDependentSizedArrayType(
2185 result = getVariableArrayType(
2197 result = getVariableArrayType(
2208 return getQualifiedType(result, split.Quals);
2294 // then just use that as our result.
2700 /// \brief Retrieve a substitution-result type.
3422 /// getSizeType - Return the unique type for "size_t" (C99 7.17), the result
3469 QualType Result;
3471 Result = getArrayDecayedType(QualType(Ty,0));
3473 Result = getPointerType(QualType(Ty, 0));
3475 Result = QualType(Ty, 0);
3478 return CanQualType::CreateUnsafe(Result);
3865 /// getArrayDecayedType - Return the properly qualified result of decaying the
4402 // Encode result type.
4448 // Encode result type.
4627 // Encode result type.
6109 QualType Result = QualType(LHS, 0);
6111 Result = getObjCObjectType(Result, Protocols.data(), Protocols.size());
6112 Result = getObjCObjectPointerType(Result);
6113 return Result;
6413 // would result from default argument promotions (C99 6.7.5.3p15).
7125 assert(!RequiresICE && "Result of intrinsic cannot be required to be an ICE");