HomeSort by relevance Sort by last modified time
    Searched refs:DS (Results 76 - 100 of 197) sorted by null

1 2 34 5 6 7 8

  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]
SemaCXXScopeSpec.cpp 812 const DeclSpec &DS,
814 if (SS.isInvalid() || DS.getTypeSpecType() == DeclSpec::TST_error)
817 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype);
819 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
821 Diag(DS.getTypeSpecTypeLoc(), diag::err_expected_class_or_namespace)
828 DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc());
    [all...]
JumpDiagnostics.cpp 391 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SubStmt))
392 Next = DS->getSubStmt();
404 if (DeclStmt *DS = dyn_cast<DeclStmt>(SubStmt)) {
407 for (auto *I : DS->decls())
555 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC))
556 Loc = DS->getLocStart();
    [all...]
  /ndk/sources/cxx-stl/stlport/src/c_locale_dummy/
c_locale_dummy.c 33 # define _STLP_STRNCPY(D, DS, S, C) strncpy_s(D, DS, S, C)
35 # define _STLP_WCSNCPY(D, DS, S, C) wcsncpy_s(D, DS, S, C)
38 # define _STLP_STRNCPY(D, DS, S, C) strncpy(D, S, C)
40 # define _STLP_WCSNCPY(D, DS, S, C) wcsncpy(D, S, C)
  /external/deqp/framework/opengl/
