| 145 | } |
| 146 | |
| 147 | const char* ULScriptDeclaredName(ULScript ulscript) { |
| 148 | int i_ulscript = ulscript; |
| 149 | if (i_ulscript < 0) {i_ulscript = UNKNOWN_ULSCRIPT;} |
| 150 | if (i_ulscript >= NUM_ULSCRIPTS) {i_ulscript = UNKNOWN_ULSCRIPT;} |
| 151 | return kULScriptToCName[i_ulscript]; |
| 152 | } |
| 153 | |
| 154 | ULScriptRType ULScriptRecognitionType(ULScript ulscript) { |
| 155 | int i_ulscript = ulscript; |
nothing calls this directly
no outgoing calls
no test coverage detected