OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CURRENT_DEMANGLING_STYLE
(Results
1 - 3
of
3
) sorted by null
/external/gcc-demangle/
demangle.h
61
/* If none of these are set, use '
current_demangling_style
' as the default. */
85
}
current_demangling_style
;
102
#define
CURRENT_DEMANGLING_STYLE
current_demangling_style
103
#define AUTO_DEMANGLING (((int)
CURRENT_DEMANGLING_STYLE
) & DMGL_AUTO)
104
#define GNU_DEMANGLING (((int)
CURRENT_DEMANGLING_STYLE
) & DMGL_GNU)
105
#define LUCID_DEMANGLING (((int)
CURRENT_DEMANGLING_STYLE
) & DMGL_LUCID)
106
#define ARM_DEMANGLING (((int)
CURRENT_DEMANGLING_STYLE
) & DMGL_ARM)
107
#define HP_DEMANGLING (((int)
CURRENT_DEMANGLING_STYLE
) & DMGL_HP)
108
#define EDG_DEMANGLING (((int)
CURRENT_DEMANGLING_STYLE
) & DMGL_EDG
[
all
...]
/external/valgrind/main/coregrind/m_demangle/
demangle.h
69
/* If none of these are set, use '
current_demangling_style
' as the default. */
93
}
current_demangling_style
;
110
#define
CURRENT_DEMANGLING_STYLE
current_demangling_style
111
#define AUTO_DEMANGLING (((int)
CURRENT_DEMANGLING_STYLE
) & DMGL_AUTO)
112
#define GNU_DEMANGLING (((int)
CURRENT_DEMANGLING_STYLE
) & DMGL_GNU)
113
#define LUCID_DEMANGLING (((int)
CURRENT_DEMANGLING_STYLE
) & DMGL_LUCID)
114
#define ARM_DEMANGLING (((int)
CURRENT_DEMANGLING_STYLE
) & DMGL_ARM)
115
#define HP_DEMANGLING (((int)
CURRENT_DEMANGLING_STYLE
) & DMGL_HP)
116
#define EDG_DEMANGLING (((int)
CURRENT_DEMANGLING_STYLE
) & DMGL_EDG
[
all
...]
cplus-dem.c
69
#undef
CURRENT_DEMANGLING_STYLE
70
#define
CURRENT_DEMANGLING_STYLE
work->options
111
enum demangling_styles
current_demangling_style
= auto_demangling;
variable in typeref:enum:demangling_styles
809
current_demangling_style
= style;
810
return
current_demangling_style
;
864
if (
current_demangling_style
== no_demangling)
870
work->options |= (int)
current_demangling_style
& DMGL_STYLE_MASK;
[
all
...]
Completed in 180 milliseconds