HomeSort by relevance Sort by last modified time
    Searched refs:QualType (Results 151 - 175 of 294) sorted by null

1 2 3 4 5 67 8 91011>>

  /frameworks/compile/slang/
slang_rs_object_ref_count.cpp 73 clang::QualType PVT = PVD->getOriginalType();
79 clang::QualType RST = PVT->getPointeeType();
364 clang::QualType ClearObjectFDType = ClearObjectFD->getType();
365 clang::QualType ClearObjectFDArgType =
776 clang::QualType SetObjectFDType = SetObjectFD->getType();
777 clang::QualType SetObjectFDArgType[2];
    [all...]
  /external/clang/lib/AST/
TypePrinter.cpp 93 void print(QualType T, raw_ostream &OS, StringRef PlaceHolder);
100 void printBefore(QualType T, raw_ostream &OS);
102 void printAfter(QualType T, raw_ostream &OS);
135 void TypePrinter::print(QualType t, raw_ostream &OS, StringRef PlaceHolder) {
230 void TypePrinter::printBefore(QualType T, raw_ostream &OS) {
238 Quals -= QualType(Subst, 0).getQualifiers();
291 void TypePrinter::printAfter(QualType t, raw_ostream &OS) {
410 TypePrinter(InnerPolicy).print(QualType(T->getClass(), 0), OS, StringRef());
    [all...]
APValue.cpp 344 void APValue::printPretty(raw_ostream &Out, ASTContext &Ctx, QualType Ty) const{
360 QualType ElemTy = Ty->getAs<VectorType>()->getElementType();
384 QualType InnerTy
427 QualType ElemTy;
476 QualType ElemTy = AT->getElementType();
545 std::string APValue::getAsString(ASTContext &Ctx, QualType Ty) const {
ItaniumMangle.cpp 145 void mangleCXXRTTI(QualType T, raw_ostream &) override;
146 void mangleCXXRTTIName(QualType T, raw_ostream &) override;
147 void mangleTypeName(QualType T, raw_ostream &) override;
293 void mangleType(QualType T);
299 bool mangleSubstitution(QualType T);
303 void mangleExistingSubstitution(QualType type);
313 void addSubstitution(QualType T);
348 void manglePrefix(QualType type);
370 void mangleIntegerLiteral(QualType T, const llvm::APSInt &Value);
749 void CXXNameMangler::manglePrefix(QualType type)
    [all...]
  /external/clang/include/clang/AST/
DeclTemplate.h     [all...]
Attr.h 37 class QualType;
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineC.cpp 135 QualType CTy =
139 QualType CLHSTy =
143 QualType LTy = getContext().getCanonicalType(LHS->getType());
245 QualType T = CastE->getType();
246 QualType ExTy = Ex->getType();
344 QualType resultType = CastE->getType();
396 QualType resultType = CastE->getType();
492 QualType Ty = InitEx->getType();
592 QualType T = getContext().getCanonicalType(IE->getType());
726 QualType T = Ex->getTypeOfArgument()
    [all...]
  /external/clang/lib/Sema/
Sema.cpp 135 void Sema::addImplicitTypedef(StringRef Name, QualType T) {
308 ExprResult Sema::ImpCastExprToType(Expr *E, QualType Ty,
328 QualType ExprTy = Context.getCanonicalType(E->getType());
329 QualType TypeTy = Context.getCanonicalType(Ty);
338 QualType T = E->getType();
359 CastKind Sema::ScalarTypeToBooleanCastKind(QualType ScalarTy) {
751 QualType T = Context.getConstantArrayType(ArrayT->getElementType(),
    [all...]
SemaObjCProperty.cpp 40 QualType type) {
105 static unsigned deduceWeakPropertyFromType(Sema &S, QualType T) {
149 QualType T = TSI->getType();
402 QualType ConvertedType;
436 QualType PrimaryPropertyQT =
535 QualType T = TInfo->getType();
647 QualType ivarType = ivar->getType();
734 QualType ivarType = ivar->getType();
767 QualType RHSType = S.Context.getCanonicalType(Property->getType());
772 QualType LHSType = S.Context.getCanonicalType(Prop->getType())
    [all...]
SemaStmtAsm.cpp 283 QualType InTy = InputExpr->getType();
284 QualType OutTy = OutputExpr->getType();
396 QualType T = Result.get()->getType();
452 if (RequireCompleteType(AsmLoc, QualType(RT, 0), 0))
SemaTemplateVariadic.cpp 123 bool TraverseType(QualType T) {
376 void Sema::collectUnexpandedParameterPacks(QualType T,
462 QualType Result = CheckPackExpansion(Pattern->getType(),
476 QualType Sema::CheckPackExpansion(QualType Pattern, SourceRange PatternRange,
486 return QualType();
637 Optional<unsigned> Sema::getNumArgumentsInExpansion(QualType T,
639 QualType Pattern = cast<PackExpansionType>(T)->getPattern();
697 QualType T = DS.getRepAsType().get();
    [all...]
SemaAccess.cpp 159 QualType BaseObjectType)
295 QualType T = I.getType();
654 QualType T = I.getType();
    [all...]
SemaDecl.cpp 177 QualType T = Context.getDependentNameType(ETK_Typename, NNS, &II);
196 /// opaque pointer (actually a QualType) corresponding to that
208 QualType ObjectType = ObjectTypePtr.get();
234 QualType T = CheckTypenameType(ETK_None, SourceLocation(), QualifierLoc,
375 QualType T;
441 QualType T = Context.getDependentNameType(ETK_None, NNS, &II);
501 if (Context.hasSameUnqualifiedType(QualType(Ty, 1), Base.getType()))
669 QualType T, SourceLocation NameLoc) {
694 QualType(), false, SS, nullptr, false);
    [all...]
SemaDeclCXX.cpp 634 QualType NewType = New->getType();
635 QualType OldType = Old->getType();
797 QualType RT = NewFD->getReturnType();
    [all...]
  /external/clang/lib/CodeGen/
CGExprConstant.cpp 48 const APValue &Value, QualType ValTy);
73 llvm::Constant *Finalize(QualType Ty);
474 llvm::Constant *ConstStructBuilder::Finalize(QualType Ty) {
541 QualType ValTy) {
799 QualType Ty = E->getType();
839 QualType T = E->getType();
855 llvm::Type *ConvertType(QualType T) {
    [all...]
CGAtomic.cpp 30 QualType AtomicTy;
31 QualType ValueTy;
68 QualType getAtomicType() const { return AtomicTy; }
69 QualType getValueType() const { return ValueTy; }
126 QualType resultType,
463 bool UseOptimizedLibcall, llvm::Value *Val, QualType ValTy,
478 QualType AtomicTy = E->getPtr()->getType()->getPointeeType();
479 QualType MemTy = AtomicTy;
546 QualType Val1Ty = E->getVal1()->getType();
616 QualType LoweredMemTy
    [all...]
MicrosoftCXXABI.cpp 62 QualType type) override;
67 llvm::Constant *getAddrOfRTTIDescriptor(QualType Ty) override;
69 bool shouldTypeidBeNullChecked(bool IsDeref, QualType SrcRecordTy) override;
71 llvm::Value *EmitTypeid(CodeGenFunction &CGF, QualType SrcRecordTy,
76 QualType SrcRecordTy) override;
79 QualType SrcRecordTy, QualType DestTy,
80 QualType DestRecordTy,
84 QualType SrcRecordTy,
85 QualType DestTy) override
    [all...]
  /external/lldb/include/lldb/Symbol/
ClangASTImporter.h 94 clang::QualType
97 clang::QualType type);
132 RequireCompleteType (clang::QualType type);
  /external/clang/include/clang/Basic/
Builtins.h 30 class QualType;
  /external/clang/lib/ARCMigrate/
TransBlockObjCVariable.cpp 105 bool isImplicitStrong(QualType ty) {
  /external/clang/lib/Frontend/
MultiplexConsumer.cpp 36 void TypeRead(serialization::TypeIdx Idx, QualType T) override;
63 serialization::TypeIdx Idx, QualType T) {
101 void DeducedReturnType(const FunctionDecl *FD, QualType ReturnType) override;
152 QualType ReturnType) {
  /external/clang/lib/StaticAnalyzer/Checkers/
RetainCountChecker.cpp 103 QualType T;
126 RefVal(Kind k, RetEffect::ObjKind o, unsigned cnt, unsigned acnt, QualType t,
158 QualType getType() const { return T; }
182 static RefVal makeOwned(RetEffect::ObjKind o, QualType t,
191 static RefVal makeNotOwned(RetEffect::ObjKind o, QualType t,
201 static RefVal makeOverridableNotOwned(RetEffect::ObjKind o, QualType t) {
732 QualType RetTy,
751 QualType ResultTy = MD->getReturnType();
763 Selector S, QualType RetTy);
766 Optional<RetEffect> getRetEffectFromAnnotations(QualType RetTy
    [all...]
ReturnUndefChecker.cpp 47 QualType RT = CallEvent::getDeclaredResultType(SFC->getDecl());
  /external/lldb/source/Expression/
ClangExpressionDeclMap.cpp 929 QualType class_qual_type(class_decl->getTypeForDecl(), 0);
945 TypeSourceInfo *type_source_info = m_ast_context->getTrivialTypeSourceInfo(QualType::getFromOpaquePtr(class_type.GetOpaqueQualType()));
967 QualType class_pointer_type = method_decl->getASTContext().getPointerType(class_qual_type);
    [all...]
  /external/clang/lib/Analysis/
Consumed.cpp 141 static bool isConsumableType(const QualType &QT) {
151 static bool isAutoCastType(const QualType &QT) {
161 static bool isSetOnReadPtrType(const QualType &QT) {
180 static bool isRValueRef(QualType ParamType) {
188 static bool isPointerOrRef(QualType ParamType) {
192 static ConsumedState mapConsumableAttrState(const QualType QT) {
621 QualType ParamType = Param->getType();
684 QualType RetType = Fun->getCallResultType();
778 QualType ThisType = Constructor->getThisType(CurrContext)->getPointeeType();
868 QualType ParamType = Param->getType()
    [all...]

Completed in 1001 milliseconds

1 2 3 4 5 67 8 91011>>