Searched refs:sIndex (Results 1 - 20 of 20) sorted by relevance

/external/skia/src/pathops/
H A DSkPathOpsCommon.cpp309 int sIndex = sLink[rIndex]; variable
310 SkASSERT(sIndex != SK_MaxS32);
313 if (sIndex < 0) {
314 eIndex = sLink[~sIndex];
315 sLink[~sIndex] = SK_MaxS32;
317 eIndex = eLink[sIndex];
318 eLink[sIndex] = SK_MaxS32;
322 SkDebugf("%s sIndex=%c%d eIndex=%c%d\n", __FUNCTION__, sIndex < 0 ? 's' : 'e',
323 sIndex <
[all...]
H A DSkOpAngle.cpp434 int sIndex = -1; local
464 sIndex = index;
485 sIndex = index;
489 const SkDCurve& curve = sIndex ? rh->fCurvePart : this->fCurvePart;
490 const SkOpSegment& segment = sIndex ? *rh->segment() : *this->segment();
491 double tStart = sIndex ? rh->fStart->t() : fStart->t();
497 return sRayLonger ^ (sIndex == 0) ^ (septDir < 0);
/external/icu/icu4c/source/layout/
H A DHangulLayoutEngine.cpp134 le_int32 sIndex = syllable - HSYL_FIRST; local
136 if (sIndex < 0 || sIndex >= HSYL_COUNT) {
140 lead = LJMO_FIRST + (sIndex / HSYL_LVCNT);
141 vowel = VJMO_FIRST + (sIndex % HSYL_LVCNT) / TJMO_COUNT;
142 trail = TJMO_FIRST + (sIndex % TJMO_COUNT);
/external/icu/icu4c/source/i18n/
H A Dcollationfastlatin.cpp812 const uint8_t *s8, int32_t &sIndex, int32_t sLength) {
815 int32_t i2 = sIndex + 1;
817 uint8_t t1 = s8[sIndex];
819 sIndex += 2;
835 const uint8_t *s8, int32_t &sIndex) {
840 return table[((c - 0xc2) << 6) + s8[sIndex++]]; // 0080..017F
842 uint8_t t2 = s8[sIndex + 1];
843 sIndex += 2;
855 const UChar *s16, const uint8_t *s8, int32_t &sIndex, int32_t &sLength) {
863 sLength = sIndex
811 lookupUTF8(const uint16_t *table, UChar32 c, const uint8_t *s8, int32_t &sIndex, int32_t sLength) argument
834 lookupUTF8Unsafe(const uint16_t *table, UChar32 c, const uint8_t *s8, int32_t &sIndex) argument
854 nextPair(const uint16_t *table, UChar32 c, uint32_t ce, const UChar *s16, const uint8_t *s8, int32_t &sIndex, int32_t &sLength) argument
[all...]
H A Dcollationfastlatin.h222 const uint8_t *s8, int32_t &sIndex, int32_t sLength);
224 const uint8_t *s8, int32_t &sIndex);
227 const UChar *s16, const uint8_t *s8, int32_t &sIndex, int32_t &sLength);
/external/icu/android_icu4j/src/main/java/android/icu/util/
H A DBytesTrie.java246 * @param sIndex The start index of the byte sequence in s.
250 public Result next(byte[] s, int sIndex, int sLimit) { argument
251 if(sIndex>=sLimit) {
265 if(sIndex==sLimit) {
272 inByte=s[sIndex++];
292 if(sIndex==sLimit) {
300 inByte=s[sIndex++];
H A DCharsTrie.java214 * @param sIndex The start index of the string in s.
218 public Result next(CharSequence s, int sIndex, int sLimit) { argument
219 if(sIndex>=sLimit) {
233 if(sIndex==sLimit) {
240 inUnit=s.charAt(sIndex++);
260 if(sIndex==sLimit) {
268 inUnit=s.charAt(sIndex++);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DBytesTrie.java263 * @param sIndex The start index of the byte sequence in s.
268 public Result next(byte[] s, int sIndex, int sLimit) { argument
269 if(sIndex>=sLimit) {
283 if(sIndex==sLimit) {
290 inByte=s[sIndex++];
310 if(sIndex==sLimit) {
318 inByte=s[sIndex++];
H A DCharsTrie.java225 * @param sIndex The start index of the string in s.
230 public Result next(CharSequence s, int sIndex, int sLimit) { argument
231 if(sIndex>=sLimit) {
245 if(sIndex==sLimit) {
252 inUnit=s.charAt(sIndex++);
272 if(sIndex==sLimit) {
280 inUnit=s.charAt(sIndex++);
/external/skia/tests/
H A DPathOpsAngleIdeas.cpp525 int sIndex = (int) (smallestTs[1] < 1);
526 REPORTER_ASSERT(reporter, smallestTs[sIndex ^ 1] == 1);
527 double t = smallestTs[sIndex];
528 const SkDQuad& q = *quads[sIndex];
530 SkDVector end = rays[sIndex][1] - origin;
536 SkDebugf("rayDist>endDist:%d sIndex==0:%d vDir[sIndex]<0:%d midXray<0:%d\n",
537 rayDist > endDist, sIndex == 0, vDir[sIndex] < 0, midXray < 0);
540 == SkScalarSignAsInt(SkDoubleToScalar(vDir[sIndex])));
[all...]
/external/icu/android_icu4j/src/main/java/android/icu/impl/coll/
H A DCollationFastLatin.java682 * Java returns a negative result (use the '~' operator) if sIndex is to be incremented.
683 * C++ modifies sIndex.
685 private static long nextPair(char[] table, int c, int ce, CharSequence s16, int sIndex) { argument
696 if(sIndex != s16.length()) {
699 int nextIndex = sIndex;
/external/icu/icu4j/main/classes/collate/src/com/ibm/icu/impl/coll/
H A DCollationFastLatin.java678 * Java returns a negative result (use the '~' operator) if sIndex is to be incremented.
679 * C++ modifies sIndex.
681 private static long nextPair(char[] table, int c, int ce, CharSequence s16, int sIndex) { argument
692 if(sIndex != s16.length()) {
695 int nextIndex = sIndex;
/external/skia/samplecode/
H A DSamplePathFuzz.cpp367 for (uint32_t sIndex = 0; sIndex < segments; ++sIndex) {
/external/icu/icu4c/source/test/cintltst/
H A Dtrie2test.c277 int32_t i, length, sIndex, countValues; local
302 sIndex=(int32_t)(p-s);
303 U16_NEXT(s, sIndex, length, c2);
327 sIndex=(int32_t)(p-s);
328 U16_PREV(s, 0, sIndex, c2);
H A Dcnumtst.c2441 int32_t i, sIndex; local
2447 for (sIndex = 0; sIndex < LENGTH(currencyStyles); ++sIndex) {
2448 UNumberFormatStyle style = currencyStyles[sIndex];
2469 int32_t ulenExp = u_unescape(DATA[i][3 + sIndex], ubufExpected, kUBufMax);
2472 localeString, currencyISOCode, DATA[i][3 + sIndex]);
/external/icu/icu4c/source/common/
H A Duresbund.cpp1422 static const UChar* ures_getStringWithAlias(const UResourceBundle *resB, Resource r, int32_t sIndex, int32_t *len, UErrorCode *status) { argument
1425 UResourceBundle *tempRes = ures_getByIndex(resB, sIndex, NULL, status);
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dcom.ibm.icu_4.2.1.v20100412.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
H A Dorg.eclipse.swt.gtk.linux.x86_3.6.1.v3657a.jarMETA-INF/MANIFEST.MF META-INF/ECLIPSEF.SF META-INF/ECLIPSEF.RSA META ...
/external/libgdx/backends/gdx-backend-moe/libs/
H A Dintel-moe-core.jarMETA-INF/ META-INF/MANIFEST.MF LICENSE SQLite/ SQLite/Authorizer.class Authorizer.java package ...
/external/libgdx/backends/gdx-backends-gwt/libs/
H A Dgwt-dev.jarMETA-INF/ META-INF/MANIFEST.MF com/ com/google/ com/google/gwt/ com/google/gwt/core/ ...

Completed in 576 milliseconds