Searched defs:order1 (Results 1 - 13 of 13) sorted by relevance

/external/skia/tests/
H A DPathOpsConicQuadIntersectionTest.cpp38 int order1 = reduce2.reduce(conic.fPts); local
41 SkDebugf("[%d] conic order=%d\n", index, order1);
44 if (order1 != 3) {
H A DPathOpsCubicConicIntersectionTest.cpp42 int order1 = reduce1.reduce(cubic, SkReduceOrder::kNo_Quadratics); local
44 if (order1 != 4) {
45 SkDebugf("[%d] cubic order=%d\n", index, order1);
H A DPathOpsCubicQuadIntersectionTest.cpp66 int order1 = reduce1.reduce(cubic, SkReduceOrder::kNo_Quadratics); local
68 if (order1 != 4) {
69 SkDebugf("[%d] cubic order=%d\n", iIndex, order1);
H A DPathOpsConicLineIntersectionTest.cpp113 SkPath::Verb order1 = SkReduceOrder::Conic(floatConic, reduced); local
114 if (order1 != SkPath::kConic_Verb) {
115 SkDebugf("%s [%d] conic verb=%d\n", __FUNCTION__, iIndex, order1);
H A DPathOpsCubicLineIntersectionTest.cpp36 int order1 = reduce1.reduce(cubic, SkReduceOrder::kNo_Quadratics); local
38 if (order1 < 4) {
39 SkDebugf("[%d] cubic order=%d\n", iIndex, order1);
46 if (order1 == 4 && order2 == 2) {
136 int order1 = reduce1.reduce(cubic, SkReduceOrder::kNo_Quadratics); local
138 if (order1 < 4) {
139 SkDebugf("[%d] cubic order=%d\n", iIndex, order1);
146 if (order1 == 4 && order2 == 2) {
H A DPathOpsQuadLineIntersectionTest.cpp118 int order1 = reducer1.reduce(quad); local
120 if (order1 < 3) {
121 SkDebugf("%s [%d] quad order=%d\n", __FUNCTION__, iIndex, order1);
H A DPathOpsQuadIntersectionTest.cpp26 int order1 = reduce1.reduce(quad1); local
28 if (order1 < 3) {
30 SkDebugf("[%d] quad1 order=%d\n", static_cast<int>(index), order1);
38 if (order1 == 3 && order2 == 3) {
H A DPathOpsCubicIntersectionTest.cpp28 int order1 = reduce1.reduce(c1, SkReduceOrder::kNo_Quadratics); local
31 if (order1 < 4) {
33 SkDebugf("%s [%d] cubic1 order=%d\n", __FUNCTION__, iIndex, order1);
/external/pdfium/core/fpdftext/
H A Dcpdf_textpagefind.cpp250 int order1 = findEngine.GetCurOrder(); local
252 if (((order1 + MatchedCount1) - 1) > m_findPreStart)
254 order = order1;
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
H A DDateTimeGeneratorTest.java618 DateOrder order1 = getOrdering(style1, uLocale);
620 if (!order1.hasSameOrderAs(order2)) {
623 logln(showOrderComparison(uLocale, style1, style2, order1, order2));
627 private String showOrderComparison(ULocale uLocale, int style1, int style2, DateOrder order1, DateOrder order2) { argument
630 return "Mismatch in in ordering for " + uLocale + ": " + DATE_STYLE_NAMES[style1] + ": " + order1 + ", <" + pattern1
/external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DDateTimeGeneratorTest.java617 DateOrder order1 = getOrdering(style1, uLocale);
619 if (!order1.hasSameOrderAs(order2)) {
622 logln(showOrderComparison(uLocale, style1, style2, order1, order2));
626 private String showOrderComparison(ULocale uLocale, int style1, int style2, DateOrder order1, DateOrder order2) { argument
629 return "Mismatch in in ordering for " + uLocale + ": " + DATE_STYLE_NAMES[style1] + ": " + order1 + ", <" + pattern1
/external/icu/icu4c/source/test/intltest/
H A Dapicoll.cpp652 int32_t order1, order2, order3; local
660 order1 = iterator1->next(success);
669 doAssert((order1 != order2), "The order result should not be the same");
678 doAssert((order1 == order2), "The order result should be the same");
686 doAssert((CollationElementIterator::primaryOrder(order1) ==
688 doAssert((CollationElementIterator::secondaryOrder(order1) ==
690 doAssert((CollationElementIterator::tertiaryOrder(order1) ==
693 order1 = iterator1->next(success); order3 = iterator3->next(success);
700 doAssert((CollationElementIterator::primaryOrder(order1) ==
702 doAssert((CollationElementIterator::tertiaryOrder(order1) !
[all...]
/external/icu/icu4c/source/test/cintltst/
H A Dcapitst.c1272 int32_t order1, order2, order3; local
1330 order1 = ucol_next(iterator1, &status);
1336 doAssert((order1 != order2), "The first iterator advance failed");
1348 doAssert((order1 == order2), "The second iterator advance failed should be the same as first one");
1350 doAssert( (ucol_primaryOrder(order1) == ucol_primaryOrder(order3)), "The primary orders should be identical");
1351 doAssert( (ucol_secondaryOrder(order1) == ucol_secondaryOrder(order3)), "The secondary orders should be identical");
1352 doAssert( (ucol_tertiaryOrder(order1) == ucol_tertiaryOrder(order3)), "The tertiary orders should be identical");
1354 order1=ucol_next(iterator1, &status);
1364 doAssert( (ucol_primaryOrder(order1) == ucol_primaryOrder(order3)), "The primary orders should be identical");
1365 doAssert( (ucol_tertiaryOrder(order1) !
[all...]

Completed in 255 milliseconds