OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:DIE
(Results
1 - 12
of
12
) 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"
107
//
DIE
Implementation
110
DIE
::~
DIE
() {
115
/// Climb up the parent chain to get the compile unit
DIE
this
DIE
belongs to.
116
DIE
*
DIE
::getCompileUnit() const{
117
DIE
*p = getParent()
[
all
...]
DIE.h
1
//===--- lib/CodeGen/
DIE
.h - DWARF Info Entries -----------------*- C++ -*-===//
110
///
DIE
- A structured debug information entry. Has an abbreviation which
114
class
DIE
{
130
std::vector<
DIE
*> Children;
132
DIE
*Parent;
141
explicit
DIE
(unsigned Tag)
144
virtual ~
DIE
();
152
const std::vector<
DIE
*> &getChildren() const { return Children; }
154
DIE
*getParent() const { return Parent; }
155
/// Climb up the parent chain to get the compile unit
DIE
this DIE belong
[
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
232
InitListExpr *IList, DesignatedInitExpr *
DIE
,
[
all
...]
Completed in 959 milliseconds