Searched refs:compStr (Results 1 - 4 of 4) sorted by relevance

/external/antlr/antlr-3.4/runtime/C/include/
H A Dantlr3string.h156 ANTLR3_UINT32 (*compare8) (struct ANTLR3_STRING_struct * string, const char * compStr);
162 ANTLR3_UINT32 (*compare) (struct ANTLR3_STRING_struct * string, const char * compStr);
168 ANTLR3_UINT32 (*compareS) (struct ANTLR3_STRING_struct * string, struct ANTLR3_STRING_struct * compStr);
/external/antlr/antlr-3.4/runtime/C/src/
H A Dantlr3string.c76 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) argument
1171 return strcmp((const char *)(string->chars), compStr);
1179 compareUTF16_8 (pANTLR3_STRING string, const char * compStr) argument
1186 while (((ANTLR3_UCHAR)(*ourString) != '\0') && ((ANTLR3_UCHAR)(*compStr) != '\0'))
1188 charDiff = *ourString - *compStr;
1194 compStr
1211 pANTLR3_UINT16 compStr; local
1238 compareS(pANTLR3_STRING string, pANTLR3_STRING compStr) argument
[all...]
/external/clang/lib/Sema/
H A DSemaExprMember.cpp289 const char *compStr = CompName->getNameStart(); local
298 bool HexSwizzle = *compStr == 's' || *compStr == 'S';
307 if (!strcmp(compStr, "hi") || !strcmp(compStr, "lo") ||
308 !strcmp(compStr, "even") || !strcmp(compStr, "odd")) {
311 (Idx = vecType->getPointAccessorIdx(*compStr)) != -1) {
312 bool HasRGBA = IsRGBA(*compStr);
316 if (HasRGBA != IsRGBA(*compStr))
[all...]
H A DSemaPseudoObject.cpp489 const char *compStr = setterName->getNameStart(); local
490 compStr += 3;
491 IdentifierInfo *getterName = &S.Context.Idents.get(compStr);

Completed in 203 milliseconds