Lines Matching defs:comment

932                            const struct UString* comment, UErrorCode* status);
935 const struct UString* comment, UErrorCode* status){
952 if(comment != NULL){
953 ustr_cpy(&res->fComment, comment, status);
966 struct SResource* table_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) {
967 struct SResource *res = res_open(bundle, tag, comment, status);
976 struct SResource* array_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) {
977 struct SResource *res = res_open(bundle, tag, comment, status);
1002 const UChar *value, int32_t len, const struct UString* comment,
1004 struct SResource *res = res_open(bundle, tag, comment, status);
1029 struct SResource *string_open(struct SRBRoot *bundle, const char *tag, const UChar *value, int32_t len, const struct UString* comment, UErrorCode *status) {
1030 return stringbase_open(bundle, tag, URES_STRING, value, len, comment, status);
1033 struct SResource *alias_open(struct SRBRoot *bundle, const char *tag, UChar *value, int32_t len, const struct UString* comment, UErrorCode *status) {
1034 return stringbase_open(bundle, tag, URES_ALIAS, value, len, comment, status);
1038 struct SResource* intvector_open(struct SRBRoot *bundle, const char *tag, const struct UString* comment, UErrorCode *status) {
1039 struct SResource *res = res_open(bundle, tag, comment, status);
1055 struct SResource *int_open(struct SRBRoot *bundle, const char *tag, int32_t value, const struct UString* comment, UErrorCode *status) {
1056 struct SResource *res = res_open(bundle, tag, comment, status);
1067 struct SResource *bin_open(struct SRBRoot *bundle, const char *tag, uint32_t length, uint8_t *data, const char* fileName, const struct UString* comment, UErrorCode *status) {
1068 struct SResource *res = res_open(bundle, tag, comment, status);
1102 struct SRBRoot *bundle_open(const struct UString* comment, UBool isPoolBundle, UErrorCode *status) {
1117 bundle->fRoot = table_open(bundle, NULL, comment, status);