• Home
  • Raw
  • Download

Lines Matching refs:compStr

76 static    ANTLR3_UINT32     compare8	(pANTLR3_STRING string, const char * compStr);
77 static ANTLR3_UINT32 compareUTF16_8 (pANTLR3_STRING string, const char * compStr);
78 static ANTLR3_UINT32 compareUTF16_UTF16(pANTLR3_STRING string, const char * compStr);
79 static ANTLR3_UINT32 compareS (pANTLR3_STRING string, pANTLR3_STRING compStr);
1169 compare8 (pANTLR3_STRING string, const char * compStr) in compare8() argument
1171 return strcmp((const char *)(string->chars), compStr); in compare8()
1179 compareUTF16_8 (pANTLR3_STRING string, const char * compStr) in compareUTF16_8() argument
1186 while (((ANTLR3_UCHAR)(*ourString) != '\0') && ((ANTLR3_UCHAR)(*compStr) != '\0')) in compareUTF16_8()
1188 charDiff = *ourString - *compStr; in compareUTF16_8()
1194 compStr++; in compareUTF16_8()
1199 return (ANTLR3_UINT32)((ANTLR3_UCHAR)(*ourString) - (ANTLR3_UCHAR)(*compStr)); in compareUTF16_8()
1211 pANTLR3_UINT16 compStr; in compareUTF16_UTF16() local
1215 compStr = (pANTLR3_UINT16)(compStr8); in compareUTF16_UTF16()
1217 …while (((ANTLR3_UCHAR)(*ourString) != '\0') && ((ANTLR3_UCHAR)(*((pANTLR3_UINT16)compStr)) != '\… in compareUTF16_UTF16()
1219 charDiff = *ourString - *compStr; in compareUTF16_UTF16()
1225 compStr++; in compareUTF16_UTF16()
1230 return (ANTLR3_UINT32)((ANTLR3_UCHAR)(*ourString) - (ANTLR3_UCHAR)(*compStr)); in compareUTF16_UTF16()
1238 compareS (pANTLR3_STRING string, pANTLR3_STRING compStr) in compareS() argument
1240 return string->compare(string, (const char *)compStr->chars); in compareS()