Home | History | Annotate | Download | only in unicode

Lines Matching refs:DataMap

15 #include "unicode/datamap.h"
28 * DataMap *settings = NULL;
29 * DataMap *cases = NULL;
42 DataMap *fInfo;
43 DataMap *fCurrSettings;
44 DataMap *fCurrCase;
57 /** Get a pointer to an object owned DataMap that contains more information on this
60 * @param info pass in a const DataMap pointer. If no info, it will be set to NULL
62 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const = 0;
65 * DataMap is owned by the object and should not be deleted.
66 * @param settings a DataMap pointer provided by the user. Will be NULL if
72 virtual UBool nextSettings(const DataMap *& settings, UErrorCode &status) = 0;
75 * DataMap is owned by the object and should not be deleted.
76 * @param data a DataMap pointer provided by the user. Will be NULL if
82 virtual UBool nextCase(const DataMap *& data, UErrorCode &status) = 0;
104 virtual UBool getInfo(const DataMap *& info, UErrorCode &status) const;
106 virtual UBool nextSettings(const DataMap *& settings, UErrorCode &status);
107 virtual UBool nextCase(const DataMap *& nextCase, UErrorCode &status);