Home
last modified time | relevance | path

Searched refs:firstChar (Results 1 – 2 of 2) sorted by relevance

/netbsd-src/external/gpl3/gcc/dist/gcc/d/dmd/
H A Dobjc.d104 char firstChar = id[0]; in create() local
105 if (firstChar >= 'a' && firstChar <= 'z') in create()
106 firstChar = cast(char)(firstChar - 'a' + 'A'); in create()
108 buf.writeByte(firstChar); in create()
/netbsd-src/external/public-domain/sqlite/dist/
H A Dsqlite3.c128152 unsigned char firstChar;
128183 firstChar = zNeedle[0];
128185 && (zHaystack[0]!=firstChar || memcmp(zHaystack, zNeedle, nNeedle)!=0)