OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UDebugEnumType
(Results
1 - 8
of
8
) sorted by null
/external/icu4c/tools/toolutil/
udbgutil.h
16
enum
UDebugEnumType
{
17
UDBG_UDebugEnumType = 0, /* Self-referential, strings for
UDebugEnumType
. Count=ENUM_COUNT. */
37
typedef enum
UDebugEnumType
UDebugEnumType
;
44
U_CAPI int32_t U_EXPORT2 udbg_enumCount(
UDebugEnumType
type);
52
U_CAPI const char * U_EXPORT2 udbg_enumName(
UDebugEnumType
type, int32_t field);
60
U_CAPI int32_t U_EXPORT2 udbg_enumExpectedCount(
UDebugEnumType
type);
68
U_CAPI int32_t U_EXPORT2 udbg_enumArrayValue(
UDebugEnumType
type, int32_t field);
76
U_CAPI int32_t U_EXPORT2 udbg_enumByName(
UDebugEnumType
type, const char *name);
dbgutil.h
21
udbg_enumString(
UDebugEnumType
type, int32_t field);
27
udbg_enumByString(
UDebugEnumType
type, const U_NAMESPACE_QUALIFIER UnicodeString& string);
dbgutil.cpp
25
static const UnicodeString& _fieldString(
UDebugEnumType
type, int32_t field, UnicodeString& fillin) {
63
int32_t c = udbg_enumCount((
UDebugEnumType
)t);
66
_fieldString((
UDebugEnumType
)t, f, newStrs[t][f]);
77
U_CAPI const UnicodeString& U_EXPORT2 udbg_enumString(
UDebugEnumType
type, int32_t field) {
96
U_CAPI int32_t U_EXPORT2 udbg_enumByString(
UDebugEnumType
type, const UnicodeString& string) {
udbgutil.cpp
14
1. udbgutil.h: add UDBG_UShoeSize to the
UDebugEnumType
enum before UDBG_ENUM_COUNT
36
(
UDebugEnumType
is an enum, too!)
233
static int32_t _udbg_enumCount(
UDebugEnumType
type, UBool actual) {
235
COUNT_CASE(
UDebugEnumType
)
253
static const Field* _udbg_enumFields(
UDebugEnumType
type) {
255
FIELD_CASE(
UDebugEnumType
)
275
int32_t udbg_enumCount(
UDebugEnumType
type) {
279
int32_t udbg_enumExpectedCount(
UDebugEnumType
type) {
283
const char * udbg_enumName(
UDebugEnumType
type, int32_t field) {
297
int32_t udbg_enumArrayValue(
UDebugEnumType
type, int32_t field)
[
all
...]
/external/icu4c/tools/gentest/
gentest.c
181
count = udbg_enumCount((
UDebugEnumType
)t);
186
" \"%s\", /* %d */ \n", udbg_enumName((
UDebugEnumType
)t,i), i);
194
count = udbg_enumCount((
UDebugEnumType
)t);
206
fprintf(out, "com.ibm.icu.util.ChineseCalendar.%s, /* %d */", udbg_enumName((
UDebugEnumType
)t,i), i);
208
fprintf(out, "com.ibm.icu.util.Calendar.%s, /* %d */", udbg_enumName((
UDebugEnumType
)t,i), i);
214
fprintf(out,"%d, /* %s */", i, udbg_enumName((
UDebugEnumType
)t,i));
/external/icu4c/test/intltest/
fldset.h
36
* @see
UDebugEnumType
38
FieldsSet(
UDebugEnumType
whichEnum);
148
void parseValueEnum(
UDebugEnumType
type,
165
void construct(
UDebugEnumType
whichEnum, int32_t fieldCount);
215
UDebugEnumType
fEnum;
fldset.cpp
20
construct((
UDebugEnumType
)-1, fieldCount);
23
FieldsSet::FieldsSet(
UDebugEnumType
field) {
35
void FieldsSet::construct(
UDebugEnumType
field, int32_t fieldCount) {
224
void FieldsSet::parseValueEnum(
UDebugEnumType
type, const FieldsSet* inheritFrom, int32_t field, const UnicodeString& substr, UErrorCode& status) {
caltest.cpp
[
all
...]
Completed in 201 milliseconds