HomeSort by relevance Sort by last modified time
    Searched defs:mCurrentValue (Results 1 - 25 of 412) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /sdk/eclipse/plugins/com.android.ide.eclipse.gldebugger/src/com/android/ide/eclipse/gltrace/state/
GLBooleanProperty.java 23 private Boolean mCurrentValue;
28 mDefaultValue = mCurrentValue = defaultValue;
33 return mDefaultValue != null & mDefaultValue.equals(mCurrentValue);
37 mCurrentValue = newValue;
42 return mCurrentValue.toString();
53 mCurrentValue = (Boolean) value;
62 return mCurrentValue;
GLEnumProperty.java 23 private GLEnum mCurrentValue;
29 mCurrentValue = mDefaultValue = defaultValue;
34 return mDefaultValue == mCurrentValue;
38 mCurrentValue = newValue;
43 return mCurrentValue.toString();
54 mCurrentValue = (GLEnum) value;
62 return mCurrentValue;
GLFloatProperty.java 22 private Float mCurrentValue;
27 mDefaultValue = mCurrentValue = defaultValue;
32 return Math.abs(mCurrentValue - mDefaultValue) < 0.000000001;
36 mCurrentValue = newValue;
42 mCurrentValue = (Float) value;
51 return mCurrentValue;
56 return mCurrentValue.toString();
GLIntegerProperty.java 22 private Integer mCurrentValue;
28 mDefaultValue = mCurrentValue = defaultValue;
38 return mDefaultValue != null & mDefaultValue.equals(mCurrentValue);
42 mCurrentValue = newValue;
48 return String.format("0x%08x", Integer.valueOf(mCurrentValue));
51 return mCurrentValue.toString();
62 mCurrentValue = (Integer) value;
71 return mCurrentValue;
GLLongProperty.java 22 private Long mCurrentValue;
28 mDefaultValue = mCurrentValue = defaultValue;
38 return mDefaultValue != null & mDefaultValue.equals(mCurrentValue);
42 mCurrentValue = newValue;
48 return String.format("0x%08x", Long.valueOf(mCurrentValue));
51 return mCurrentValue.toString();
62 mCurrentValue = (Long) value;
71 return mCurrentValue;
GLObjectProperty.java 25 private Object mCurrentValue;
32 mDefaultValue = mCurrentValue = defaultValue;
37 return mDefaultValue != null & mDefaultValue.equals(mCurrentValue);
42 mCurrentValue = newValue;
47 if (mCurrentValue == null) {
50 if (mCurrentValue instanceof List<?>) {
51 return "[" + JOINER.join((List<?>) mCurrentValue) + "]"; //$NON-NLS-1$ //$NON-NLS-2$
53 return mCurrentValue.toString();
64 return mCurrentValue;
GLStringProperty.java 21 private String mCurrentValue;
26 mDefaultValue = mCurrentValue = defaultValue;
31 return mDefaultValue.equalsIgnoreCase(mCurrentValue);
37 mCurrentValue = (String) value;
45 mCurrentValue = value;
50 return mCurrentValue;
55 return mCurrentValue;
  /cts/tests/autofillservice/src/android/autofillservice/cts/
Timeout.java 35 private long mCurrentValue;
63 mCurrentValue = initialValue;
73 return mCurrentValue;
104 final long oldValue = mCurrentValue;
105 mCurrentValue = Math.min(mMaxValue, (long) (mCurrentValue * mMultiplier));
106 if (oldValue != mCurrentValue) {
107 Log.w(TAG, mName + " increased from " + oldValue + "ms to " + mCurrentValue + "ms at "
156 while (System.currentTimeMillis() - startTime <= mCurrentValue) {
177 return mName + ": [current=" + mCurrentValue + "ms; multiplier=" + mMultiplier + "x; max=
    [all...]
  /frameworks/support/leanback/src/main/java/androidx/leanback/widget/picker/
PickerColumn.java 26 private int mCurrentValue;
90 return mCurrentValue;
97 mCurrentValue = value;
  /frameworks/support/work/workmanager/src/main/java/androidx/work/impl/constraints/controllers/
ConstraintController.java 58 private T mCurrentValue;
111 return mCurrentValue != null && isConstrained(mCurrentValue)
120 if (mCurrentValue == null || isConstrained(mCurrentValue)) {
129 mCurrentValue = newValue;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiAbstractTextAttributeNode.java 41 private String mCurrentValue = DEFAULT_VALUE;
51 return mCurrentValue;
57 mCurrentValue = value;
81 mCurrentValue = DEFAULT_VALUE;
83 mCurrentValue = xml_attribute_node.getNodeValue();
86 if (isValid() && !getTextWidgetValue().equals(mCurrentValue)) {
89 setTextWidgetValue(mCurrentValue);
107 mCurrentValue = value;
  /frameworks/av/media/mtp/
MtpProperty.h 51 MtpPropertyValue mCurrentValue;
95 const MtpPropertyValue& getCurrentValue() { return mCurrentValue; }
  /frameworks/base/services/core/java/com/android/server/display/
RampAnimator.java 32 private int mCurrentValue;
37 private float mAnimatedValue; // higher precision copy of mCurrentValue
63 if (mFirstTime || target != mCurrentValue) {
67 mCurrentValue = target;
90 || (target <= mCurrentValue && mCurrentValue <= mTargetValue)
91 || (mTargetValue <= mCurrentValue && mCurrentValue <= target)) {
99 if (!mAnimating && target != mCurrentValue) {
101 mAnimatedValue = mCurrentValue;
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
GameOverActivity.java 51 private float mCurrentValue = 0.0f;
85 if (mCurrentValue < mTargetValue) {
86 mCurrentValue += mIncrement;
87 mCurrentValue = Math.min(mCurrentValue, mTargetValue);
90 value = mCurrentValue + "%";
92 float seconds = mCurrentValue;
105 value = mCurrentValue + "";
  /frameworks/base/core/java/android/content/
RestrictionEntry.java 127 private String mCurrentValue;
157 this.mCurrentValue = selectedString;
267 return mCurrentValue;
284 return Boolean.parseBoolean(mCurrentValue);
292 return Integer.parseInt(mCurrentValue);
300 mCurrentValue = Integer.toString(value);
309 mCurrentValue = selectedString;
318 mCurrentValue = Boolean.toString(state);
464 && Objects.equals(mCurrentValue, other.mCurrentValue)) {
    [all...]
  /frameworks/base/services/autofill/java/com/android/server/autofill/
ViewState.java 81 private AutofillValue mCurrentValue;
108 return mCurrentValue;
112 mCurrentValue = value;
184 mCurrentValue = autofillValue;
206 mListener.onFillReady(mResponse, this.id, mCurrentValue);
218 if (mCurrentValue != null) {
219 builder.append("currentValue:" ).append(mCurrentValue);
242 if (mCurrentValue != null) {
243 pw.print(prefix); pw.print("currentValue:" ); pw.println(mCurrentValue);
  /external/swiftshader/src/OpenGL/libGL/
Context.h 373 mCurrentValue[0] = 0.0f;
374 mCurrentValue[1] = 0.0f;
375 mCurrentValue[2] = 0.0f;
376 mCurrentValue[3] = 1.0f;
413 float mCurrentValue[4]; // From glVertexAttrib
  /external/swiftshader/src/OpenGL/libGLES_CM/
Context.h 151 mCurrentValue[0] = 0.0f;
152 mCurrentValue[1] = 0.0f;
153 mCurrentValue[2] = 0.0f;
154 mCurrentValue[3] = 1.0f;
191 float mCurrentValue[4]; // From glVertexAttrib
  /external/swiftshader/src/OpenGL/libGLESv2/
Context.h 198 mCurrentValue[0].f = 0.0f;
199 mCurrentValue[1].f = 0.0f;
200 mCurrentValue[2].f = 0.0f;
201 mCurrentValue[3].f = 1.0f;
237 return mCurrentValue[i].f;
244 case GL_FLOAT: return mCurrentValue[i].f;
245 case GL_INT: return static_cast<float>(mCurrentValue[i].i);
246 case GL_UNSIGNED_INT: return static_cast<float>(mCurrentValue[i].ui);
247 default: UNREACHABLE(mCurrentValueType); return mCurrentValue[i].f;
255 case GL_FLOAT: return static_cast<GLint>(mCurrentValue[i].f)
    [all...]
  /external/deqp/android/cts/runner/src/com/drawelements/deqp/runner/
DeqpTestRunner.java 592 private String mCurrentValue;
611 mValues.put(mCurrentName, mCurrentValue);
614 mCurrentValue = null;
621 mValues.put(mCurrentName, mCurrentValue);
623 mCurrentValue = null;
633 mCurrentValue = line.substring(valueBegin);
641 } else if (mCurrentValue != null) {
642 mCurrentValue = mCurrentValue + line;
653 mValues.put(mCurrentName, mCurrentValue);
    [all...]
  /prebuilts/devtools/tools/lib/
ddmlib-26.0.0.jar 
ddmlib.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.2.0/
ddmlib-22.2.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.4.0/
ddmlib-22.4.0.jar 
  /prebuilts/gradle-plugin/com/android/tools/ddms/ddmlib/22.4.2/
ddmlib-22.4.2.jar 

Completed in 408 milliseconds

1 2 3 4 5 6 7 8 91011>>