Home
last modified time | relevance | path

Searched refs:MIXED (Results 1 - 25 of 26) sorted by relevance

12

/third_party/icu/ohos_icu4j/src/main/tests/ohos/global/icu/dev/test/bidi/
H A DTestData.java223 Bidi.LTR, Bidi.RTL, Bidi.LTR, Bidi.MIXED, Bidi.MIXED, Bidi.MIXED,
224 Bidi.RTL, Bidi.MIXED, Bidi.MIXED, Bidi.MIXED, Bidi.MIXED, Bidi.MIXED,
225 Bidi.MIXED, Bidi.MIXED, Bid
[all...]
H A DTestFailureRecovery.java113 if (bidi.getDirection() != Bidi.MIXED) { in testFailureRecovery()
114 errln("getDirection for 1st surrogate char should be MIXED"); in testFailureRecovery()
H A DTestBidi.java441 assertEquals("\nWrong direction #2", Bidi.MIXED, bidi.getDirection()); in doMisc()
442 assertEquals("\nWrong direction #3", Bidi.MIXED, bidiLine.getDirection()); in doMisc()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/bidi/
H A DTestData.java220 Bidi.LTR, Bidi.RTL, Bidi.LTR, Bidi.MIXED, Bidi.MIXED, Bidi.MIXED,
221 Bidi.RTL, Bidi.MIXED, Bidi.MIXED, Bidi.MIXED, Bidi.MIXED, Bidi.MIXED,
222 Bidi.MIXED, Bidi.MIXED, Bid
[all...]
H A DTestFailureRecovery.java110 if (bidi.getDirection() != Bidi.MIXED) { in testFailureRecovery()
111 errln("getDirection for 1st surrogate char should be MIXED"); in testFailureRecovery()
H A DTestBidi.java438 assertEquals("\nWrong direction #2", Bidi.MIXED, bidi.getDirection()); in doMisc()
439 assertEquals("\nWrong direction #3", Bidi.MIXED, bidiLine.getDirection()); in doMisc()
/third_party/mesa3d/src/compiler/glsl/
H A Dopt_minmax.cpp53 MIXED enumerator
90 * MIXED if some vector components of `a' are strictly lower than of `b' while
179 return MIXED; in compare_components()
253 if (ret == MIXED) in smaller_constant()
268 if (ret == MIXED) in larger_constant()
394 if (cr >= EQUAL && cr != MIXED) in prune_expression()
403 if (cr > EQUAL && cr != MIXED) in prune_expression()
437 } else if (cr == MIXED) { in prune_expression()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DBidiLine.java158 if (paraBidi.direction != Bidi.MIXED) { in setLine()
196 lineBidi.direction = Bidi.MIXED; in setLine()
206 lineBidi.direction = Bidi.MIXED; in setLine()
242 if (bidi.direction != Bidi.MIXED || charIndex >= bidi.trailingWSStart) { in getLevelAt()
486 if (bidi.direction != Bidi.MIXED) { in getRuns()
490 } else /* Bidi.MIXED, length>0 */ { in getRuns()
H A DBidi.java81 * <li>{@link #MIXED}
306 * if (direction != Bidi.MIXED) {
686 public static final byte MIXED = 2; field in Bidi
2376 return MIXED; in directionFromFlags()
2442 if (dirct != MIXED) { in resolveExplicitLevels()
3718 * direction is not MIXED in setParaRunsOnly()
3837 this.direction = MIXED; in setParaRunsOnly()
4387 * @return a value of <code>LTR</code>, <code>RTL</code> or <code>MIXED</code>
4397 * @see #MIXED
4933 * never <code>MIXED</cod
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/
H A DBidiLine.java159 if (paraBidi.direction != Bidi.MIXED) { in setLine()
197 lineBidi.direction = Bidi.MIXED; in setLine()
207 lineBidi.direction = Bidi.MIXED; in setLine()
243 if (bidi.direction != Bidi.MIXED || charIndex >= bidi.trailingWSStart) { in getLevelAt()
487 if (bidi.direction != Bidi.MIXED) { in getRuns()
491 } else /* Bidi.MIXED, length>0 */ { in getRuns()
H A DBidi.java82 * <li>{@link #MIXED}
307 * if (direction != Bidi.MIXED) {
678 public static final byte MIXED = 2; field in Bidi
2342 return MIXED; in directionFromFlags()
2408 if (dirct != MIXED) { in resolveExplicitLevels()
3683 * direction is not MIXED in setParaRunsOnly()
3802 this.direction = MIXED; in setParaRunsOnly()
4346 * @return a value of <code>LTR</code>, <code>RTL</code> or <code>MIXED</code>
4356 * @see #MIXED
4872 * never <code>MIXED</cod
[all...]
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/units/
H A DMeasureUnitImpl.java24 * The complexity, either SINGLE, COMPOUND, or MIXED.
129 if (this.getComplexity() == MeasureUnit.Complexity.MIXED) { in extractIndividualUnitsWithIndices()
249 // Note: don't sort a MIXED unit in serialize()
265 if (this.getComplexity() == MeasureUnit.Complexity.MIXED) { in serialize()
530 fSawAnd ? MeasureUnit.Complexity.MIXED : MeasureUnit.Complexity.COMPOUND; in parse()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/number/
H A DLongNameMultiplexer.java62 if (unit.getComplexity() == MeasureUnit.Complexity.MIXED) { in forMeasureUnits()
H A DMixedUnitLongNameHandler.java19 /** Similar to LongNameHandler, but only for MIXED units. */
47 * MeasureUnit. It must be a MIXED unit.
65 assert mixedUnit.getComplexity() == MeasureUnit.Complexity.MIXED in forMeasureUnit()
66 : "MixedUnitLongNameHandler only supports MIXED units"; in forMeasureUnit()
H A DLongNameHandler.java708 } else if (mui.getComplexity() == MeasureUnit.Complexity.MIXED) { in calculateGenderForUnit()
709 throw new ICUException("calculateGenderForUnit does not support MIXED units"); in calculateGenderForUnit()
826 assert unit.getComplexity() != Complexity.MIXED in forMeasureUnit()
970 if (productUnit.getComplexity() == Complexity.MIXED) { in processPatternTimes()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
H A DMutableCodePointTrie.java198 } else /* MIXED */ { in getRange()
308 } else /* MIXED */ { in setRange()
376 private static final byte MIXED = 1; field in MutableCodePointTrie
462 if (flags[i] == MIXED) { in getDataBlock()
472 flags[iStart] = MIXED; in getDataBlock()
481 flags[i] = MIXED; in getDataBlock()
630 } else /* MIXED */ { in findHighStart()
942 if (flags[i] == MIXED) { in compactWholeDataBlocks()
968 // Turn it into a MIXED block. in compactWholeDataBlocks()
1074 } else if (flags[i] == MIXED) { in compactData()
[all...]
H A DMeasureUnit.java83 * <li>MIXED: A unit composed of the sum of multiple single units. Examples: foot-and-inch,
111 MIXED enum constant
476 * NOTE: Only works on SINGLE units. If this is a COMPOUND or MIXED unit, an error will
481 * @throws UnsupportedOperationException if this unit is a COMPOUND or MIXED unit.
494 * NOTE: Only works on SINGLE units. If this is a COMPOUND or MIXED unit, an
498 * @throws UnsupportedOperationException if the unit is COMPOUND or MIXED.
509 * NOTE: Only works on SINGLE units. If this is a COMPOUND or MIXED unit, an exception will be thrown.
513 * @throws UnsupportedOperationException if the unit is COMPOUND or MIXED.
524 * NOTE: Only works on SINGLE units. If this is a COMPOUND or MIXED unit, an exception is thrown.
529 * @throws UnsupportedOperationException if the unit is COMPOUND or MIXED
[all...]
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/util/
H A DMutableCodePointTrie.java193 } else /* MIXED */ { in getRange()
301 } else /* MIXED */ { in setRange()
368 private static final byte MIXED = 1; field in MutableCodePointTrie
454 if (flags[i] == MIXED) { in getDataBlock()
464 flags[iStart] = MIXED; in getDataBlock()
473 flags[i] = MIXED; in getDataBlock()
622 } else /* MIXED */ { in findHighStart()
934 if (flags[i] == MIXED) { in compactWholeDataBlocks()
960 // Turn it into a MIXED block. in compactWholeDataBlocks()
1066 } else if (flags[i] == MIXED) { in compactData()
[all...]
/third_party/icu/icu4c/source/common/
H A Dumutablecptrie.cpp44 constexpr uint8_t MIXED = 1; member
334 } else /* MIXED */ { in getRange()
441 if (flags[i] == MIXED) { in getDataBlock()
452 flags[iStart] = MIXED; in getDataBlock()
461 flags[i] = MIXED; in getDataBlock()
539 } else /* MIXED */ { in setRange()
670 } else /* MIXED */ { in findHighStart()
949 if (flags[i] == MIXED) { in compactWholeDataBlocks()
975 // Turn it into a MIXED block. in compactWholeDataBlocks()
1160 } else if (flags[i] == MIXED) { in compactData()
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dumutablecptrie.cpp44 constexpr uint8_t MIXED = 1; member
334 } else /* MIXED */ { in getRange()
441 if (flags[i] == MIXED) { in getDataBlock()
452 flags[iStart] = MIXED; in getDataBlock()
461 flags[i] = MIXED; in getDataBlock()
539 } else /* MIXED */ { in setRange()
670 } else /* MIXED */ { in findHighStart()
949 if (flags[i] == MIXED) { in compactWholeDataBlocks()
975 // Turn it into a MIXED block. in compactWholeDataBlocks()
1160 } else if (flags[i] == MIXED) { in compactData()
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dumutablecptrie.cpp44 constexpr uint8_t MIXED = 1; member
334 } else /* MIXED */ { in getRange()
441 if (flags[i] == MIXED) { in getDataBlock()
452 flags[iStart] = MIXED; in getDataBlock()
461 flags[i] = MIXED; in getDataBlock()
539 } else /* MIXED */ { in setRange()
670 } else /* MIXED */ { in findHighStart()
949 if (flags[i] == MIXED) { in compactWholeDataBlocks()
975 // Turn it into a MIXED block. in compactWholeDataBlocks()
1160 } else if (flags[i] == MIXED) { in compactData()
[all...]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/draw/
H A DvktDrawMultiExtTests.cpp66 MIXED = 0, // Do not use pVertexOffset and mix values in struct-indicated offsets. member in vkt::Draw::__anon27920::VertexOffsetType
818 const auto isMixedMode = (isIndexed && m_params.vertexOffset && m_params.vertexOffset->offsetType == VertexOffsetType::MIXED); in iterate()
1355 { VertexOffsetType::MIXED, "mixed" }, in createDrawMultiExtTests()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/draw/
H A DvktDrawMultiExtTests.cpp66 MIXED = 0, // Do not use pVertexOffset and mix values in struct-indicated offsets. member in vkt::Draw::__anon29161::VertexOffsetType
816 const auto isMixedMode = (isIndexed && m_params.vertexOffset && m_params.vertexOffset->offsetType == VertexOffsetType::MIXED); in iterate()
1353 { VertexOffsetType::MIXED, "mixed" }, in createDrawMultiExtTests()
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
H A DNumberFormatterImpl.java217 macros.unit.getComplexity() == MeasureUnit.Complexity.MIXED; in macrosToMicroGenerator()
/third_party/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
H A DMeasureUnitTest.java4595 assertEquals("mu1 = HMS: complexity", MeasureUnit.Complexity.MIXED, mu1.getComplexity()); in TestInternalMeasureUnitImpl()
4665 MeasureUnit.Complexity.MIXED, in verifyMixedUnit()

Completed in 48 milliseconds

12