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

1 2

  /external/llvm/include/llvm/Support/
Solaris.h 21 #undef DS
  /external/clang/lib/Analysis/
PseudoConstantAnalysis.cpp 172 const DeclStmt *DS = cast<DeclStmt>(Head);
174 for (DeclStmt::const_decl_iterator I = DS->decl_begin(),
175 E = DS->decl_end(); I != E; ++I) {
LiveVariables.cpp 225 void VisitDeclStmt(DeclStmt *DS);
306 const DeclStmt *DS = cast<DeclStmt>(S);
307 if (const VarDecl *VD = dyn_cast<VarDecl>(DS->getSingleDecl())) {
392 void TransferFunctions::VisitDeclStmt(DeclStmt *DS) {
393 for (DeclStmt::decl_iterator DI=DS->decl_begin(), DE = DS->decl_end();
407 if (DeclStmt *DS = dyn_cast<DeclStmt>(element)) {
408 VD = cast<VarDecl>(DS->getSingleDecl());
  /external/llvm/lib/Support/
Host.cpp 385 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
386 if (!DS) {
394 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
395 delete DS;
472 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
473 if (!DS) {
481 size_t CPUInfoSize = DS->GetBytes((unsigned char*) buffer, sizeof(buffer));
482 delete DS;
527 DataStreamer *DS = getDataFileStreamer("/proc/cpuinfo", &Err);
528 if (!DS) {
    [all...]
  /bionic/libc/kernel/arch-x86/asm/
ptrace-abi.h 30 #define DS 7
  /development/ndk/platforms/android-9/arch-x86/include/asm/
ptrace-abi.h 30 #define DS 7
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/sys/
reg.h 51 # define DS 23
67 # define DS 7
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/sys/
reg.h 51 # define DS 23
67 # define DS 7
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/sys/
reg.h 51 # define DS 23
67 # define DS 7
  /prebuilts/ndk/8/platforms/android-14/arch-x86/usr/include/asm/
ptrace-abi.h 30 #define DS 7
  /prebuilts/ndk/8/platforms/android-9/arch-x86/usr/include/asm/
ptrace-abi.h 30 #define DS 7
  /external/clang/lib/Sema/
SemaTemplateVariadic.cpp 690 const DeclSpec &DS = D.getDeclSpec();
691 switch (DS.getTypeSpecType()) {
696 QualType T = DS.getRepAsType().get();
704 if (DS.getRepAsExpr() &&
705 DS.getRepAsExpr()->containsUnexpandedParameterPack())
  /external/kernel-headers/original/asm-x86/
ptrace-abi.h 13 #define DS 7
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
ptrace-abi.h 13 #define DS 7
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
ptrace-abi.h 13 #define DS 7
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
ptrace-abi.h 13 #define DS 7
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
ptrace-abi.h 24 #define DS 7
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
ptrace-abi.h 24 #define DS 7
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
ptrace-abi.h 24 #define DS 7
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
ptrace-abi.h 24 #define DS 7
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
ptrace-abi.h 24 #define DS 7
  /external/smack/src/org/xbill/DNS/
Type.java 139 public static final int DS = 43;
268 types.add(DS, "DS", new DSRecord());
  /external/skia/src/effects/
SkBicubicImageFilter.cpp 31 #define DS(x) SkDoubleToScalar(x)
36 DS( 1.0 / 18.0), DS(-9.0 / 18.0), DS( 15.0 / 18.0), DS( -7.0 / 18.0),
37 DS(16.0 / 18.0), DS( 0.0 / 18.0), DS(-36.0 / 18.0), DS( 21.0 / 18.0),
38 DS( 1.0 / 18.0), DS( 9.0 / 18.0), DS( 27.0 / 18.0), DS(-21.0 / 18.0)
    [all...]
  /external/clang/lib/StaticAnalyzer/Core/
BugReporterVisitors.cpp 423 if (const DeclStmt *DS = P->getStmtAs<DeclStmt>()) {
424 if (DS->getSingleDecl() == VR->getDecl()) {
507 const DeclStmt *DS = dyn_cast<DeclStmt>(S);
510 if (DS) {
554 else if (DS) {
557 const VarDecl *VD = cast<VarDecl>(DS->getSingleDecl());
    [all...]
PathDiagnostic.cpp 689 const DeclStmt *DS = cast<DeclStmt>(S);
690 if (DS->isSingleDecl()) {
692 return SourceRange(DS->getLocStart(),
693 DS->getSingleDecl()->getLocation());
    [all...]

Completed in 602 milliseconds

1 2