/external/clang/lib/Parse/ |
D | ParseDecl.cpp | 51 DeclSpec DS(AttrFactory); in ParseTypeName() local 53 DS.addAttributes(Attrs->getList()); in ParseTypeName() 54 ParseSpecifierQualifierList(DS, AS, DSC); in ParseTypeName() 56 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : nullptr; in ParseTypeName() 59 Declarator DeclaratorInfo(DS, Context); in ParseTypeName() 1450 ParsingDeclSpec DS(*this); in ParseSimpleDeclaration() local 1453 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS_none, DSContext); in ParseSimpleDeclaration() 1457 if (DS.hasTagDefinition() && in ParseSimpleDeclaration() 1458 DiagnoseMissingSemiAfterTagDefinition(DS, AS_none, DSContext)) in ParseSimpleDeclaration() 1468 DS); in ParseSimpleDeclaration() [all …]
|
D | ParseExprCXX.cpp | 258 DeclSpec DS(AttrFactory); in ParseOptionalCXXScopeSpecifier() local 260 SourceLocation EndLoc = ParseDecltypeSpecifier(DS); in ParseOptionalCXXScopeSpecifier() 264 AnnotateExistingDecltypeSpecifier(DS, DeclLoc, EndLoc); in ParseOptionalCXXScopeSpecifier() 268 if (Actions.ActOnCXXNestedNameSpecifierDecltype(SS, DS, CCLoc)) in ParseOptionalCXXScopeSpecifier() 1059 DeclSpec DS(AttrFactory); in ParseLambdaExpressionAfterIntroducer() local 1060 Declarator D(DS, Declarator::LambdaExprContext); in ParseLambdaExpressionAfterIntroducer() 1146 DS.getTypeQualifiers(), in ParseLambdaExpressionAfterIntroducer() 1294 DeclSpec DS(AttrFactory); in ParseCXXCasts() local 1295 ParseSpecifierQualifierList(DS); in ParseCXXCasts() 1298 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext); in ParseCXXCasts() [all …]
|
D | ParseDeclCXX.cpp | 293 Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) { in ParseLinkage() argument 302 getCurScope(), DS.getSourceRange().getBegin(), Lang.get(), in ParseLinkage() 312 DS.SetRangeStart(SourceLocation()); in ParseLinkage() 313 DS.SetRangeEnd(SourceLocation()); in ParseLinkage() 315 DS.setExternInLinkageSpec(true); in ParseLinkage() 316 ParseExternalDeclaration(attrs, &DS); in ParseLinkage() 322 DS.abort(); in ParseLinkage() 755 SourceLocation Parser::ParseDecltypeSpecifier(DeclSpec &DS) { in ParseDecltypeSpecifier() argument 768 DS.SetTypeSpecError(); in ParseDecltypeSpecifier() 780 DS.SetTypeSpecError(); in ParseDecltypeSpecifier() [all …]
|
D | Parser.cpp | 598 ParsingDeclSpec *DS) { in ParseExternalDeclaration() argument 767 return ParseDeclarationOrFunctionDefinition(attrs, DS); in ParseExternalDeclaration() 833 ParsingDeclSpec &DS, in ParseDeclOrFunctionDefInternal() argument 836 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC_top_level); in ParseDeclOrFunctionDefInternal() 840 if (DS.hasTagDefinition() && in ParseDeclOrFunctionDefInternal() 841 DiagnoseMissingSemiAfterTagDefinition(DS, AS, DSC_top_level)) in ParseDeclOrFunctionDefInternal() 849 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS); in ParseDeclOrFunctionDefInternal() 850 DS.complete(TheDecl); in ParseDeclOrFunctionDefInternal() 854 DS.takeAttributesFrom(attrs); in ParseDeclOrFunctionDefInternal() 868 DS.abort(); in ParseDeclOrFunctionDefInternal() [all …]
|
D | ParseObjc.cpp | 484 ParsingDeclSpec DS(*this); in ParseObjCInterfaceDeclList() local 485 ParseStructDeclaration(DS, ObjCPropertyCallback); in ParseObjCInterfaceDeclList() 533 void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS) { in ParseObjCPropertyAttribute() argument 540 Actions.CodeCompleteObjCPropertyFlags(getCurScope(), DS); in ParseObjCPropertyAttribute() 554 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readonly); in ParseObjCPropertyAttribute() 556 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_assign); in ParseObjCPropertyAttribute() 558 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_unsafe_unretained); in ParseObjCPropertyAttribute() 560 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readwrite); in ParseObjCPropertyAttribute() 562 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_retain); in ParseObjCPropertyAttribute() 564 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_strong); in ParseObjCPropertyAttribute() [all …]
|
D | RAIIObjectsForParser.h | 198 ParsingDeclarator(Parser &P, const ParsingDeclSpec &DS, TheContext C) in ParsingDeclarator() argument 199 : Declarator(DS, C), ParsingRAII(P, &DS.getDelayedDiagnosticPool()) { in ParsingDeclarator() 225 ParsingFieldDeclarator(Parser &P, const ParsingDeclSpec &DS) in ParsingFieldDeclarator() argument 226 : FieldDeclarator(DS), ParsingRAII(P, &DS.getDelayedDiagnosticPool()) { in ParsingFieldDeclarator()
|
D | ParseTemplate.cpp | 193 ParsingDeclSpec DS(*this, &DiagsFromTParams); in ParseSingleDeclarationAfterTemplate() local 195 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, in ParseSingleDeclarationAfterTemplate() 202 getCurScope(), AS, DS, in ParseSingleDeclarationAfterTemplate() 206 DS.complete(Decl); in ParseSingleDeclarationAfterTemplate() 214 DS.takeAttributesFrom(prefixAttrs); in ParseSingleDeclarationAfterTemplate() 217 ParsingDeclarator DeclaratorInfo(*this, DS, (Declarator::TheContext)Context); in ParseSingleDeclarationAfterTemplate() 244 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) { in ParseSingleDeclarationAfterTemplate() 248 Diag(DS.getStorageClassSpecLoc(), diag::err_function_declared_typedef) in ParseSingleDeclarationAfterTemplate() 249 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc()); in ParseSingleDeclarationAfterTemplate() 250 DS.ClearStorageClassSpecs(); in ParseSingleDeclarationAfterTemplate() [all …]
|
D | ParseExpr.cpp | 891 DeclSpec DS(AttrFactory); in ParseCastExpression() local 892 DS.SetRangeStart(ILoc); in ParseCastExpression() 893 DS.SetRangeEnd(ILoc); in ParseCastExpression() 896 DS.SetTypeSpecType(TST_typename, ILoc, PrevSpec, DiagID, Typ, in ParseCastExpression() 899 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext); in ParseCastExpression() 1072 DeclSpec DS(AttrFactory); in ParseCastExpression() local 1073 DS.SetRangeStart(Tok.getLocation()); in ParseCastExpression() 1074 DS.SetRangeEnd(Tok.getLastLoc()); in ParseCastExpression() 1078 DS.SetTypeSpecType(TST_typename, Tok.getAnnotationEndLoc(), in ParseCastExpression() 1082 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext); in ParseCastExpression() [all …]
|
/external/skia/src/gpu/effects/ |
D | GrBicubicEffect.cpp | 12 #define DS(x) SkDoubleToScalar(x) macro 15 DS( 1.0 / 18.0), DS(-9.0 / 18.0), DS( 15.0 / 18.0), DS( -7.0 / 18.0), 16 DS(16.0 / 18.0), DS( 0.0 / 18.0), DS(-36.0 / 18.0), DS( 21.0 / 18.0), 17 DS( 1.0 / 18.0), DS( 9.0 / 18.0), DS( 27.0 / 18.0), DS(-21.0 / 18.0), 18 DS( 0.0 / 18.0), DS( 0.0 / 18.0), DS( -6.0 / 18.0), DS( 7.0 / 18.0),
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 703 const DeclSpec &DS = declarator.getDeclSpec(); in ConvertDeclSpecToType() local 706 DeclLoc = DS.getLocStart(); in ConvertDeclSpecToType() 711 switch (DS.getTypeSpecType()) { in ConvertDeclSpecToType() 716 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified) in ConvertDeclSpecToType() 718 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) in ConvertDeclSpecToType() 721 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned && in ConvertDeclSpecToType() 727 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified) in ConvertDeclSpecToType() 729 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) { in ConvertDeclSpecToType() 730 S.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec) in ConvertDeclSpecToType() 731 << DS.getSpecifierName(DS.getTypeSpecType(), in ConvertDeclSpecToType() [all …]
|
D | SemaDecl.cpp | 3445 DeclSpec &DS) { in ParsedFreeStandingDeclSpec() argument 3446 return ParsedFreeStandingDeclSpec(S, AS, DS, MultiTemplateParamsArg()); in ParsedFreeStandingDeclSpec() 3532 DeclSpec &DS, in ParsedFreeStandingDeclSpec() argument 3537 if (DS.getTypeSpecType() == DeclSpec::TST_class || in ParsedFreeStandingDeclSpec() 3538 DS.getTypeSpecType() == DeclSpec::TST_struct || in ParsedFreeStandingDeclSpec() 3539 DS.getTypeSpecType() == DeclSpec::TST_interface || in ParsedFreeStandingDeclSpec() 3540 DS.getTypeSpecType() == DeclSpec::TST_union || in ParsedFreeStandingDeclSpec() 3541 DS.getTypeSpecType() == DeclSpec::TST_enum) { in ParsedFreeStandingDeclSpec() 3542 TagD = DS.getRepAsDecl(); in ParsedFreeStandingDeclSpec() 3563 if (unsigned TypeQuals = DS.getTypeQualifiers()) { in ParsedFreeStandingDeclSpec() [all …]
|
/external/clang/include/clang/Parse/ |
D | Parser.h | 597 bool TryAltiVecToken(DeclSpec &DS, SourceLocation Loc, in TryAltiVecToken() argument 606 return TryAltiVecTokenOutOfLine(DS, Loc, PrevSpec, DiagID, isInvalid); in TryAltiVecToken() 619 bool TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc, 1207 ParsingDeclSpec *DS = nullptr); 1212 ParsingDeclSpec *DS = nullptr, 1215 ParsingDeclSpec &DS, 1245 bool ParseObjCProtocolQualifiers(DeclSpec &DS); 1290 ParsedType ParseObjCTypeName(ObjCDeclSpec &DS, Declarator::TheContext Ctx, 1299 void ParseObjCPropertyAttribute(ObjCDeclSpec &DS); 1486 ExprResult ParseCXXTypeConstructExpression(const DeclSpec &DS); [all …]
|
/external/clang/tools/driver/ |
D | driver.cpp | 250 const DriverSuffix *DS = FindDriverSuffix(ProgNameRef); in ParseProgName() local 252 if (!DS) { in ParseProgName() 256 DS = FindDriverSuffix(ProgNameRef); in ParseProgName() 259 if (!DS) { in ParseProgName() 263 DS = FindDriverSuffix(ProgNameRef); in ParseProgName() 266 if (DS) { in ParseProgName() 267 if (const char *Flag = DS->ModeFlag) { in ParseProgName() 276 '-', ProgNameRef.size() - strlen(DS->Suffix)); in ParseProgName()
|
/external/libpcap/msdos/ |
D | pkt_rx0.asm | 28 ASSUME CS:_TEXT,DS:_TEXT 38 ASSUME CS:_TEXT,DS:_DATA 108 ;; to ES:DI (= DS:SI on 2nd call) by the packet driver 117 ; 2nd time (AX=1) the packet has been copied to this location (DS:SI) 139 mov es, bx ; ES = DS = CS or seg _DATA 172 @post: or si, si ; DS:SI->_pktRxBuf[n][n].destinAdr
|
D | ndis_0.asm | 15 ASSUME CS:_TEXT,DS:_TEXT 34 ASSUME CS:_TEXT,DS:_DATA 74 mov ax,CB_DSEG ;; Load DS 164 mov edx, [esp+12] ; DS:EDX -> result data
|
/external/clang/lib/StaticAnalyzer/Checkers/ |
D | VLASizeChecker.cpp | 40 void checkPreStmt(const DeclStmt *DS, CheckerContext &C) const; 82 void VLASizeChecker::checkPreStmt(const DeclStmt *DS, CheckerContext &C) const { in checkPreStmt() argument 83 if (!DS->isSingleDecl()) in checkPreStmt() 86 const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); in checkPreStmt()
|
D | CheckerDocumentation.cpp | 71 void checkPreStmt(const ReturnStmt *DS, CheckerContext &C) const {} in checkPreStmt() argument 81 void checkPostStmt(const DeclStmt *DS, CheckerContext &C) const; 306 void CheckerDocumentation::checkPostStmt(const DeclStmt *DS, in checkPostStmt() argument
|
D | UndefinedAssignmentChecker.cpp | 78 if (const DeclStmt *DS = dyn_cast<DeclStmt>(StoreE)) { in checkBind() local 79 const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl()); in checkBind()
|
/external/llvm/unittests/Support/ |
D | StreamingMemoryObject.cpp | 26 auto *DS = new NullDataStreamer(); in TEST() local 27 StreamingMemoryObject O(DS); in TEST()
|
/external/iproute2/examples/ |
D | SYN-DoS.rate.limit | 12 IPROUTE=/root/DS-6-beta/iproute2-990530-dsing 15 IPCHAINS=/root/DS-6-beta/ipchains-1.3.9/ipchains
|
/external/libvpx/libvpx/vp8/common/ppc/ |
D | variance_altivec.asm | 72 .macro variance_16 DS loop_label store_sum 101 srlwi r3, r3, \DS ;# (sum*sum) >> DS 102 subf r3, r3, r4 ;# sse - ((sum*sum) >> DS) 105 .macro variance_8 DS loop_label store_sum 145 srlwi r3, r3, \DS ;# (sum*sum) >> 8
|
/external/iproute2/examples/diffserv/ |
D | Edge1 | 11 IPROUTE=/root/DS-6-beta/iproute2-990530-dsing 14 IPCHAINS=/root/DS-6-beta/ipchains-1.3.9/ipchains
|
D | Edge2 | 12 IPROUTE=/root/DS-6-beta/iproute2-990530-dsing 15 IPCHAINS=/root/DS-6-beta/ipchains-1.3.9/ipchains
|
/external/deqp/framework/opengl/ |
D | gluTextureUtil.cpp | 84 case TextureFormat::DS: format = GL_DEPTH_STENCIL; break; in getTransferFormat() 219 case FMT_CASE(DS, FLOAT_UNSIGNED_INT_24_8_REV): return GL_DEPTH32F_STENCIL8; in getInternalFormat() 220 case FMT_CASE(DS, UNSIGNED_INT_24_8): return GL_DEPTH24_STENCIL8; in getInternalFormat() 453 …case GL_DEPTH_STENCIL: return TextureFormat(TextureFormat::DS, mapGLChannelType(dataType, true)); in mapGLTransferFormat() 543 …case GL_DEPTH32F_STENCIL8: return TextureFormat(TextureFormat::DS, TextureFormat::FLOAT_UNSIGNED_… in mapGLInternalFormat() 544 …case GL_DEPTH24_STENCIL8: return TextureFormat(TextureFormat::DS, TextureFormat::UNSIGNED_INT_24_… in mapGLInternalFormat() 859 if (format.order == TextureFormat::D || format.order == TextureFormat::DS) in getSampler1DType() 895 if (format.order == TextureFormat::D || format.order == TextureFormat::DS) in getSampler2DType() 931 if (format.order == TextureFormat::D || format.order == TextureFormat::DS) in getSamplerCubeType() 967 if (format.order == TextureFormat::D || format.order == TextureFormat::DS) in getSampler2DArrayType() [all …]
|
/external/clang/lib/Analysis/ |
D | LiveVariables.cpp | 209 void VisitDeclStmt(DeclStmt *DS); 290 const DeclStmt *DS = cast<DeclStmt>(S); in Visit() local 291 if (const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl())) { in Visit() 373 void TransferFunctions::VisitDeclStmt(DeclStmt *DS) { in VisitDeclStmt() argument 374 for (const auto *DI : DS->decls()) in VisitDeclStmt() 387 if (DeclStmt *DS = dyn_cast<DeclStmt>(element)) { in VisitObjCForCollectionStmt() local 388 VD = cast<VarDecl>(DS->getSingleDecl()); in VisitObjCForCollectionStmt()
|