/external/clang/lib/Parse/ |
D | ParseDecl.cpp | 53 DeclSpec DS(AttrFactory); in ParseTypeName() local 55 DS.addAttributes(Attrs->getList()); in ParseTypeName() 56 ParseSpecifierQualifierList(DS, AS, DSC); in ParseTypeName() 58 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : nullptr; in ParseTypeName() 61 Declarator DeclaratorInfo(DS, Context); in ParseTypeName() 1394 DeclSpec &DS, in handleDeclspecAlignBeforeClassKey() argument 1399 ParsedAttributes &PA = DS.getAttributes(); in handleDeclspecAlignBeforeClassKey() 1516 ParsingDeclSpec DS(*this); in ParseSimpleDeclaration() local 1519 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS_none, DSContext); in ParseSimpleDeclaration() 1523 if (DS.hasTagDefinition() && 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() 1061 DeclSpec DS(AttrFactory); in ParseLambdaExpressionAfterIntroducer() local 1062 Declarator D(DS, Declarator::LambdaExprContext); in ParseLambdaExpressionAfterIntroducer() 1147 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 | 299 Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) { in ParseLinkage() argument 308 getCurScope(), DS.getSourceRange().getBegin(), Lang.get(), in ParseLinkage() 318 DS.SetRangeStart(SourceLocation()); in ParseLinkage() 319 DS.SetRangeEnd(SourceLocation()); in ParseLinkage() 321 DS.setExternInLinkageSpec(true); in ParseLinkage() 322 ParseExternalDeclaration(attrs, &DS); in ParseLinkage() 328 DS.abort(); in ParseLinkage() 763 SourceLocation Parser::ParseDecltypeSpecifier(DeclSpec &DS) { in ParseDecltypeSpecifier() argument 776 DS.SetTypeSpecError(); in ParseDecltypeSpecifier() 788 DS.SetTypeSpecError(); in ParseDecltypeSpecifier() [all …]
|
D | ParseObjc.cpp | 799 ParsingDeclSpec DS(*this); in ParseObjCInterfaceDeclList() local 800 ParseStructDeclaration(DS, ObjCPropertyCallback); in ParseObjCInterfaceDeclList() 830 ObjCDeclSpec &DS, in diagnoseRedundantPropertyNullability() argument 833 if (DS.getNullability() == nullability) { in diagnoseRedundantPropertyNullability() 836 << SourceRange(DS.getNullabilityLoc()); in diagnoseRedundantPropertyNullability() 842 << DiagNullabilityKind(DS.getNullability(), true) in diagnoseRedundantPropertyNullability() 843 << SourceRange(DS.getNullabilityLoc()); in diagnoseRedundantPropertyNullability() 870 void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS) { in ParseObjCPropertyAttribute() argument 877 Actions.CodeCompleteObjCPropertyFlags(getCurScope(), DS); in ParseObjCPropertyAttribute() 891 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readonly); in ParseObjCPropertyAttribute() [all …]
|
D | Parser.cpp | 622 ParsingDeclSpec *DS) { in ParseExternalDeclaration() argument 801 return ParseDeclarationOrFunctionDefinition(attrs, DS); in ParseExternalDeclaration() 867 ParsingDeclSpec &DS, in ParseDeclOrFunctionDefInternal() argument 870 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC_top_level); in ParseDeclOrFunctionDefInternal() 874 if (DS.hasTagDefinition() && in ParseDeclOrFunctionDefInternal() 875 DiagnoseMissingSemiAfterTagDefinition(DS, AS, DSC_top_level)) in ParseDeclOrFunctionDefInternal() 883 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS); in ParseDeclOrFunctionDefInternal() 884 DS.complete(TheDecl); in ParseDeclOrFunctionDefInternal() 888 DS.takeAttributesFrom(attrs); in ParseDeclOrFunctionDefInternal() 902 DS.abort(); in ParseDeclOrFunctionDefInternal() [all …]
|
D | RAIIObjectsForParser.h | 204 ParsingDeclarator(Parser &P, const ParsingDeclSpec &DS, TheContext C) in ParsingDeclarator() argument 205 : Declarator(DS, C), ParsingRAII(P, &DS.getDelayedDiagnosticPool()) { in ParsingDeclarator() 231 ParsingFieldDeclarator(Parser &P, const ParsingDeclSpec &DS) in ParsingFieldDeclarator() argument 232 : FieldDeclarator(DS), ParsingRAII(P, &DS.getDelayedDiagnosticPool()) { in ParsingFieldDeclarator()
|
D | ParseTemplate.cpp | 205 ParsingDeclSpec DS(*this, &DiagsFromTParams); in ParseSingleDeclarationAfterTemplate() local 207 ParseDeclarationSpecifiers(DS, TemplateInfo, AS, in ParseSingleDeclarationAfterTemplate() 214 getCurScope(), AS, DS, in ParseSingleDeclarationAfterTemplate() 218 DS.complete(Decl); in ParseSingleDeclarationAfterTemplate() 226 DS.takeAttributesFrom(prefixAttrs); in ParseSingleDeclarationAfterTemplate() 229 ParsingDeclarator DeclaratorInfo(*this, DS, (Declarator::TheContext)Context); in ParseSingleDeclarationAfterTemplate() 256 if (DS.getStorageClassSpec() == DeclSpec::SCS_typedef) { in ParseSingleDeclarationAfterTemplate() 260 Diag(DS.getStorageClassSpecLoc(), diag::err_function_declared_typedef) in ParseSingleDeclarationAfterTemplate() 261 << FixItHint::CreateRemoval(DS.getStorageClassSpecLoc()); in ParseSingleDeclarationAfterTemplate() 262 DS.ClearStorageClassSpecs(); in ParseSingleDeclarationAfterTemplate() [all …]
|
D | ParseExpr.cpp | 917 DeclSpec DS(AttrFactory); in ParseCastExpression() local 918 DS.SetRangeStart(ILoc); in ParseCastExpression() 919 DS.SetRangeEnd(ILoc); in ParseCastExpression() 922 DS.SetTypeSpecType(TST_typename, ILoc, PrevSpec, DiagID, Typ, in ParseCastExpression() 925 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext); in ParseCastExpression() 1113 DeclSpec DS(AttrFactory); in ParseCastExpression() local 1114 DS.SetRangeStart(Tok.getLocation()); in ParseCastExpression() 1115 DS.SetRangeEnd(Tok.getLastLoc()); in ParseCastExpression() 1119 DS.SetTypeSpecType(TST_typename, Tok.getAnnotationEndLoc(), in ParseCastExpression() 1123 Declarator DeclaratorInfo(DS, Declarator::TypeNameContext); in ParseCastExpression() [all …]
|
/external/skia/src/gpu/effects/ |
D | GrBicubicEffect.cpp | 14 #define DS(x) SkDoubleToScalar(x) macro 17 DS( 1.0 / 18.0), DS(-9.0 / 18.0), DS( 15.0 / 18.0), DS( -7.0 / 18.0), 18 DS(16.0 / 18.0), DS( 0.0 / 18.0), DS(-36.0 / 18.0), DS( 21.0 / 18.0), 19 DS( 1.0 / 18.0), DS( 9.0 / 18.0), DS( 27.0 / 18.0), DS(-21.0 / 18.0), 20 DS( 0.0 / 18.0), DS( 0.0 / 18.0), DS( -6.0 / 18.0), DS( 7.0 / 18.0),
|
/external/llvm/unittests/Support/ |
D | StreamingMemoryObject.cpp | 27 auto DS = make_unique<NullDataStreamer>(); in TEST() local 28 StreamingMemoryObject O(std::move(DS)); in TEST() 33 auto DS = make_unique<NullDataStreamer>(); in TEST() local 34 StreamingMemoryObject O(std::move(DS)); in TEST()
|
/external/clang/lib/Sema/ |
D | SemaType.cpp | 716 static void diagnoseAndRemoveTypeQualifiers(Sema &S, const DeclSpec &DS, in diagnoseAndRemoveTypeQualifiers() argument 724 for (QualLoc Qual : {QualLoc(DeclSpec::TQ_const, DS.getConstSpecLoc()), in diagnoseAndRemoveTypeQualifiers() 725 QualLoc(DeclSpec::TQ_volatile, DS.getVolatileSpecLoc()), in diagnoseAndRemoveTypeQualifiers() 726 QualLoc(DeclSpec::TQ_atomic, DS.getAtomicSpecLoc())}) { in diagnoseAndRemoveTypeQualifiers() 1181 const DeclSpec &DS = declarator.getDeclSpec(); in ConvertDeclSpecToType() local 1184 DeclLoc = DS.getLocStart(); in ConvertDeclSpecToType() 1189 switch (DS.getTypeSpecType()) { in ConvertDeclSpecToType() 1194 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified) in ConvertDeclSpecToType() 1196 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) in ConvertDeclSpecToType() 1199 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned && in ConvertDeclSpecToType() [all …]
|
D | SemaDecl.cpp | 3601 DeclSpec &DS) { in ParsedFreeStandingDeclSpec() argument 3602 return ParsedFreeStandingDeclSpec(S, AS, DS, MultiTemplateParamsArg()); in ParsedFreeStandingDeclSpec() 3709 DeclSpec &DS, in ParsedFreeStandingDeclSpec() argument 3714 if (DS.getTypeSpecType() == DeclSpec::TST_class || in ParsedFreeStandingDeclSpec() 3715 DS.getTypeSpecType() == DeclSpec::TST_struct || in ParsedFreeStandingDeclSpec() 3716 DS.getTypeSpecType() == DeclSpec::TST_interface || in ParsedFreeStandingDeclSpec() 3717 DS.getTypeSpecType() == DeclSpec::TST_union || in ParsedFreeStandingDeclSpec() 3718 DS.getTypeSpecType() == DeclSpec::TST_enum) { in ParsedFreeStandingDeclSpec() 3719 TagD = DS.getRepAsDecl(); in ParsedFreeStandingDeclSpec() 3740 if (unsigned TypeQuals = DS.getTypeQualifiers()) { in ParsedFreeStandingDeclSpec() [all …]
|
/external/llvm/lib/DebugInfo/DWARF/ |
D | DWARFUnitIndex.cpp | 104 StringRef DWARFUnitIndex::getColumnHeader(DWARFSectionKind DS) { in getColumnHeader() argument 105 #define CASE(DS) \ in getColumnHeader() argument 106 case DW_SECT_##DS: \ in getColumnHeader() 107 return #DS; in getColumnHeader() 108 switch (DS) { in getColumnHeader()
|
/external/clang/lib/Driver/ |
D | ToolChain.cpp | 144 const DriverSuffix *DS = FindDriverSuffix(ProgName); in parseDriverSuffix() local 146 if (!DS) { in parseDriverSuffix() 150 DS = FindDriverSuffix(ProgName); in parseDriverSuffix() 153 if (!DS) { in parseDriverSuffix() 157 DS = FindDriverSuffix(ProgName); in parseDriverSuffix() 159 return DS; in parseDriverSuffix() 166 const DriverSuffix *DS = parseDriverSuffix(ProgName); in getTargetAndModeFromProgramName() local 167 if (!DS) in getTargetAndModeFromProgramName() 169 std::string ModeFlag = DS->ModeFlag == nullptr ? "" : DS->ModeFlag; in getTargetAndModeFromProgramName() 172 ProgName.rfind('-', ProgName.size() - strlen(DS->Suffix)); in getTargetAndModeFromProgramName()
|
/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 | 72 void checkPreStmt(const ReturnStmt *DS, CheckerContext &C) const {} in checkPreStmt() argument 82 void checkPostStmt(const DeclStmt *DS, CheckerContext &C) const; 316 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/clang/include/clang/Parse/ |
D | Parser.h | 607 bool TryAltiVecToken(DeclSpec &DS, SourceLocation Loc, in TryAltiVecToken() argument 618 return TryAltiVecTokenOutOfLine(DS, Loc, PrevSpec, DiagID, isInvalid); in TryAltiVecToken() 631 bool TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc, 1229 ParsingDeclSpec *DS = nullptr); 1234 ParsingDeclSpec *DS = nullptr, 1237 ParsingDeclSpec &DS, 1362 ParsedType ParseObjCTypeName(ObjCDeclSpec &DS, Declarator::TheContext Ctx, 1371 void ParseObjCPropertyAttribute(ObjCDeclSpec &DS); 1559 ExprResult ParseCXXTypeConstructExpression(const DeclSpec &DS); 1564 void ParseCXXSimpleTypeSpecifier(DeclSpec &DS); [all …]
|
/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/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 | 85 case TextureFormat::DS: format = GL_DEPTH_STENCIL; break; in getTransferFormat() 220 case FMT_CASE(DS, FLOAT_UNSIGNED_INT_24_8_REV): return GL_DEPTH32F_STENCIL8; in getInternalFormat() 221 case FMT_CASE(DS, UNSIGNED_INT_24_8): return GL_DEPTH24_STENCIL8; in getInternalFormat() 454 …case GL_DEPTH_STENCIL: return TextureFormat(TextureFormat::DS, mapGLChannelType(dataType, true)); in mapGLTransferFormat() 544 …case GL_DEPTH32F_STENCIL8: return TextureFormat(TextureFormat::DS, TextureFormat::FLOAT_UNSIGNED_… in mapGLInternalFormat() 545 …case GL_DEPTH24_STENCIL8: return TextureFormat(TextureFormat::DS, TextureFormat::UNSIGNED_INT_24_… in mapGLInternalFormat() 860 if (format.order == TextureFormat::D || format.order == TextureFormat::DS) in getSampler1DType() 896 if (format.order == TextureFormat::D || format.order == TextureFormat::DS) in getSampler2DType() 932 if (format.order == TextureFormat::D || format.order == TextureFormat::DS) in getSamplerCubeType() 968 if (format.order == TextureFormat::D || format.order == TextureFormat::DS) in getSampler2DArrayType() [all …]
|
/external/opencv3/modules/core/src/ |
D | downhill_simplex.cpp | 458 Ptr<DownhillSolver> DS = makePtr<DownhillSolverImpl>(); in create() local 459 DS->setFunction(f); in create() 460 DS->setInitStep(initStep); in create() 461 DS->setTermCriteria(termcrit); in create() 462 return DS; in create()
|