HomeSort by relevance Sort by last modified time
    Searched defs:ppos (Results 1 - 25 of 28) sorted by null

1 2

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
IntlTestDateFormatAPIC.java 54 ParsePosition ppos = new ParsePosition(0); local
80 sdf.parse(str, ppos);
110 Number obj = fmt.parse(str, ppos);
135 Number obj = fmt.parse(str, ppos);
TimeUnitTest.java 51 ParsePosition ppos = new ParsePosition(0); local
53 tuf.parseObject(parseString, ppos);
58 assertEquals("Test10219FractionalPluralParse", parseString.length(), ppos.getIndex());
DateFormatRegressionTest.java 559 ParsePosition ppos[] = {new ParsePosition(10), new ParsePosition(0), new ParsePosition(0)}; local
566 ParsePosition finish = ppos[i];
    [all...]
DateFormatTest.java 3654 ParsePosition ppos = new ParsePosition(0); local
4203 ParsePosition ppos = new ParsePosition(0); local
4210 dfmt.parse(result.toString(), rootChineseCalendar, ppos); local
4325 ParsePosition ppos = new ParsePosition(0); local
4326 dfmt.parse(result.toString(), cal, ppos); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDateFormatAPIC.java 50 ParsePosition ppos = new ParsePosition(0); local
76 sdf.parse(str, ppos);
106 Number obj = fmt.parse(str, ppos);
131 Number obj = fmt.parse(str, ppos);
TimeUnitTest.java 47 ParsePosition ppos = new ParsePosition(0); local
49 tuf.parseObject(parseString, ppos);
54 assertEquals("Test10219FractionalPluralParse", parseString.length(), ppos.getIndex());
DateFormatRegressionTest.java 555 ParsePosition ppos[] = {new ParsePosition(10), new ParsePosition(0), new ParsePosition(0)}; local
562 ParsePosition finish = ppos[i];
    [all...]
DateFormatTest.java 3650 ParsePosition ppos = new ParsePosition(0); local
4199 ParsePosition ppos = new ParsePosition(0); local
4206 dfmt.parse(result.toString(), rootChineseCalendar, ppos); local
4321 ParsePosition ppos = new ParsePosition(0); local
4322 dfmt.parse(result.toString(), cal, ppos); local
    [all...]
  /frameworks/av/media/libstagefright/codecs/amrnb/dec/src/
ph_disp.cpp 460 Word16 j, nze, nPulse, ppos;
593 ppos = ps_poss[nPulse];
597 for (i = ppos; i < L_SUBFR; i++)
599 // inno[i1] += inno_sav[ppos] * ph_imp[i1-ppos]
600 tmp1 = mult(inno_sav[ppos], ph_imp[j++]);
604 for (i = 0; i < ppos; i++)
606 // inno[i] += inno_sav[ppos] * ph_imp[L_SUBFR-ppos+i]
607 tmp1 = mult(inno_sav[ppos], ph_imp[j++])
679 Word16 ppos; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
dtfmapts.cpp 289 ParsePosition ppos; local
317 sdf.parse(str, ppos);
352 fmt.parse(str, obj, ppos);
372 fmt.parse(str, obj, ppos);
dtfmrgts.cpp 821 ParsePosition ppos [] = { local
841 ParsePosition finish = ppos[i];
    [all...]
dtfmttst.cpp 3466 ParsePosition ppos; local
    [all...]
numfmtst.cpp 385 ParsePosition ppos; local
386 fmtPtr->parse(tuple.parse, result, ppos);
387 if (ppos.getIndex() == 0) {
429 ParsePosition ppos; local
431 fmtPtr->parseCurrency(tuple.parse, ppos));
432 if (ppos.getIndex() == 0) {
620 ParsePosition ppos; local
621 LocalPointer<CurrencyAmount> currAmt(test->parseCurrency("",ppos));
623 if (ppos.getIndex()) {
3145 ParsePosition ppos; local
7628 ParsePosition ppos; local
7644 ParsePosition ppos; local
7769 ParsePosition ppos; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
TransliteratorIDParser.java 284 ParsePosition ppos = new ParsePosition(pos[0]); local
286 filter = new UnicodeSet(id, ppos, null);
292 String pattern = id.substring(pos[0], ppos.getIndex());
293 pos[0] = ppos.getIndex();
615 ParsePosition ppos = new ParsePosition(pos[0]); local
617 new UnicodeSet(id, ppos, null);
618 filter = id.substring(pos[0], ppos.getIndex());
619 pos[0] = ppos.getIndex();
  /external/icu/icu4j/main/classes/translit/src/com/ibm/icu/text/
TransliteratorIDParser.java 283 ParsePosition ppos = new ParsePosition(pos[0]); local
285 filter = new UnicodeSet(id, ppos, null);
291 String pattern = id.substring(pos[0], ppos.getIndex());
292 pos[0] = ppos.getIndex();
614 ParsePosition ppos = new ParsePosition(pos[0]); local
616 new UnicodeSet(id, ppos, null);
617 filter = id.substring(pos[0], ppos.getIndex());
618 pos[0] = ppos.getIndex();
  /external/wpa_supplicant_8/src/eap_peer/
ikev2.c 203 const u8 *pend, *ppos; local
249 ppos = (const u8 *) (p + 1);
251 if (p->spi_size > pend - ppos) {
258 ppos, p->spi_size);
259 ppos += p->spi_size;
278 int tlen = ikev2_parse_transform(prop, ppos, pend);
281 ppos += tlen;
284 if (ppos != pend) {
  /external/wpa_supplicant_8/src/eap_server/
ikev2.c 213 const u8 *pend, *ppos; local
257 ppos = (const u8 *) (p + 1);
259 if (p->spi_size > pend - ppos) {
266 ppos, p->spi_size);
267 ppos += p->spi_size;
286 int tlen = ikev2_parse_transform(data, prop, ppos, pend);
289 ppos += tlen;
292 if (ppos != pend) {
  /external/icu/icu4c/source/test/cintltst/
cnmdptst.c 191 int32_t ppos; local
284 ppos=0;
285 a=unum_parseDouble(fmt, str, u_strlen(str), &ppos, &status);
286 if (ppos== u_strlen(str)) {
291 log_err(" FAIL: Partial parse ( %d chars ) -> %e\n", ppos, a);
314 ppos=0;
315 a=unum_parseDouble(fmt, str, u_strlen(str), &ppos, &status);
316 if (ppos== u_strlen(str)) {
322 log_err(" FAIL: Partial parse ( %d chars ) -> %e\n", ppos, a);
    [all...]
  /external/wpa_supplicant_8/src/radius/
radius.c 975 u8 *plain, *ppos, *res; local
1000 ppos = plain = os_malloc(plen);
1024 *ppos++ = *pos++ ^ hash[i];
    [all...]
  /external/opencv3/modules/videoio/src/
cap_mjpeg_encoder.cpp 563 size_t ppos = frameNumIndexes.back(); local
565 strm.patchInt(nframes, ppos);
    [all...]
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /external/libgdx/backends/gdx-backend-moe/libs/
intel-moe-core.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/53.1/
icu4j-53.1.jar 

Completed in 3787 milliseconds

1 2