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

/haiku/src/tests/kits/locale/
H A DUnicodeCharTest.h27 bool isAlpha; member in struct:UnicodeCharTest::Result
H A DUnicodeCharTest.cpp153 CPPUNIT_ASSERT_EQUAL(result.isAlpha, BUnicodeChar::IsAlpha(i));
/haiku/src/add-ons/translators/psd/
H A DPSDLoader.cpp335 bool isAlpha = colorFormat == PSD_COLOR_FORMAT_GRAY_A; local
343 ptr[3] = isAlpha ? imageData[1][index] : 255;
356 bool isAlpha = colorFormat == PSD_COLOR_FORMAT_RGB_A; local
364 ptr[3] = isAlpha ? imageData[3][index] : 255;
376 bool isAlpha = colorFormat == PSD_COLOR_FORMAT_CMYK_A; local
388 ptr[3] = isAlpha ? imageData[4][index] : 255;
400 bool isAlpha = colorFormat == PSD_COLOR_FORMAT_LAB_A; local
443 ptr[3] = isAlpha ? imageData[3][index] : 255;
/haiku/src/apps/mail/
H A DContent.cpp1432 bool isAlpha, isApost, isCap;
1440 for (start = offset, c = text[start], isAlpha = isalpha(c), isApost = (c=='\'');
1441 (start >= 0) && (isAlpha || (isApost
1444 start--, c = text[start], isAlpha = isalpha(c), isApost = (c == '\'')) {}
1447 for (end = offset, c = text[end], isAlpha = isalpha(c), isApost = (c == '\'');
1448 (end < length) && (isAlpha || (isApost
1450 end++, c = text[end], isAlpha = isalpha(c), isApost = (c == '\'')) {}
2778 bool isAlpha;
2787 isAlpha = isalpha(*next);
2789 if (!word && isAlpha) {
[all...]

Completed in 114 milliseconds