HomeSort by relevance Sort by last modified time
    Searched refs:DS (Results 1 - 25 of 148) sorted by null

1 2 3 4 5 6

  /bionic/libc/include/sys/
reg.h 41 #define DS 7
77 #define DS 23
  /development/ndk/platforms/android-L/include/sys/
reg.h 41 #define DS 7
77 #define DS 23
  /external/chromium_org/third_party/skia/src/gpu/effects/
GrBicubicEffect.cpp 12 #define DS(x) SkDoubleToScalar(x)
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)
    [all...]
  /external/clang/lib/Parse/
ParseDecl.cpp 51 DeclSpec DS(AttrFactory);
53 DS.addAttributes(Attrs->getList());
54 ParseSpecifierQualifierList(DS, AS, DSC);
56 *OwnedType = DS.isTypeSpecOwned() ? DS.getRepAsDecl() : nullptr;
59 Declarator DeclaratorInfo(DS, Context);
    [all...]
ParseExprCXX.cpp 236 DeclSpec DS(AttrFactory);
238 SourceLocation EndLoc = ParseDecltypeSpecifier(DS);
242 AnnotateExistingDecltypeSpecifier(DS, DeclLoc, EndLoc);
246 if (Actions.ActOnCXXNestedNameSpecifierDecltype(SS, DS, CCLoc))
    [all...]
RAIIObjectsForParser.h 198 ParsingDeclarator(Parser &P, const ParsingDeclSpec &DS, TheContext C)
199 : Declarator(DS, C), ParsingRAII(P, &DS.getDelayedDiagnosticPool()) {
225 ParsingFieldDeclarator(Parser &P, const ParsingDeclSpec &DS)
226 : FieldDeclarator(DS), ParsingRAII(P, &DS.getDelayedDiagnosticPool()) {
ParseDeclCXX.cpp 283 Decl *Parser::ParseLinkage(ParsingDeclSpec &DS, unsigned Context) {
292 getCurScope(), DS.getSourceRange().getBegin(), Lang.get(),
300 // Reset the source range in DS, as the leading "extern"
302 DS.SetRangeStart(SourceLocation());
303 DS.SetRangeEnd(SourceLocation());
305 DS.setExternInLinkageSpec(true);
306 ParseExternalDeclaration(attrs, &DS);
312 DS.abort();
736 SourceLocation Parser::ParseDecltypeSpecifier(DeclSpec &DS) {
749 DS.SetTypeSpecError()
    [all...]
Parser.cpp 588 ParsingDeclSpec *DS) {
762 return ParseDeclarationOrFunctionDefinition(attrs, DS);
828 ParsingDeclSpec &DS,
831 ParseDeclarationSpecifiers(DS, ParsedTemplateInfo(), AS, DSC_top_level);
835 if (DS.hasTagDefinition() &&
836 DiagnoseMissingSemiAfterTagDefinition(DS, AS, DSC_top_level))
844 Decl *TheDecl = Actions.ParsedFreeStandingDeclSpec(getCurScope(), AS, DS);
845 DS.complete(TheDecl);
849 DS.takeAttributesFrom(attrs);
863 DS.abort()
    [all...]
ParseObjc.cpp 518 ParsingDeclSpec DS(*this);
519 ParseStructDeclaration(DS, Callback);
567 void Parser::ParseObjCPropertyAttribute(ObjCDeclSpec &DS) {
574 Actions.CodeCompleteObjCPropertyFlags(getCurScope(), DS);
588 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readonly);
590 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_assign);
592 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_unsafe_unretained);
594 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_readwrite);
596 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_retain);
598 DS.setPropertyAttributes(ObjCDeclSpec::DQ_PR_strong)
    [all...]
  /external/iproute2/examples/
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/llvm/include/llvm/Support/
Solaris.h 30 #undef DS
  /external/llvm/lib/Support/
Host.cpp 497 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
498 if (!DS) {
506 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
507 delete DS;
586 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
587 if (!DS) {
595 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
596 delete DS;
651 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
652 if (!DS) {
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
UndefinedAssignmentChecker.cpp 78 if (const DeclStmt *DS = dyn_cast<DeclStmt>(StoreE)) {
79 const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl());
CheckerDocumentation.cpp 71 void checkPreStmt(const ReturnStmt *DS, CheckerContext &C) const {}
81 void checkPostStmt(const DeclStmt *DS, CheckerContext &C) const;
306 void CheckerDocumentation::checkPostStmt(const DeclStmt *DS,
VLASizeChecker.cpp 40 void checkPreStmt(const DeclStmt *DS, CheckerContext &C) const;
79 void VLASizeChecker::checkPreStmt(const DeclStmt *DS, CheckerContext &C) const {
80 if (!DS->isSingleDecl())
83 const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl());
  /external/clang/lib/Sema/
SemaType.cpp 702 const DeclSpec &DS = declarator.getDeclSpec();
705 DeclLoc = DS.getLocStart();
710 switch (DS.getTypeSpecType()) {
715 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
717 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed)
720 assert(DS.getTypeSpecSign() == DeclSpec::TSS_unsigned &&
726 if (DS.getTypeSpecSign() == DeclSpec::TSS_unspecified)
728 else if (DS.getTypeSpecSign() == DeclSpec::TSS_signed) {
729 S.Diag(DS.getTypeSpecSignLoc(), diag::ext_invalid_sign_spec)
730 << DS.getSpecifierName(DS.getTypeSpecType()
    [all...]
  /bionic/libc/kernel/uapi/asm-x86/asm/
ptrace-abi.h 31 #define DS 7
  /development/ndk/platforms/android-9/arch-x86/include/asm/
ptrace-abi.h 31 #define DS 7
  /development/ndk/platforms/android-L/arch-x86/include/asm/
ptrace-abi.h 31 #define DS 7
  /development/ndk/platforms/android-L/arch-x86_64/include/asm/
ptrace-abi.h 31 #define DS 7
  /external/iproute2/examples/diffserv/
Edge1 11 IPROUTE=/root/DS-6-beta/iproute2-990530-dsing
14 IPCHAINS=/root/DS-6-beta/ipchains-1.3.9/ipchains
Edge2 12 IPROUTE=/root/DS-6-beta/iproute2-990530-dsing
15 IPCHAINS=/root/DS-6-beta/ipchains-1.3.9/ipchains
Edge31-cb-chains 13 IPROUTE=/root/DS-6-beta/iproute2-990530-dsing
16 IPCHAINS=/root/DS-6-beta/ipchains-1.3.9/ipchains
  /external/kernel-headers/original/uapi/asm-x86/asm/
ptrace-abi.h 13 #define DS 7
  /external/clang/include/clang/Parse/
Parser.h 602 bool TryAltiVecToken(DeclSpec &DS, SourceLocation Loc,
611 return TryAltiVecTokenOutOfLine(DS, Loc, PrevSpec, DiagID, isInvalid);
624 bool TryAltiVecTokenOutOfLine(DeclSpec &DS, SourceLocation Loc,
    [all...]

Completed in 800 milliseconds

1 2 3 4 5 6