Home
last modified time | relevance | path

Searched refs:targetValue (Results 1 – 3 of 3) sorted by relevance

/external/universal-tween-engine/java/api/src/aurelienribon/tweenengine/
DTween.java474 public Tween target(float targetValue) { in target() argument
475 targetValues[0] = targetValue; in target()
552 public Tween targetRelative(float targetValue) { in targetRelative() argument
554 targetValues[0] = isInitialized() ? targetValue + startValues[0] : targetValue; in targetRelative()
632 public Tween waypoint(float targetValue) { in waypoint() argument
634 waypoints[waypointsCnt] = targetValue; in waypoint()
/external/icu/icu4j/main/classes/charset/src/com/ibm/icu/charset/
DCharsetISO2022.java1742 int targetValue = 0; in encodeLoop() local
1869 targetValue = sourceChar; in encodeLoop()
1877 targetValue = sourceChar - 0x80; in encodeLoop()
1888targetValue = (int)(UConverterConstants.UNSIGNED_INT_MASK & (sourceChar - (HWKANA_START - 0x21))); in encodeLoop()
1895targetValue = (int)(UConverterConstants.UNSIGNED_INT_MASK & (sourceChar - (HWKANA_START - 0xa1))); in encodeLoop()
1913 targetValue = value[0]; in encodeLoop()
1929 targetValue = value[0]; in encodeLoop()
1936 targetValue = hwkana_fb[sourceChar - HWKANA_START]; in encodeLoop()
1947 targetValue = value[0] - 0x80; in encodeLoop()
1972 targetValue = value[0]; in encodeLoop()
[all …]
/external/icu/icu4c/source/common/
Ducnv2022.cpp1684 uint32_t targetValue = 0; in UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC() local
1809 targetValue = (uint32_t)sourceChar; in UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC()
1817 targetValue = (uint32_t)sourceChar - 0x80; in UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC()
1828 targetValue = (uint32_t)(sourceChar - (HWKANA_START - 0x21)); in UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC()
1835 targetValue = (uint32_t)(sourceChar - (HWKANA_START - 0xa1)); in UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC()
1853 targetValue = value; in UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC()
1869 targetValue = value; in UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC()
1877 targetValue = hwkana_fb[sourceChar - HWKANA_START]; in UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC()
1891 targetValue = value - 0x80; in UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC()
1916 targetValue = value; in UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC()
[all …]