HomeSort by relevance Sort by last modified time
    Searched defs:DIE (Results 1 - 14 of 14) sorted by null

  /system/extras/fatblock/
utils.h 25 #define DIE(...) do { EPRINT(__VA_ARGS__); exit(EXIT_FAILURE); } while (0)
32 void die(char *msg);
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 1 //===--- lib/CodeGen/DIE.cpp - DWARF Info Entries -------------------------===//
14 #include "DIE.h"
105 // DIE Implementation
108 DIE::~DIE() {
113 /// Climb up the parent chain to get the compile unit DIE to which this DIE
115 DIE *DIE::getCompileUnit() {
116 DIE *p = this
    [all...]
DIE.h 1 //===--- lib/CodeGen/DIE.h - DWARF Info Entries -----------------*- C++ -*-===//
106 /// DIE - A structured debug information entry. Has an abbreviation which
110 class DIE {
126 std::vector<DIE *> Children;
128 DIE *Parent;
139 explicit DIE(unsigned Tag)
141 virtual ~DIE();
149 const std::vector<DIE *> &getChildren() const { return Children; }
151 DIE *getParent() const { return Parent; }
152 /// Climb up the parent chain to get the compile unit DIE this DIE belong
    [all...]
  /external/llvm/lib/DebugInfo/
DWARFCompileUnit.cpp 125 // safely access the next die in the array.
132 // Normal DIE
138 // NULL DIE that terminates a sibling chain
156 // Set the offset to that of the first DIE and calculate the start of the
160 DWARFDebugInfoEntryMinimal DIE;
167 DIE.extractFast(this, FixedFormSizes, &Offset)) {
170 Dies.push_back(DIE);
173 // The average bytes per DIE entry has been seen to be
175 // our DIE entries accordingly.
179 Dies.push_back(DIE);
    [all...]
  /external/clang/test/Parser/
cxx-decl.cpp 165 struct DIE {
169 void test (DIE die, DIE *Die, DIE INT, DIE *FLOAT) {
170 DIE.foo(); // expected-error {{cannot use dot operator on a type}}
171 die.foo();
173 DIE->foo(); // expected-error {{cannot use arrow operator on a type}
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
HotSpotSystem.java 42 public static final int DIE = 9;
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/
atmmpc.h 104 #define DIE 207 /* tell the daemon to exit() */
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmmpc.h 104 #define DIE 207 /* tell the daemon to exit() */
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/linux/
atmmpc.h 104 #define DIE 207 /* tell the daemon to exit() */
  /external/chromium/sdch/open-vcdiff/src/
gflags.cc 202 // Whether we should die when reporting an error.
203 enum DieWhenReporting { DIE, DO_NOT_DIE };
211 if (should_die == DIE)
688 ReportError(DIE, "ERROR: flag '%s' was defined more than once "
694 ReportError(DIE, "ERROR: something wrong with flag '%s' in file '%s'. "
    [all...]
  /external/clang/lib/AST/
Expr.cpp     [all...]
  /external/open-vcdiff/gflags/src/
gflags.cc 202 // Whether we should die when reporting an error.
203 enum DieWhenReporting { DIE, DO_NOT_DIE };
211 if (should_die == DIE)
688 ReportError(DIE, "ERROR: flag '%s' was defined more than once "
694 ReportError(DIE, "ERROR: something wrong with flag '%s' in file '%s'. "
    [all...]
  /external/clang/lib/Sema/
SemaInit.cpp 296 InitListExpr *IList, DesignatedInitExpr *DIE,
363 Expr *DIE = CXXDefaultInitExpr::Create(SemaRef.Context,
366 ILE->setInit(Init, DIE);
368 ILE->updateInit(SemaRef.Context, Init, DIE);
    [all...]
SemaDeclCXX.cpp     [all...]

Completed in 564 milliseconds