Home | History | Annotate | Download | only in emoji

Lines Matching refs:pua

24 // Here, PUA (or Android PUA) means Unicode PUA defined for various emoji. The
25 // PUA supports emoji of DoCoMo, KDDI, Softbank and Goomoji. Each PUA defined
26 // by the other vendors (careers) are called Vendor Specific PUA (vsp).
32 // Returns binary image data corresponding to "pua". The size of binary is
33 // stored to "size". Returns NULL if there's no mapping from the "pua" to a
38 virtual const char *GetImageBinaryFromAndroidPua(int pua, int *size) = 0;
48 // Returns binary image data corresponding to Vendor-specific PUA "vsp".
56 // Returns Android PUA corresponding to "sjis". Returns -1 when there's no
57 // mapping from "sjis" to a Android PUA.
60 // Returns Vendor-specific Shift jis code corresponding to "pua". Returns -1
61 // when ther's no mapping from "pua" to a specific sjis.
62 virtual int GetVendorSpecificSjisFromAndroidPua(int pua) = 0;
64 // Returns maximum Vendor-Specific PUA. This is the last valid value.
67 // Returns minimum Vendor-Specific PUA.
70 // Returns maximum Android PUA. This the last valid value.
73 // Returns minimum Android PUA.
76 // Returns Android PUA corresponding to Vendor-Specific Unicode "vsp". Returns
77 // -1 when there's no mapping from "vsp" to a Android PUA.
80 // Returns Vendor-specific PUA corresponding to "pua". Returns -1 when
81 // there's no mapping from "pua" to a specific unicode.
82 virtual int GetVendorSpecificPuaFromAndroidPua(int pua) = 0;