HomeSort by relevance Sort by last modified time
    Searched refs:currentValue (Results 1 - 25 of 392) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/criterion/
ExclusiveCriterion.py 46 def currentValue(self):
49 @currentValue.setter
50 def currentValue(self, currentValue):
51 if currentValue in self._allowedValues or currentValue == self.noValue:
52 self.__currentValue = currentValue
56 currentValue, self.__class__.__name__))
InclusiveCriterion.py 46 def currentValue(self):
49 @currentValue.setter
50 def currentValue(self, stringNewVal):
75 for currentValue in valueList:
76 if currentValue in self._allowedValues \
77 and currentValue != self.noValue:
78 self.__currentValues.add(currentValue)
82 currentValue, self.__class__.__name__))
84 def removeValue(self, currentValue):
85 if currentValue in self.__currentValues
    [all...]
  /external/apache-harmony/jdwp/src/test/java/org/apache/harmony/jpda/tests/jdwp/Events/
FieldWithLocationDebuggee.java 37 int currentValue = testIntField; // field access
38 System.out.println("testIntField = " + currentValue);
39 testIntField = currentValue + 1; // field modification
44 int currentValue = testIntField; // field access
45 System.out.println("testIntField = " + currentValue);
46 testIntField = currentValue + 1; // field modification
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/widget/
Lerper.java 43 public int getValue(int currentValue, int targetValue) {
44 int delta = targetValue - currentValue;
47 // make sure change currentValue and not exceeding targetValue
52 retValue = currentValue + delta;
57 // make sure change currentValue and not exceeding targetValue
62 retValue = currentValue + delta;
72 public float getValue(float currentValue, float targetValue) {
73 float delta = targetValue - currentValue;
76 // make sure change currentValue and not exceeding targetValue
78 retValue = currentValue + delta
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
TrieIterator.java 204 int currentValue = m_nextValue_;
208 if (!checkBlockDetail(currentValue)) {
210 currentValue);
232 if (!checkBlock(currentValue)) {
234 currentValue);
262 int currentValue = m_nextValue_;
270 if (!checkNullNextTrailIndex() && !checkBlockDetail(currentValue)) {
272 currentValue);
279 if (!checkTrailBlock(currentValue)) {
281 currentValue);
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
TrieIterator.java 203 int currentValue = m_nextValue_;
207 if (!checkBlockDetail(currentValue)) {
209 currentValue);
231 if (!checkBlock(currentValue)) {
233 currentValue);
261 int currentValue = m_nextValue_;
269 if (!checkNullNextTrailIndex() && !checkBlockDetail(currentValue)) {
271 currentValue);
278 if (!checkTrailBlock(currentValue)) {
280 currentValue);
    [all...]
  /frameworks/support/v17/leanback/src/android/support/v17/leanback/widget/
ParallaxEffect.java 299 Number currentValue = ((IntProperty) mMarkerValues.get(0).getProperty()).get(source);
300 if (currentValue.intValue() < value1) {
301 currentValue = value1;
302 } else if (currentValue.intValue() > value2) {
303 currentValue = value2;
305 return currentValue;
319 int currentValue = source.getIntPropertyValue(index);
323 if (currentValue >= markerValue) {
331 if (currentValue == IntProperty.UNKNOWN_AFTER) {
338 } else if (currentValue >= markerValue)
    [all...]
  /hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
FakeValueGenerator.h 42 float currentValue; // Should be in range (initialValue +/- dispersion).
44 float increment; // Value that we will be added to currentValue with each timer tick.
67 .currentValue = initialValue,
99 cfg.currentValue += cfg.increment;
100 if (cfg.currentValue > cfg.initialValue + cfg.dispersion) {
101 cfg.currentValue = cfg.initialValue - cfg.dispersion;
103 mOnHalEvent(propId, cfg.currentValue);
  /hardware/interfaces/thermal/1.0/
types.hal 51 float currentValue;
89 float currentValue;
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/testGenerator/
TestVectorFactory.py 67 newCriterion.currentValue = rawCriterions[
76 newCriterion.currentValue = newCriterion.noValue
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/ui/
FlagValueCellEditor.java 41 String currentValue = (String)getValue();
42 return mUiFlagAttribute.showDialog(cellEditorWindow.getShell(), currentValue);
ResourceValueCellEditor.java 42 String currentValue = (String)getValue();
43 return mUiResourceAttribute.showDialog(cellEditorWindow.getShell(), currentValue);
  /external/webrtc/webrtc/modules/video_capture/
device_info_impl.cc 300 const DelayValue& currentValue = delayValues[device].delayValues[delayIndex];
302 const int32_t diffWidth = currentValue.width - width;
303 const int32_t diffHeight = currentValue.height - height;
323 bestWidth = currentValue.width;
324 bestHeight = currentValue.height;
325 bestDelay = currentValue.delay;
331 bestWidth = currentValue.width;
332 bestHeight = currentValue.height;
333 bestDelay = currentValue.delay;
  /external/jsoncpp/src/lib_json/
json_reader.cpp 165 currentValue().setComment(commentsBefore_, commentBefore);
172 currentValue().setOffsetLimit(current_ - begin_);
176 currentValue().setOffsetLimit(current_ - begin_);
185 currentValue() = true;
186 currentValue().setOffsetStart(token.start_ - begin_);
187 currentValue().setOffsetLimit(token.end_ - begin_);
190 currentValue() = false;
191 currentValue().setOffsetStart(token.start_ - begin_);
192 currentValue().setOffsetLimit(token.end_ - begin_);
195 currentValue() = Value()
    [all...]
  /frameworks/base/libs/hwui/
PathParser.cpp 103 float currentValue = strtof(startPtr, &endPtr);
104 if ((currentValue == HUGE_VALF || currentValue == -HUGE_VALF) && errno == ERANGE) {
109 if (currentValue == 0 && endPtr == startPtr) {
115 return currentValue;
141 float currentValue = parseFloat(result, &pathStr[startPosition],
146 outPoints->push_back(currentValue);
  /external/emma/ant/ant14/com/vladium/emma/ant/
GenericCfg.java 113 final String currentValue = genericSettings.getProperty (name);
114 if ((currentValue != null) && ! value.equals (currentValue))
  /external/parameter-framework/upstream/tools/clientSimulator/clientsimulator/userInteraction/
UserInteractor.py 129 criterion.currentValue = value
144 if not x in criterion.currentValue
155 for possibleValue in criterion.currentValue:
  /hardware/interfaces/thermal/1.0/vts/functional/
VtsHalThermalV1_0TargetTest.cpp 124 // .currentValue of known type is in Celsius and must be reasonable.
126 std::abs(temperature.currentValue) < MAX_DEVICE_TEMPERATURE ||
127 isnan(temperature.currentValue));
132 // .currentValue must not exceed .shutdwonThreshold if defined.
133 EXPECT_TRUE(temperature.currentValue < temperature.shutdownThreshold ||
134 isnan(temperature.currentValue) || isnan(temperature.shutdownThreshold));
154 EXPECT_LE(0, coolingDevice.currentValue);
155 EXPECT_GT(MAX_FAN_SPEED, coolingDevice.currentValue);
  /external/libphonenumber/internal/prefixmapper/src/com/google/i18n/phonenumbers/prefixmapper/
PhonePrefixMap.java 196 int currentValue = phonePrefixMapStorage.getPrefix(current);
197 if (currentValue == value) {
199 } else if (currentValue > value) {
  /frameworks/base/packages/SystemUI/src/com/android/systemui/statusbar/notification/
PropertyAnimator.java 71 Float currentValue = property.get(view);
72 ValueAnimator animator = ValueAnimator.ofFloat(currentValue, newEndValue);
101 view.setTag(animationStartTag, currentValue);
  /packages/services/Car/tests/carservice_test/src/com/android/car/test/
CarProjectionManagerTest.java 148 VehiclePropValue currentValue = mMap.get(value.prop);
150 return currentValue != null ? currentValue : value;
  /frameworks/ex/camera2/utils/src/com/android/ex/camera2/utils/
Camera2RequestSettingsSet.java 88 Object currentValue = get(key);
90 if (!mDictionary.containsKey(key) || !Objects.equals(value, currentValue)) {
  /external/protobuf/conformance/third_party/jsoncpp/
jsoncpp.cpp 360 currentValue().setComment(commentsBefore_, commentBefore);
367 currentValue().setOffsetLimit(current_ - begin_);
371 currentValue().setOffsetLimit(current_ - begin_);
382 currentValue().swapPayload(v);
383 currentValue().setOffsetStart(token.start_ - begin_);
384 currentValue().setOffsetLimit(token.end_ - begin_);
390 currentValue().swapPayload(v);
391 currentValue().setOffsetStart(token.start_ - begin_);
392 currentValue().setOffsetLimit(token.end_ - begin_);
398 currentValue().swapPayload(v)
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/interpreter/
ExpressionEvaluator.java 62 private Value currentValue;
82 assert currentValue == null;
85 Value result = currentValue;
86 currentValue = null;
245 currentValue = value;
  /cts/tests/tests/animation/src/android/animation/cts/
ValueAnimatorTest.java 176 float currentValue = (Float) anim.getAnimatedValue();
179 assertEquals(50, currentValue, EPSILON);
184 currentValue = (Float) delayedAnim.getAnimatedValue();
187 assertEquals(50, currentValue, EPSILON);
194 float currentValue = (Float) anim.getAnimatedValue();
197 assertEquals(50, currentValue, EPSILON);
201 currentValue = (Float) delayedAnim.getAnimatedValue();
204 assertEquals(50, currentValue, EPSILON);
218 currentValue = (Float) delayedAnim.getAnimatedValue();
221 assertTrue(currentValue > 50)
    [all...]

Completed in 1538 milliseconds

1 2 3 4 5 6 7 8 91011>>