Searched refs:targetValue (Results 1 – 5 of 5) sorted by relevance
474 public Tween target(float targetValue) { in target() argument475 targetValues[0] = targetValue; in target()552 public Tween targetRelative(float targetValue) { in targetRelative() argument554 targetValues[0] = isInitialized() ? targetValue + startValues[0] : targetValue; in targetRelative()632 public Tween waypoint(float targetValue) { in waypoint() argument634 waypoints[waypointsCnt] = targetValue; in waypoint()
1742 int targetValue = 0; in encodeLoop() local1869 targetValue = sourceChar; in encodeLoop()1877 targetValue = sourceChar - 0x80; in encodeLoop()1888 … targetValue = (int)(UConverterConstants.UNSIGNED_INT_MASK & (sourceChar - (HWKANA_START - 0x21))); in encodeLoop()1895 … targetValue = (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 …]
1684 uint32_t targetValue = 0; in UConverter_fromUnicode_ISO_2022_JP_OFFSETS_LOGIC() local1809 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 …]
28 #define OUT_OF_BOUND_CHECK(edgeValue, targetValue, condition) \29 (condition) ? (edgeValue) : (targetValue)
873 TV targetValue = transformValue.transform(sourceEntry.getValue()); in transform() local874 if (targetKey != null && targetValue != null) { in transform()875 target.put(targetKey, targetValue); in transform()