зеркало из https://github.com/mozilla/gecko-dev.git
fix bad funct name. Thanks brade
This commit is contained in:
Родитель
360dad7171
Коммит
bfdb99d1d9
|
@ -191,7 +191,7 @@ PRIVATE PRBool uCnGAlways8BytesGLComposedHangul(
|
|||
);
|
||||
|
||||
|
||||
PRIVATE PRBool uComposedHangulCommon(
|
||||
PRIVATE PRBool uGenComposedHangulCommon(
|
||||
uShiftTable *shift,
|
||||
PRInt32* state,
|
||||
PRUint16 in,
|
||||
|
@ -716,7 +716,7 @@ PRIVATE PRBool uCheckAndGenAlways1ByteShiftGL(
|
|||
/*=================================================================================
|
||||
|
||||
=================================================================================*/
|
||||
PRIVATE PRBool uComposedHangulCommon(
|
||||
PRIVATE PRBool uGenComposedHangulCommon(
|
||||
uShiftTable *shift,
|
||||
PRInt32* state,
|
||||
PRUint16 in,
|
||||
|
@ -769,7 +769,7 @@ PRIVATE PRBool uCnGAlways8BytesComposedHangul(
|
|||
PRUint32* outlen
|
||||
)
|
||||
{
|
||||
return uComposedHangulCommon(shift,state,in,out,outbuflen,outlen,0xff);
|
||||
return uGenComposedHangulCommon(shift,state,in,out,outbuflen,outlen,0xff);
|
||||
}
|
||||
PRIVATE PRBool uCnGAlways8BytesGLComposedHangul(
|
||||
uShiftTable *shift,
|
||||
|
@ -780,5 +780,5 @@ PRIVATE PRBool uCnGAlways8BytesGLComposedHangul(
|
|||
PRUint32* outlen
|
||||
)
|
||||
{
|
||||
return uComposedHangulCommon(shift,state,in,out,outbuflen,outlen,0x7f);
|
||||
return uGenComposedHangulCommon(shift,state,in,out,outbuflen,outlen,0x7f);
|
||||
}
|
||||
|
|
|
@ -183,7 +183,7 @@ PRIVATE PRBool uCnSAlways8BytesGLComposedHangul(
|
|||
PRUint32* inscanlen
|
||||
);
|
||||
|
||||
PRIVATE PRBool uComposedHangulCommon(
|
||||
PRIVATE PRBool uScanComposedHangulCommon(
|
||||
uShiftTable *shift,
|
||||
PRInt32* state,
|
||||
unsigned char *in,
|
||||
|
@ -674,7 +674,7 @@ PRIVATE PRBool uCheckAndScanAlways1ByteShiftGL(
|
|||
#define VCount 21
|
||||
#define TCount 28
|
||||
#define NCount (VCount * TCount)
|
||||
PRIVATE PRBool uComposedHanguleCommon(
|
||||
PRIVATE PRBool uScanComposedHangulCommon(
|
||||
uShiftTable *shift,
|
||||
PRInt32* state,
|
||||
unsigned char *in,
|
||||
|
@ -758,7 +758,7 @@ PRIVATE PRBool uCnSAlways8BytesComposedHangul(
|
|||
PRUint32* inscanlen
|
||||
)
|
||||
{
|
||||
return uComposedHangulCommon(shift,state,in,out,inbuflen,inscanlen,0xff);
|
||||
return uScanComposedHangulCommon(shift,state,in,out,inbuflen,inscanlen,0xff);
|
||||
}
|
||||
/*=================================================================================
|
||||
|
||||
|
@ -772,5 +772,5 @@ PRIVATE PRBool uCnSAlways8BytesGLComposedHangul(
|
|||
PRUint32* inscanlen
|
||||
)
|
||||
{
|
||||
return uComposedHangulCommon(shift,state,in,out,inbuflen,inscanlen,0x7f);
|
||||
return uScanComposedHangulCommon(shift,state,in,out,inbuflen,inscanlen,0x7f);
|
||||
}
|
||||
|
|
|
@ -191,7 +191,7 @@ PRIVATE PRBool uCnGAlways8BytesGLComposedHangul(
|
|||
);
|
||||
|
||||
|
||||
PRIVATE PRBool uComposedHangulCommon(
|
||||
PRIVATE PRBool uGenComposedHangulCommon(
|
||||
uShiftTable *shift,
|
||||
PRInt32* state,
|
||||
PRUint16 in,
|
||||
|
@ -716,7 +716,7 @@ PRIVATE PRBool uCheckAndGenAlways1ByteShiftGL(
|
|||
/*=================================================================================
|
||||
|
||||
=================================================================================*/
|
||||
PRIVATE PRBool uComposedHangulCommon(
|
||||
PRIVATE PRBool uGenComposedHangulCommon(
|
||||
uShiftTable *shift,
|
||||
PRInt32* state,
|
||||
PRUint16 in,
|
||||
|
@ -769,7 +769,7 @@ PRIVATE PRBool uCnGAlways8BytesComposedHangul(
|
|||
PRUint32* outlen
|
||||
)
|
||||
{
|
||||
return uComposedHangulCommon(shift,state,in,out,outbuflen,outlen,0xff);
|
||||
return uGenComposedHangulCommon(shift,state,in,out,outbuflen,outlen,0xff);
|
||||
}
|
||||
PRIVATE PRBool uCnGAlways8BytesGLComposedHangul(
|
||||
uShiftTable *shift,
|
||||
|
@ -780,5 +780,5 @@ PRIVATE PRBool uCnGAlways8BytesGLComposedHangul(
|
|||
PRUint32* outlen
|
||||
)
|
||||
{
|
||||
return uComposedHangulCommon(shift,state,in,out,outbuflen,outlen,0x7f);
|
||||
return uGenComposedHangulCommon(shift,state,in,out,outbuflen,outlen,0x7f);
|
||||
}
|
||||
|
|
|
@ -183,7 +183,7 @@ PRIVATE PRBool uCnSAlways8BytesGLComposedHangul(
|
|||
PRUint32* inscanlen
|
||||
);
|
||||
|
||||
PRIVATE PRBool uComposedHangulCommon(
|
||||
PRIVATE PRBool uScanComposedHangulCommon(
|
||||
uShiftTable *shift,
|
||||
PRInt32* state,
|
||||
unsigned char *in,
|
||||
|
@ -674,7 +674,7 @@ PRIVATE PRBool uCheckAndScanAlways1ByteShiftGL(
|
|||
#define VCount 21
|
||||
#define TCount 28
|
||||
#define NCount (VCount * TCount)
|
||||
PRIVATE PRBool uComposedHanguleCommon(
|
||||
PRIVATE PRBool uScanComposedHangulCommon(
|
||||
uShiftTable *shift,
|
||||
PRInt32* state,
|
||||
unsigned char *in,
|
||||
|
@ -758,7 +758,7 @@ PRIVATE PRBool uCnSAlways8BytesComposedHangul(
|
|||
PRUint32* inscanlen
|
||||
)
|
||||
{
|
||||
return uComposedHangulCommon(shift,state,in,out,inbuflen,inscanlen,0xff);
|
||||
return uScanComposedHangulCommon(shift,state,in,out,inbuflen,inscanlen,0xff);
|
||||
}
|
||||
/*=================================================================================
|
||||
|
||||
|
@ -772,5 +772,5 @@ PRIVATE PRBool uCnSAlways8BytesGLComposedHangul(
|
|||
PRUint32* inscanlen
|
||||
)
|
||||
{
|
||||
return uComposedHangulCommon(shift,state,in,out,inbuflen,inscanlen,0x7f);
|
||||
return uScanComposedHangulCommon(shift,state,in,out,inbuflen,inscanlen,0x7f);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче