HomeSort by relevance Sort by last modified time
    Searched refs:mCurrentValue (Results 1 - 25 of 357) 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/
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;
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;
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;
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();
  /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...]
  /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/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/support/v17/leanback/src/android/support/v17/leanback/widget/picker/
PickerColumn.java 26 private int mCurrentValue;
90 return mCurrentValue;
97 mCurrentValue = value;
  /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/services/autofill/java/com/android/server/autofill/
ViewState.java 77 private AutofillValue mCurrentValue;
102 return mCurrentValue;
106 mCurrentValue = value;
156 mCurrentValue = autofillValue;
178 mListener.onFillReady(mResponse, this.id, mCurrentValue);
185 return "ViewState: [id=" + id + ", currentValue=" + mCurrentValue
203 pw.print(prefix); pw.print("currentValue:" ); pw.println(mCurrentValue);
  /external/swiftshader/src/OpenGL/libGLESv2/
Context.h 194 mCurrentValue[0].f = 0.0f;
195 mCurrentValue[1].f = 0.0f;
196 mCurrentValue[2].f = 0.0f;
197 mCurrentValue[3].f = 1.0f;
227 return mCurrentValue[i].f;
234 case ValueUnion::FloatType: return mCurrentValue[i].f;
235 case ValueUnion::IntType: return static_cast<float>(mCurrentValue[i].i);
236 case ValueUnion::UIntType: return static_cast<float>(mCurrentValue[i].ui);
237 default: UNREACHABLE(mCurrentValueType); return mCurrentValue[i].f;
245 case ValueUnion::FloatType: return static_cast<GLint>(mCurrentValue[i].f)
    [all...]
  /packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
PinDialogFragment.java 340 private int mCurrentValue;
396 mNextValue = adjustValueInValidRange(mCurrentValue + 1);
402 mNextValue = adjustValueInValidRange(mCurrentValue - 1);
456 } else if (mCurrentValue != mNextValue) {
457 mCurrentValue = mNextValue;
516 mCurrentValue = mNextValue;
529 mNextValue = mCurrentValue = mMinValue - 1;
543 if (mCurrentValue < mMinValue || mCurrentValue > mMaxValue) {
546 return mCurrentValue;
    [all...]
  /frameworks/av/media/mtp/
MtpProperty.h 49 MtpPropertyValue mCurrentValue;
93 const MtpPropertyValue& getCurrentValue() { return mCurrentValue; }
MtpProperty.cpp 43 memset(&mCurrentValue, 0, sizeof(mCurrentValue));
65 memset(&mCurrentValue, 0, sizeof(mCurrentValue));
105 free(mCurrentValue.str);
155 if (!readValue(packet, mCurrentValue)) return false;
203 writeValue(packet, mCurrentValue);
230 free(mCurrentValue.str);
233 mCurrentValue.str = strdup(buffer);
236 mCurrentValue.str = NULL
    [all...]
  /packages/apps/TV/src/com/android/tv/dialog/
PinDialogFragment.java 387 private int mCurrentValue;
388 // a value for setting mCurrentValue at the end of scroll animation.
452 mNextValue = adjustValueInValidRange(mCurrentValue + 1);
455 mNextValue = adjustValueInValidRange(mCurrentValue - 1);
513 mCurrentValue = mNextValue;
610 mNextValue = mCurrentValue = NOT_INITIALIZED;
626 if (mCurrentValue < mMinValue || mCurrentValue > mMaxValue) {
629 return mCurrentValue;
639 mBackgroundView.setText(String.valueOf(mCurrentValue));
    [all...]
  /external/swiftshader/src/OpenGL/libGL/
VertexDataManager.cpp 200 mCurrentValueBuffer[i] = new ConstantVertexBuffer(attribs[i].mCurrentValue[0], attribs[i].mCurrentValue[1], attribs[i].mCurrentValue[2], attribs[i].mCurrentValue[3]);
Context.cpp 181 mState.vertexAttribute[sw::Color0].mCurrentValue[0] = 1.0f;
182 mState.vertexAttribute[sw::Color0].mCurrentValue[1] = 1.0f;
183 mState.vertexAttribute[sw::Color0].mCurrentValue[2] = 1.0f;
184 mState.vertexAttribute[sw::Color0].mCurrentValue[3] = 1.0f;
185 mState.vertexAttribute[sw::Normal].mCurrentValue[0] = 0.0f;
186 mState.vertexAttribute[sw::Normal].mCurrentValue[1] = 0.0f;
187 mState.vertexAttribute[sw::Normal].mCurrentValue[2] = 1.0f;
188 mState.vertexAttribute[sw::Normal].mCurrentValue[3] = 0.0f;
189 mState.vertexAttribute[sw::TexCoord0].mCurrentValue[0] = 0.0f;
190 mState.vertexAttribute[sw::TexCoord0].mCurrentValue[1] = 0.0f
    [all...]
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/
VertexDataManager.cpp 195 mCurrentValueBuffer[i] = new ConstantVertexBuffer(attribs[i].mCurrentValue[0], attribs[i].mCurrentValue[1], attribs[i].mCurrentValue[2], attribs[i].mCurrentValue[3]);
Context.h 152 mCurrentValue[0] = 0.0f;
153 mCurrentValue[1] = 0.0f;
154 mCurrentValue[2] = 0.0f;
155 mCurrentValue[3] = 1.0f;
192 float mCurrentValue[4]; // From glVertexAttrib
  /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...]
  /frameworks/base/media/jni/
android_mtp_MtpDatabase.cpp     [all...]

Completed in 543 milliseconds

1 2 3 4 5 6 7 8 91011>>