Home | History | Annotate | Download | only in i18n

Lines Matching defs:SingleID

98     class SingleID : public UMemory {
103 SingleID(const UnicodeString& c, const UnicodeString& b,
105 SingleID(const UnicodeString& c, const UnicodeString& b);
110 SingleID(const SingleID &other); // forbid copying of this class
111 SingleID &operator=(const SingleID &other); // forbid copying of this class
121 * @return a SingleID object or null if the parse fails
123 static SingleID* parseFilterID(const UnicodeString& id, int32_t& pos);
134 * SingleID is constructed for the reverse direction.
135 * @return a SingleID object or null
137 static SingleID* parseSingleID(const UnicodeString& id, int32_t& pos,
180 * @param list OUTPUT parameter that receives a list of SingleID
195 * Convert the elements of the 'list' vector, which are SingleID
203 * SingleID entries to actual transliterators.
205 * @param list vector of SingleID objects. On exit, vector
321 * Givens a Specs object, convert it to a SingleID object. The
322 * Spec object is a more unprocessed parse result. The SingleID
326 * @return a SingleID; never returns null. Returned object always
329 static SingleID* specsToID(const Specs* specs, int32_t dir);
332 * Given a Specs object, return a SingleID representing the
336 * @return a SingleID or null. Returned object always has
339 static SingleID* specsToSpecialInverse(const Specs& specs, UErrorCode &status);
354 friend class SingleID;