gluTextureUtil.cpp 84 case TextureFormat::DS: format = GL_DEPTH_STENCIL; break;
219 case FMT_CASE(DS, FLOAT_UNSIGNED_INT_24_8_REV): return GL_DEPTH32F_STENCIL8;
220 case FMT_CASE(DS, UNSIGNED_INT_24_8): return GL_DEPTH24_STENCIL8;
453 case GL_DEPTH_STENCIL: return TextureFormat(TextureFormat::DS, mapGLChannelType(dataType, true));
543 case GL_DEPTH32F_STENCIL8: return TextureFormat(TextureFormat::DS, TextureFormat::FLOAT_UNSIGNED_INT_24_8_REV);
544 case GL_DEPTH24_STENCIL8: return TextureFormat(TextureFormat::DS, TextureFormat::UNSIGNED_INT_24_8);
    [all...]
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SubEngine.h 87 virtual void processStaticInitializer(const DeclStmt *DS,
  /external/iproute2/examples/diffserv/
Edge32-ca-u32 14 IPROUTE=/root/DS-6-beta/iproute2-990530-dsing
17 IPCHAINS=/root/DS-6-beta/ipchains-1.3.9/ipchains
Edge32-cb-u32 13 IPROUTE=/root/DS-6-beta/iproute2-990530-dsing
  /libcore/luni/src/test/java/libcore/java/util/
EnumSetTest.java 106 AM, CM, BK, CF, ES, FM, MD, NO, LR, RF, DB, SG, BH, HS, MT, DS, RG, CN, UUT, UUQ, UUP, UUH,
  /external/clang/lib/StaticAnalyzer/Core/
ExprEngineObjC.cpp 78 if (const DeclStmt *DS = dyn_cast<DeclStmt>(elem)) {
79 const VarDecl *elemD = cast<VarDecl>(DS->getSingleDecl());
ExprEngineC.cpp 443 void ExprEngine::VisitDeclStmt(const DeclStmt *DS, ExplodedNode *Pred,
446 const VarDecl *VD = dyn_cast_or_null<VarDecl>(*DS->decl_begin());
456 getCheckerManager().runCheckersForPreStmt(dstPreVisit, Pred, DS, *this);
476 B.generateNode(DS, UpdatedN, state);
504 evalBind(Dst2, DS, UpdatedN, state->getLValue(VD, LC), InitVal, true);
509 B.generateNode(DS, N, state);
513 getCheckerManager().runCheckersForPostStmt(Dst, B.getResults(), DS, *this);
    [all...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 327 void VisitDeclStmt(DeclStmt *DS);
408 void ClassifyRefs::VisitDeclStmt(DeclStmt *DS) {
409 for (auto *DI : DS->decls()) {
514 void VisitDeclStmt(DeclStmt *ds);
685 if (DeclStmt *DS = dyn_cast<DeclStmt>(FS->getElement())) {
686 const VarDecl *VD = cast<VarDecl>(DS->getSingleDecl());
753 void TransferFunctions::VisitDeclStmt(DeclStmt *DS) {
754 for (auto *DI : DS->decls()) {
CFG.cpp 381 CFGBlock *VisitDeclStmt(DeclStmt *DS);
382 CFGBlock *VisitDeclSubExpr(DeclStmt *DS);
516 LocalScope* addLocalScopeForDeclStmt(DeclStmt *DS,
    [all...]
ReachableCode.cpp 53 if (const DoStmt *DS = dyn_cast<DoStmt>(Term)) {
54 const Expr *Cond = DS->getCond()->IgnoreParenCasts();
671 DeadCodeScan DS(reachable, PP);
672 numReachable += DS.scanBackwards(block, CB);
  /external/clang/lib/ARCMigrate/
TransRetainReleaseDealloc.cpp 235 if (DeclStmt *DS = dyn_cast<DeclStmt>(S)) {
236 if (DS->isSingleDecl() && DS->getSingleDecl() == RefD) {
  /external/clang/lib/AST/
StmtPrinter.cpp 180 if (const DeclStmt *DS = If->getConditionVariableDeclStmt())
181 PrintRawDeclStmt(DS);
220 if (const DeclStmt *DS = Node->getConditionVariableDeclStmt())
221 PrintRawDeclStmt(DS);
239 if (const DeclStmt *DS = Node->getConditionVariableDeclStmt())
240 PrintRawDeclStmt(DS);
266 if (DeclStmt *DS = dyn_cast<DeclStmt>(Node->getInit()))
267 PrintRawDeclStmt(DS);
294 if (DeclStmt *DS = dyn_cast<DeclStmt>(Node->getElement()))
295 PrintRawDeclStmt(DS);
    [all...]
  /ndk/sources/cxx-stl/stlport/src/c_locale_win32/
c_wlocale_win32.c 17 # define _STLP_WCSNCPY(D, DS, S, C) wcsncpy_s(D, DS, S, C)
19 # define _STLP_WCSNCPY(D, DS, S, C) wcsncpy(D, S, C)
c_locale_win32.c 32 # define _STLP_STRCPY(D, DS, S) strcpy_s(D, DS, S)
33 # define _STLP_STRNCPY(D, DS, S, C) strncpy_s(D, DS, S, C)
34 # define _STLP_STRCAT(D, DS, S) strcat_s(D, DS, S)
36 # define _STLP_STRCPY(D, DS, S) strcpy(D, S)
37 # define _STLP_STRNCPY(D, DS, S, C) strncpy(D, S, C)
38 # define _STLP_STRCAT(D, DS, S) strcat(D, S)
    [all...]
  /external/deqp/framework/common/
tcuTexture.cpp 203 case TextureFormat::DS: return 2;
408 static const TextureSwizzle DS = {{ TextureSwizzle::CHANNEL_0, TextureSwizzle::CHANNEL_ZERO, TextureSwizzle::CHANNEL_ZERO, TextureSwizzle::CHANNEL_1 }};
429 case TextureFormat::DS: return DS;
455 static const TextureSwizzle DS = {{ TextureSwizzle::CHANNEL_0, TextureSwizzle::CHANNEL_3, TextureSwizzle::CHANNEL_LAST, TextureSwizzle::CHANNEL_LAST }};
476 case TextureFormat::DS: return DS;
523 DE_ASSERT(order == D || order == DS);
528 DE_ASSERT(order == DS);
647 case TextureFormat::DS: return Vec4(NB32(8, 24), 0.0f, 0.0f, 1.0f /* (float)UB32(0, 8) */)
    [all...]
tcuTextureUtil.cpp 298 else if (format.order == TextureFormat::D || format.order == TextureFormat::DS)
563 DE_ASSERT(access.getFormat().order == TextureFormat::DS || access.getFormat().order == TextureFormat::D);
570 DE_ASSERT(access.getFormat().order == TextureFormat::DS || access.getFormat().order == TextureFormat::S);
637 const bool hasDepth = access.getFormat().order == tcu::TextureFormat::DS || access.getFormat().order == tcu::TextureFormat::D;
638 const bool hasStencil = access.getFormat().order == tcu::TextureFormat::DS || access.getFormat().order == tcu::TextureFormat::S;
714 const bool hasDepth = access.getFormat().order == tcu::TextureFormat::DS || access.getFormat().order == tcu::TextureFormat::D;
715 const bool hasStencil = access.getFormat().order == tcu::TextureFormat::DS || access.getFormat().order == tcu::TextureFormat::S;
815 const bool srcHasDepth = (src.getFormat().order == tcu::TextureFormat::DS || src.getFormat().order == tcu::TextureFormat::D);
816 const bool srcHasStencil = (src.getFormat().order == tcu::TextureFormat::DS || src.getFormat().order == tcu::TextureFormat::S);
817 const bool dstHasDepth = (dst.getFormat().order == tcu::TextureFormat::DS || dst.getFormat().order == tcu::TextureFormat::D)
    [all...]
  /external/llvm/lib/Target/R600/
SIDefines.h 36 DS = 1 << 17,
  /external/clang/include/clang/Sema/
DeclSpec.h     [all...]
  /external/deqp/modules/gles3/functional/
es3fFboMultisampleTests.cpp 84 bool depth = depthStencilFmt.order == tcu::TextureFormat::D || depthStencilFmt.order == tcu::TextureFormat::DS;
85 bool stencil = depthStencilFmt.order == tcu::TextureFormat::S || depthStencilFmt.order == tcu::TextureFormat::DS;
  /external/clang/lib/Parse/
ParseStmtAsm.cpp 623 DeclSpec DS(AttrFactory);
625 ParseTypeQualifierListOpt(DS, AR_VendorAttributesParsed);
628 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
630 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
633 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
637 bool isVolatile = DS.getTypeQualifiers() & DeclSpec::TQ_volatile;
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfCompileUnit.cpp 308 DIScope DS(Scope->getScopeNode());
310 assert((Scope->getInlinedAt() || !isa<MDSubprogram>(DS)) &&
321 if (Scope->getParent() && isa<MDSubprogram>(DS)) {
341 for (const auto &E : DD->findImportedEntitiesForScope(DS))
421 DIScope DS(Scope->getScopeNode());
422 DISubprogram InlinedSP = getDISubprogram(DS);

Completed in 2745 milliseconds

1 2 34 5 6 7 8