HomeSort by relevance Sort by last modified time
    Searched defs:currentValue (Results 1 - 25 of 438) 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...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/common/
StateKeeperRule.java 57 final T currentValue = mStateManager.get();
58 if (!Objects.equals(previousValue, currentValue)) {
StateChangerRule.java 65 final T currentValue = mStateManager.get();
66 if (!Objects.equals(currentValue, previousValue)) {
SettingsHelper.java 62 final String currentValue = get(namespace, key);
63 if (value.equals(currentValue)) {
99 final String currentValue = get(namespace, key);
100 if (currentValue == null || currentValue.equals("null")) {
  /external/pdfium/fxjs/xfa/
cjx_delta.cpp 30 void CJX_Delta::currentValue(CFXJSE_Value* pValue,
  /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
  /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);
  /frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/
NumericalWatcher.java 30 private int currentValue = -1;
48 if (currentValue != newValue || unsanitized != newValue) {
49 currentValue = newValue;
  /hardware/interfaces/automotive/vehicle/2.0/default/impl/vhal_v2_0/
LinearFakeValueGenerator.h 40 float currentValue; // Should be in range (initialValue +/- dispersion).
42 float increment; // Value that we will be added to currentValue with each timer tick.
  /packages/apps/Settings/src/com/android/settings/development/
BluetoothAvrcpVersionPreferenceController.java 64 final String currentValue = SystemProperties.get(BLUETOOTH_AVRCP_VERSION_PROPERTY);
67 if (TextUtils.equals(currentValue, mListValues[i])) {
HdcpCheckingPreferenceController.java 76 final String currentValue = SystemProperties.get(HDCP_CHECKING_PROPERTY);
79 if (TextUtils.equals(currentValue, mListValues[i])) {
BluetoothMaxConnectedAudioDevicesPreferenceController.java 79 final String currentValue = SystemProperties.get(MAX_CONNECTED_AUDIO_DEVICES_PROPERTY);
81 if (!currentValue.isEmpty()) {
82 index = listPreference.findIndexOfValue(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))
  /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)) {
  /packages/apps/Settings/tests/robotests/src/com/android/settings/development/
BluetoothAvrcpVersionPreferenceControllerTest.java 77 final String currentValue = SystemProperties.get(BLUETOOTH_AVRCP_VERSION_PROPERTY);
79 assertThat(currentValue).isEqualTo(mListValues[1]);
86 final String currentValue = SystemProperties.get(BLUETOOTH_AVRCP_VERSION_PROPERTY);
88 assertThat(currentValue).isEqualTo(mListValues[2]);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/gestures/
AssistGestureSettingsPreferenceControllerTest.java 99 int currentValue = 1;
101 Settings.Secure.putInt(resolver, Settings.Secure.ASSIST_GESTURE_ENABLED, currentValue);
105 assertThat(newValue).isEqualTo(currentValue);
  /cts/hostsidetests/backup/SharedPreferencesRestoreApp/src/android/cts/backup/sharedprefrestoreapp/
SharedPrefsRestoreTestActivity.java 80 final int currentValue = mPrefs.getInt(INT_PREF, INT_PREF_DEFAULT_VALUE);
81 Log.i(TAG, "current value: " + currentValue + " last value : " + mLastValue);
83 if (currentValue != mLastValue && currentValue != INT_PREF_DEFAULT_VALUE) {
  /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...]
  /external/walt/android/WALT/app/src/main/java/org/chromium/latency/walt/
NumberPickerPreference.java 29 private int currentValue;
61 return currentValue;
65 currentValue = value;
66 persistInt(currentValue);
77 setValue(restorePersistedValue ? getPersistedInt(currentValue) : (Integer) defaultValue);
84 private int currentValue = 1;
101 currentValue = getNumberPickerPreference().getValue();
103 currentValue = savedInstanceState.getInt(SAVE_STATE_VALUE);
108 outState.putInt(SAVE_STATE_VALUE, currentValue);
121 picker.setValue(currentValue);
    [all...]
  /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;
  /frameworks/base/libs/hwui/
PathParser.cpp 105 float currentValue = strtof(startPtr, &endPtr);
106 if ((currentValue == HUGE_VALF || currentValue == -HUGE_VALF) && errno == ERANGE) {
111 if (currentValue == 0 && endPtr == startPtr) {
117 return currentValue;
142 float currentValue = parseFloat(result, &pathStr[startPosition], end - startPosition);
146 outPoints->push_back(currentValue);
  /frameworks/base/packages/SettingsLib/src/com/android/settingslib/development/
AbstractLogdSizePreferenceController.java 108 String currentValue = SystemProperties.get(SELECT_LOGD_SIZE_PROPERTY);
110 currentValue = SELECT_LOGD_OFF_SIZE_MARKER_VALUE;
114 .putExtra(EXTRA_CURRENT_LOGD_VALUE, currentValue));
115 if ((currentValue == null) || (currentValue.length() == 0)) {
116 currentValue = defaultLogdSizeValue();
132 if (currentValue.equals(values[i])
133 || currentValue.equals(titles[i])) {

Completed in 387 milliseconds

1 2 3 4 5 6 7 8 91011>>