HomeSort by relevance Sort by last modified time
    Searched refs:mVal (Results 1 - 8 of 8) sorted by null

  /art/test/003-omnibus-opcodes/src/
Monitor.java 22 public static int mVal = 0;
27 mVal++;
41 mVal++;
50 mVal++;
55 Main.assertTrue(mVal == 2);
  /frameworks/av/media/libeffects/lvm/lib/Common/src/
MSTo2i_Sat_16x16.c 33 LVM_INT32 temp,mVal,sVal;
39 mVal=(LVM_INT32)*srcM;
45 temp = mVal + sVal;
61 temp = mVal - sVal;
  /sdk/emulator/opengl/shared/emugl/common/
id_to_object_map_unittest.cpp 27 Foo() : mVal(0) {}
28 Foo(int val) : mVal(val) {}
30 int val() const { return mVal; }
31 void setVal(int val) { mVal = val; }
33 int mVal;
  /sdk/testapps/testSensors/src/com/android/tests/testsensors/
TestSensorsActivity.java 49 private final TextView mVal;
71 mVal = (TextView) row.findViewById(R.id.row_textview_value);
72 mVal.setText("");
189 mVal.setText(val);
  /system/core/include/sysutils/
List.h 51 explicit _Node(const T& val) : mVal(val) {}
53 inline T& getRef() { return mVal; }
54 inline const T& getRef() const { return mVal; }
57 inline void setVal(const T& val) { mVal = val; }
63 T mVal;
  /system/core/include/utils/
List.h 50 explicit _Node(const T& val) : mVal(val) {}
52 inline T& getRef() { return mVal; }
53 inline const T& getRef() const { return mVal; }
56 inline void setVal(const T& val) { mVal = val; }
62 T mVal;
  /system/netd/server/
List.h 51 explicit _Node(const T& val) : mVal(val) {}
53 inline T& getRef() { return mVal; }
54 inline const T& getRef() const { return mVal; }
57 inline void setVal(const T& val) { mVal = val; }
63 T mVal;
  /sdk/apps/SdkController/src/com/android/tools/sdkcontroller/activities/
SensorActivity.java 208 private TextView mVal;
222 mVal = (TextView) row.findViewById(R.id.row_textview);
223 mVal.setText(sensor.getValue());
240 mVal = null;
253 if (mVal != null && mSensor != null) {
254 mVal.setText(mSensor.getValue());

Completed in 317 milliseconds