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

1 2 34 5 6 7 8 9

  /external/clang/lib/Sema/
SemaDecl.cpp     [all...]
JumpDiagnostics.cpp 360 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SubStmt))
361 Next = DS->getSubStmt();
373 if (DeclStmt *DS = dyn_cast<DeclStmt>(SubStmt)) {
376 for (auto *I : DS->decls())
517 else if (DefaultStmt *DS = dyn_cast<DefaultStmt>(SC))
518 Loc = DS->getLocStart();
SemaCXXScopeSpec.cpp 750 const DeclSpec &DS,
752 if (SS.isInvalid() || DS.getTypeSpecType() == DeclSpec::TST_error)
755 assert(DS.getTypeSpecType() == DeclSpec::TST_decltype);
757 QualType T = BuildDecltypeType(DS.getRepAsExpr(), DS.getTypeSpecTypeLoc());
759 Diag(DS.getTypeSpecTypeLoc(), diag::err_expected_class_or_namespace)
766 DecltypeTL.setNameLoc(DS.getTypeSpecTypeLoc());
    [all...]
  /external/clang/lib/Parse/
ParseStmtAsm.cpp 591 DeclSpec DS(AttrFactory);
593 ParseTypeQualifierListOpt(DS, true, false);
596 if (DS.getTypeQualifiers() & DeclSpec::TQ_const)
598 if (DS.getTypeQualifiers() & DeclSpec::TQ_restrict)
601 if (DS.getTypeQualifiers() & DeclSpec::TQ_atomic)
605 bool isVolatile = DS.getTypeQualifiers() & DeclSpec::TQ_volatile;
  /external/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)
  /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/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
  /external/smack/src/org/xbill/DNS/
DSRecord.java 9 * DS - contains a Delegation Signer record, which acts as a
51 * Creates a DS Record from the given data
61 super(name, Type.DS, dclass, ttl);
69 * Creates a DS Record from the given data
Type.java 139 public static final int DS = 43;
268 types.add(DS, "DS", new DSRecord());
  /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/include/clang/Sema/
DeclSpec.h     [all...]
  /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/qemu-pc-bios/bochs/bios/
rombios.c 334 push ds
345 mov ds, ax local
354 pop ds
381 push ds
392 mov ds, ax local
401 pop ds
425 push ds
427 mov ds, ax local
434 pop ds
453 push ds
455 mov ds, ax local
1283 mov ds, ax local
1306 mov ds, ax local
1331 mov ds, ax local
1357 mov ds, ax local
3993 mov ds, ax local
4026 mov ds, ax local
4044 mov ds, ax local
8148 mov ds, bx local
8421 push ds ;; save DS local
8443 pop ds ;; restore DS local
8568 pop ds local
8571 ;; pop ds; pop es; popa; iret local
8632 mov ds, bx ;; Set segment local
8636 mov ds, ax ;; and reset the segment to zero. local
8662 mov ds, bx ;; Set segment to write to the IPL memory local
8664 mov ds, ax ;; and reset the segment. local
8688 mov ds, ax local
8770 mov ds, ax local
8815 mov ds, ax local
8961 mov ds, ax local
9078 mov ds, ax local
9082 mov ds, ax local
    [all...]
  /external/clang/lib/Analysis/
UninitializedValues.cpp 326 void VisitDeclStmt(DeclStmt *DS);
375 void ClassifyRefs::VisitDeclStmt(DeclStmt *DS) {
376 for (auto *DI : DS->decls()) {
455 void VisitDeclStmt(DeclStmt *ds);
626 if (DeclStmt *DS = dyn_cast<DeclStmt>(FS->getElement())) {
627 const VarDecl *VD = cast<VarDecl>(DS->getSingleDecl());
694 void TransferFunctions::VisitDeclStmt(DeclStmt *DS) {
695 for (auto *DI : DS->decls()) {
CFG.cpp 375 CFGBlock *VisitDeclStmt(DeclStmt *DS);
376 CFGBlock *VisitDeclSubExpr(DeclStmt *DS);
446 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/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...]
  /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 144 static const Channel DS[] = { CHANNEL_0, CHANNEL_ZERO, CHANNEL_ZERO, CHANNEL_1 };
163 case TextureFormat::DS: return DS;
185 static const int DS[] = { 0, 3 };
204 case TextureFormat::DS: return DS;
254 case TextureFormat::DS: return 2;
466 DE_ASSERT(order == D || order == DS);
471 DE_ASSERT(order == DS);
496 case DS: numChannels = 2; break
    [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;

Completed in 900 milliseconds

1 2 34 5 6 7 8 9